...
|
...
|
@@ -27,6 +27,7 @@ import com.thinkgem.jeesite.modules.yard.service.BayonetService; |
|
|
import com.thinkgem.jeesite.modules.yard.service.YardService;
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.ui.Model;
|
|
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
...
|
...
|
@@ -72,6 +73,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
@Autowired
|
|
|
private OfficeService officeService;
|
|
|
|
|
|
|
|
|
private static final String TYPE1 = "调拨业务";
|
|
|
private static final String TYPE2 = "进口提货";
|
|
|
private static final String TYPE3 = "出口送货";
|
...
|
...
|
@@ -270,18 +272,33 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
}
|
|
|
}
|
|
|
flag = true;
|
|
|
} else {
|
|
|
} else {//西-综 分拨 综-西 调拨 4600329012 4600329012
|
|
|
if (TYPE1.equals(landBusinesstypeList.getBusinesstype())) {
|
|
|
flag = insertType1(landBusinesstypeList);
|
|
|
if(landBusinesstypeList.getStartsatation().equals("4600329012")||landBusinesstypeList.getEndstation().equals("4600329012")){
|
|
|
flag = insertTypeZD(landBusinesstypeList);
|
|
|
}else{
|
|
|
flag = insertType1(landBusinesstypeList);
|
|
|
}
|
|
|
|
|
|
}
|
|
|
if (TYPE2.equals(landBusinesstypeList.getBusinesstype())) {
|
|
|
flag = insertType2(landBusinesstypeList);
|
|
|
}
|
|
|
if (TYPE3.equals(landBusinesstypeList.getBusinesstype())) {
|
|
|
flag = insertType3(landBusinesstypeList);
|
|
|
if(landBusinesstypeList.getStartsatation().equals("4600329012")||landBusinesstypeList.getEndstation().equals("4600329012")){
|
|
|
if(landBusinesstypeList.getIsthree().equals("0")){
|
|
|
flag = insertTypeZE(landBusinesstypeList);
|
|
|
}else{
|
|
|
flag = insertTypeZE2(landBusinesstypeList);
|
|
|
}
|
|
|
|
|
|
}else{
|
|
|
flag = insertType3(landBusinesstypeList);
|
|
|
}
|
|
|
|
|
|
}
|
|
|
if (TYPE4.equals(landBusinesstypeList.getBusinesstype())) {
|
|
|
flag = insertType1(landBusinesstypeList);
|
|
|
flag = insertType6(landBusinesstypeList);
|
|
|
}
|
|
|
}
|
|
|
if (flag) {
|
...
|
...
|
@@ -350,7 +367,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
|
|
|
try {
|
|
|
String messageId = dateTimeFormat();
|
|
|
|
|
|
//String barCode = "abcd";
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
...
|
...
|
@@ -460,12 +477,298 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
return true;
|
|
|
|
|
|
}
|
|
|
public boolean insertTypeZD(LandBusinesstypeList landBusinesstypeList) {
|
|
|
|
|
|
try {
|
|
|
String messageId = dateTimeFormat();
|
|
|
//String barCode = "abcd";
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
return false;
|
|
|
}
|
|
|
// first entry in
|
|
|
String mainfistList = landBusinesstypeList.getMasterList();
|
|
|
String startport = landBusinesstypeList.getStartport();
|
|
|
String endport = landBusinesstypeList.getEndport();
|
|
|
String startStation = landBusinesstypeList.getStartsatation();
|
|
|
String endStation = landBusinesstypeList.getEndstation();
|
|
|
String isfull = landBusinesstypeList.getIsfull();
|
|
|
|
|
|
landBusinesstypeList.setMassageId(messageId);
|
|
|
landBusinesstypeList.setStartport("");
|
|
|
landBusinesstypeList.setStartsatation("");
|
|
|
landBusinesstypeList.setEndport(startport);
|
|
|
landBusinesstypeList.setEndstation(startStation);
|
|
|
landBusinesstypeList.setMasterList("");
|
|
|
landBusinesstypeList.setProdectTime(new Date());
|
|
|
landBusinesstypeList.setBarcode(barCode);
|
|
|
landBusinesstypeList.setAisle(bayService.findByYardAndName(startStation, "6号卡口-进").getChannel());
|
|
|
landBusinesstypeListService.save(landBusinesstypeList);
|
|
|
insertVm(landBusinesstypeList.getMassageId(), landBusinesstypeList.getTrailerFrameNo(), mainfistList);
|
|
|
|
|
|
// second out
|
|
|
LandBusinesstypeList list = new LandBusinesstypeList();
|
|
|
list.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setIsDelete("0");
|
|
|
list.setIsvalid("0");
|
|
|
list.setIsfull(isfull);
|
|
|
list.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list.setEndport(startport);
|
|
|
list.setEndstation(startStation);
|
|
|
list.setProdectTime(new Date());
|
|
|
list.setMasterList(mainfistList);
|
|
|
list.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list.setAisle(bayService.findByYardAndName(startStation, "6号卡口-出").getChannel());
|
|
|
list.setTurnoverflag("E");
|
|
|
list.setMassageId(messageId);
|
|
|
list.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list);
|
|
|
|
|
|
// third
|
|
|
LandBusinesstypeList list1 = new LandBusinesstypeList();
|
|
|
list1.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list1.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list1.setCocode(landBusinesstypeList.getCocode());
|
|
|
list1.setIsDelete("0");
|
|
|
list1.setIsvalid("0");
|
|
|
list1.setIsfull(isfull);
|
|
|
list1.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list1.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list1.setCocode(landBusinesstypeList.getCocode());
|
|
|
list1.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list1.setStartport(startport);
|
|
|
list1.setStartsatation(startStation);
|
|
|
list1.setEndport(endport);
|
|
|
list1.setEndstation(endStation);
|
|
|
list1.setProdectTime(new Date());
|
|
|
list1.setMasterList(mainfistList);
|
|
|
list1.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list1.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list1.setAisle(bayService.findByYardAndName(endStation, "1号卡口-进").getChannel());
|
|
|
list1.setTurnoverflag("I");
|
|
|
list1.setMassageId(messageId);
|
|
|
list1.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list1);
|
|
|
|
|
|
// four
|
|
|
LandBusinesstypeList list2 = new LandBusinesstypeList();
|
|
|
list2.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list2.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list2.setCocode(landBusinesstypeList.getCocode());
|
|
|
list2.setIsDelete("0");
|
|
|
list2.setIsvalid("0");
|
|
|
list2.setIsfull(isfull);
|
|
|
list2.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list2.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list2.setCocode(landBusinesstypeList.getCocode());
|
|
|
list2.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list2.setStartport("");
|
|
|
list2.setStartsatation("");
|
|
|
list2.setStartport(startport);
|
|
|
list2.setStartsatation(startStation);
|
|
|
list2.setEndport(endport);
|
|
|
list2.setEndstation(endStation);
|
|
|
list2.setProdectTime(new Date());
|
|
|
list2.setMasterList("");
|
|
|
list2.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list2.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list2.setAisle(bayService.findByYardAndName(endStation, "1号卡口-出").getChannel());
|
|
|
list2.setTurnoverflag("E");
|
|
|
list2.setMassageId(messageId);
|
|
|
list2.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list2);
|
|
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
public boolean insertType6(LandBusinesstypeList landBusinesstypeList){
|
|
|
try {
|
|
|
String messageId = dateTimeFormat();
|
|
|
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
//String barCode = "abcd";
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
return false;
|
|
|
}
|
|
|
// first entry in
|
|
|
String mainfistList = landBusinesstypeList.getMasterList();
|
|
|
String startport = landBusinesstypeList.getStartport();
|
|
|
String endport = landBusinesstypeList.getEndport();
|
|
|
String startStation = landBusinesstypeList.getStartsatation();
|
|
|
String endStation = landBusinesstypeList.getEndstation();
|
|
|
String isfull = landBusinesstypeList.getIsfull();
|
|
|
|
|
|
landBusinesstypeList.setMassageId(messageId);
|
|
|
landBusinesstypeList.setStartport("");
|
|
|
landBusinesstypeList.setStartsatation("");
|
|
|
landBusinesstypeList.setEndport(startport);
|
|
|
landBusinesstypeList.setEndstation(startStation);
|
|
|
landBusinesstypeList.setMasterList("");
|
|
|
landBusinesstypeList.setProdectTime(new Date());
|
|
|
landBusinesstypeList.setBarcode(barCode);
|
|
|
landBusinesstypeList.setAisle(bayService.findByYardAndName(startStation, "1号卡口-进").getChannel());
|
|
|
landBusinesstypeListService.save(landBusinesstypeList);
|
|
|
insertVm(landBusinesstypeList.getMassageId(), landBusinesstypeList.getTrailerFrameNo(), mainfistList);
|
|
|
|
|
|
// second out
|
|
|
LandBusinesstypeList list = new LandBusinesstypeList();
|
|
|
list.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setIsDelete("0");
|
|
|
list.setIsvalid("0");
|
|
|
list.setIsfull(isfull);
|
|
|
list.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list.setEndport(startport);
|
|
|
list.setEndstation(startStation);
|
|
|
list.setProdectTime(new Date());
|
|
|
list.setMasterList(mainfistList);
|
|
|
list.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list.setAisle(bayService.findByYardAndName(startStation, "1号卡口-出").getChannel());
|
|
|
list.setTurnoverflag("E");
|
|
|
list.setMassageId(messageId);
|
|
|
list.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list);
|
|
|
|
|
|
// third
|
|
|
LandBusinesstypeList list1 = new LandBusinesstypeList();
|
|
|
list1.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list1.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list1.setCocode(landBusinesstypeList.getCocode());
|
|
|
list1.setIsDelete("0");
|
|
|
list1.setIsvalid("0");
|
|
|
list1.setIsfull(isfull);
|
|
|
list1.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list1.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list1.setCocode(landBusinesstypeList.getCocode());
|
|
|
list1.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list1.setStartport(startport);
|
|
|
list1.setStartsatation(startStation);
|
|
|
list1.setEndport(endport);
|
|
|
list1.setEndstation(endStation);
|
|
|
list1.setProdectTime(new Date());
|
|
|
list1.setMasterList(mainfistList);
|
|
|
list1.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list1.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list1.setAisle(bayService.findByYardAndName(endStation, "6号卡口-进").getChannel());
|
|
|
list1.setTurnoverflag("I");
|
|
|
list1.setMassageId(messageId);
|
|
|
list1.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list1);
|
|
|
|
|
|
// four
|
|
|
LandBusinesstypeList list2 = new LandBusinesstypeList();
|
|
|
list2.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list2.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list2.setCocode(landBusinesstypeList.getCocode());
|
|
|
list2.setIsDelete("0");
|
|
|
list2.setIsvalid("0");
|
|
|
list2.setIsfull(isfull);
|
|
|
list2.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list2.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list2.setCocode(landBusinesstypeList.getCocode());
|
|
|
list2.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list2.setStartport("");
|
|
|
list2.setStartsatation("");
|
|
|
list2.setStartport(startport);
|
|
|
list2.setStartsatation(startStation);
|
|
|
list2.setEndport(endport);
|
|
|
list2.setEndstation(endStation);
|
|
|
list2.setProdectTime(new Date());
|
|
|
list2.setMasterList("");
|
|
|
list2.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list2.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list2.setAisle(bayService.findByYardAndName(endStation, "6号卡口-出").getChannel());
|
|
|
list2.setTurnoverflag("E");
|
|
|
list2.setMassageId(messageId);
|
|
|
list2.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list2);
|
|
|
//five
|
|
|
LandBusinesstypeList list3 = new LandBusinesstypeList();
|
|
|
list3.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list3.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list3.setCocode(landBusinesstypeList.getCocode());
|
|
|
list3.setIsDelete("0");
|
|
|
list3.setIsvalid("0");
|
|
|
list3.setIsfull(isfull);
|
|
|
list3.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list3.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list3.setCocode(landBusinesstypeList.getCocode());
|
|
|
list3.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list3.setStartport("");
|
|
|
list3.setStartsatation("");
|
|
|
list3.setStartport(startport);
|
|
|
list3.setStartsatation(startStation);
|
|
|
list3.setEndport(endport);
|
|
|
list3.setEndstation("4612199001");
|
|
|
list3.setProdectTime(new Date());
|
|
|
list3.setMasterList("");
|
|
|
list3.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list3.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list3.setAisle("4612031001");
|
|
|
list3.setTurnoverflag("I");
|
|
|
list3.setMassageId(messageId);
|
|
|
list3.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list3);
|
|
|
//six
|
|
|
//five
|
|
|
LandBusinesstypeList list4 = new LandBusinesstypeList();
|
|
|
list4.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list4.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list4.setCocode(landBusinesstypeList.getCocode());
|
|
|
list4.setIsDelete("0");
|
|
|
list4.setIsvalid("0");
|
|
|
list4.setIsfull(isfull);
|
|
|
list4.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list4.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list4.setCocode(landBusinesstypeList.getCocode());
|
|
|
list4.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list4.setStartport("");
|
|
|
list4.setStartsatation("");
|
|
|
list4.setStartport(startport);
|
|
|
list4.setStartsatation(startStation);
|
|
|
list4.setEndport(endport);
|
|
|
list4.setEndstation("4612199001");
|
|
|
list4.setProdectTime(new Date());
|
|
|
list4.setMasterList("");
|
|
|
list4.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list4.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
//list4.setAisle(bayService.findByYardAndName(endStation, "内三卡口-出").getChannel());
|
|
|
list4.setAisle("4612030001");
|
|
|
list4.setTurnoverflag("E");
|
|
|
list4.setMassageId(messageId);
|
|
|
list4.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list4);
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
public boolean insertType2(LandBusinesstypeList landBusinesstypeList) {
|
|
|
|
|
|
try {
|
|
|
String messageId = LandBusinesstypeListController.dateTimeFormat();
|
|
|
|
|
|
//String barCode="abcd";
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
...
|
...
|
@@ -501,7 +804,16 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
list.setMasterList(mainfistList);
|
|
|
list.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
if("4604333311".equals(landBusinesstypeList.getAisle())){
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
}else if("4604333321".equals(landBusinesstypeList.getAisle())){
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "2号卡口-出").getChannel());
|
|
|
}else if("4604444411".equals(landBusinesstypeList.getAisle())){
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
}else{
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
}
|
|
|
|
|
|
list.setTurnoverflag("E");
|
|
|
list.setMassageId(messageId);
|
|
|
list.setBarcode(barCode);
|
...
|
...
|
@@ -517,7 +829,171 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
try {
|
|
|
|
|
|
String messageId = LandBusinesstypeListController.dateTimeFormat();
|
|
|
//String barCode="abcd";
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
return false;
|
|
|
}
|
|
|
// first entry
|
|
|
landBusinesstypeList.setMassageId(messageId);
|
|
|
String mainfistList = landBusinesstypeList.getMasterList();
|
|
|
String isfull = landBusinesstypeList.getIsfull();
|
|
|
landBusinesstypeList.setProdectTime(new Date());
|
|
|
landBusinesstypeList.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(landBusinesstypeList);
|
|
|
insertVm(landBusinesstypeList.getMassageId(), landBusinesstypeList.getTrailerFrameNo(), mainfistList);
|
|
|
// second
|
|
|
LandBusinesstypeList list = new LandBusinesstypeList();
|
|
|
list.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setIsDelete("0");
|
|
|
list.setIsvalid("0");
|
|
|
list.setIsfull(isfull);
|
|
|
list.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list.setStartport(landBusinesstypeList.getStartport());
|
|
|
list.setStartsatation(landBusinesstypeList.getStartsatation());
|
|
|
list.setEndport(landBusinesstypeList.getEndport());
|
|
|
list.setEndstation(landBusinesstypeList.getEndstation());
|
|
|
list.setProdectTime(new Date());
|
|
|
list.setMasterList("");
|
|
|
list.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
if("4604333311".equals(landBusinesstypeList.getAisle())){
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
}else if("4604333321".equals(landBusinesstypeList.getAisle())){
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "2号卡口-出").getChannel());
|
|
|
}else if("4604444411".equals(landBusinesstypeList.getAisle())){
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
}else{
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
}
|
|
|
list.setTurnoverflag("E");
|
|
|
list.setMassageId(messageId);
|
|
|
list.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list);
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
return true;
|
|
|
}
|
|
|
public boolean insertTypeZE(LandBusinesstypeList landBusinesstypeList) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
String messageId = LandBusinesstypeListController.dateTimeFormat();
|
|
|
//String barCode="abcd";
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
|
|
return false;
|
|
|
}
|
|
|
// first entry
|
|
|
landBusinesstypeList.setMassageId(messageId);
|
|
|
String mainfistList = landBusinesstypeList.getMasterList();
|
|
|
String isfull = landBusinesstypeList.getIsfull();
|
|
|
landBusinesstypeList.setProdectTime(new Date());
|
|
|
landBusinesstypeList.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(landBusinesstypeList);
|
|
|
insertVm(landBusinesstypeList.getMassageId(), landBusinesstypeList.getTrailerFrameNo(), mainfistList);
|
|
|
// second
|
|
|
LandBusinesstypeList list = new LandBusinesstypeList();
|
|
|
list.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setIsDelete("0");
|
|
|
list.setIsvalid("0");
|
|
|
list.setIsfull(isfull);
|
|
|
list.setIsthree("0");
|
|
|
list.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list.setStartport(landBusinesstypeList.getStartport());
|
|
|
list.setStartsatation(landBusinesstypeList.getStartsatation());
|
|
|
list.setEndport(landBusinesstypeList.getEndport());
|
|
|
list.setEndstation(landBusinesstypeList.getEndstation());
|
|
|
list.setProdectTime(new Date());
|
|
|
list.setMasterList("");
|
|
|
list.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "6号卡口-出").getChannel());
|
|
|
list.setTurnoverflag("E");
|
|
|
list.setMassageId(messageId);
|
|
|
list.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list);
|
|
|
|
|
|
//five
|
|
|
LandBusinesstypeList list3 = new LandBusinesstypeList();
|
|
|
list3.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list3.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list3.setCocode(landBusinesstypeList.getCocode());
|
|
|
list3.setIsDelete("0");
|
|
|
list3.setIsvalid("0");
|
|
|
list3.setIsthree("0");
|
|
|
list3.setIsfull(isfull);
|
|
|
list3.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list3.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list3.setCocode(landBusinesstypeList.getCocode());
|
|
|
list3.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list3.setStartport("");
|
|
|
list3.setStartsatation("");
|
|
|
list3.setEndport("4620");
|
|
|
list3.setEndstation("4612199001");
|
|
|
list3.setProdectTime(new Date());
|
|
|
list3.setMasterList("");
|
|
|
list3.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list3.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list3.setAisle("4612031001");
|
|
|
list3.setTurnoverflag("I");
|
|
|
list3.setMassageId(messageId);
|
|
|
list3.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list3);
|
|
|
//six
|
|
|
//five
|
|
|
LandBusinesstypeList list4 = new LandBusinesstypeList();
|
|
|
list4.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
list4.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
list4.setCocode(landBusinesstypeList.getCocode());
|
|
|
list4.setIsDelete("0");
|
|
|
list4.setIsvalid("0");
|
|
|
list4.setIsthree("0");
|
|
|
list4.setIsfull(isfull);
|
|
|
list4.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list4.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
list4.setCocode(landBusinesstypeList.getCocode());
|
|
|
list4.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
list4.setStartport("");
|
|
|
list4.setStartsatation("");
|
|
|
list4.setEndport("4620");
|
|
|
list4.setEndstation("4612199001");
|
|
|
list4.setProdectTime(new Date());
|
|
|
list4.setMasterList("");
|
|
|
list4.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list4.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
//list4.setAisle(bayService.findByYardAndName(endStation, "内三卡口-出").getChannel());
|
|
|
list4.setAisle("4612030001");
|
|
|
list4.setTurnoverflag("E");
|
|
|
list4.setMassageId(messageId);
|
|
|
list4.setBarcode(barCode);
|
|
|
landBusinesstypeListService.save(list4);
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
return true;
|
|
|
}
|
|
|
public boolean insertTypeZE2(LandBusinesstypeList landBusinesstypeList) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
String messageId = LandBusinesstypeListController.dateTimeFormat();
|
|
|
//String barCode="abcd";
|
|
|
String barCode = buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(), messageId);
|
|
|
if (barCode.length() < 1 | barCode == null) {
|
|
|
buildBarCode.cancleBarCode(landBusinesstypeList.getTrailerFrameNo());
|
...
|
...
|
@@ -538,6 +1014,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
list.setCocode(landBusinesstypeList.getCocode());
|
|
|
list.setIsDelete("0");
|
|
|
list.setIsvalid("0");
|
|
|
list.setIsthree("1");
|
|
|
list.setIsfull(isfull);
|
|
|
list.setTrailerLicenseNo(landBusinesstypeList.getTrailerLicenseNo());
|
|
|
list.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
...
|
...
|
@@ -551,7 +1028,7 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
list.setMasterList("");
|
|
|
list.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
list.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "1号卡口-出").getChannel());
|
|
|
list.setAisle(bayService.findByYardAndName(landBusinesstypeList.getEndstation(), "6号卡口-出").getChannel());
|
|
|
list.setTurnoverflag("E");
|
|
|
list.setMassageId(messageId);
|
|
|
list.setBarcode(barCode);
|
...
|
...
|
@@ -563,81 +1040,6 @@ public class LandBusinesstypeListController extends BaseController { |
|
|
return true;
|
|
|
}
|
|
|
|
|
|
/*
|
|
|
* public void insertType1(LandBusinesstypeList landBusinesstypeList) { //first
|
|
|
* entry in String messageId = LandBusinesstypeListController.dateTimeFormat();
|
|
|
* String mainfistList = landBusinesstypeList.getMasterList(); String startport
|
|
|
* = landBusinesstypeList.getStartport(); String endport =
|
|
|
* landBusinesstypeList.getEndport(); String startStation =
|
|
|
* landBusinesstypeList.getStartsatation(); String endStation =
|
|
|
* landBusinesstypeList.getEndstation(); String isfull =
|
|
|
* landBusinesstypeList.getIsfull();
|
|
|
* landBusinesstypeList.setMassageId(messageId); String barCode =
|
|
|
* buildBarCode.CreateBarCode(landBusinesstypeList.getTrailerFrameNo(),messageId
|
|
|
* ); landBusinesstypeList.setStartport("");
|
|
|
* landBusinesstypeList.setStartsatation("");
|
|
|
* landBusinesstypeList.setEndport(startport);
|
|
|
* landBusinesstypeList.setEndstation(startStation);
|
|
|
* landBusinesstypeList.setBarcode(barCode);
|
|
|
* landBusinesstypeList.setMasterList("");
|
|
|
* landBusinesstypeList.setProdectTime(new Date());
|
|
|
* landBusinesstypeList.setAisle(bayService.findByYardAndName(startStation,
|
|
|
* "1号卡口-进").getChannel());
|
|
|
* landBusinesstypeListService.save(landBusinesstypeList);
|
|
|
* insertVm(landBusinesstypeList.getMassageId(),landBusinesstypeList.
|
|
|
* getTrailerFrameNo(),mainfistList);
|
|
|
*
|
|
|
* //second out LandBusinesstypeList list = new LandBusinesstypeList();
|
|
|
* list.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
* list.setAgentno(landBusinesstypeList.getAgentno()); list.setBarcode(barCode);
|
|
|
* list.setIsDelete("0"); list.setIsvalid("0"); list.setIsfull(isfull);
|
|
|
* list.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
* list.setCocode(landBusinesstypeList.getCocode());
|
|
|
* list.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
* list.setEndport(startport); list.setEndstation(startStation);
|
|
|
* list.setProdectTime(new Date()); list.setMasterList(mainfistList);
|
|
|
* list.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
* list.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
* list.setAisle(bayService.findByYardAndName(startStation,
|
|
|
* "1号卡口-出").getChannel()); list.setTurnoverflag("E");
|
|
|
* list.setMassageId(messageId); landBusinesstypeListService.save(list);
|
|
|
*
|
|
|
* //third LandBusinesstypeList list1 = new LandBusinesstypeList();
|
|
|
* list1.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
* list1.setAgentno(landBusinesstypeList.getAgentno()); list1.setIsDelete("0");
|
|
|
* list1.setIsvalid("0"); list1.setIsfull(isfull); list1.setBarcode(barCode);
|
|
|
* list1.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
* list1.setCocode(landBusinesstypeList.getCocode());
|
|
|
* list1.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
* list1.setStartport(startport); list1.setStartsatation(startStation);
|
|
|
* list1.setEndport(endport); list1.setEndstation(endStation);
|
|
|
* list1.setProdectTime(new Date()); list1.setMasterList(mainfistList);
|
|
|
* list1.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
* list1.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
* list1.setAisle(bayService.findByYardAndName(endStation,
|
|
|
* "1号卡口-进").getChannel()); list1.setTurnoverflag("I");
|
|
|
* list1.setMassageId(messageId); landBusinesstypeListService.save(list1);
|
|
|
*
|
|
|
* //four LandBusinesstypeList list2 = new LandBusinesstypeList();
|
|
|
* list2.setAgentname(landBusinesstypeList.getAgentname());
|
|
|
* list2.setAgentno(landBusinesstypeList.getAgentno());
|
|
|
* list2.setBarcode(barCode); list2.setIsDelete("0"); list2.setIsvalid("0");
|
|
|
* list2.setIsfull(isfull);
|
|
|
* list2.setBusinesstype(landBusinesstypeList.getBusinesstype());
|
|
|
* list2.setCocode(landBusinesstypeList.getCocode());
|
|
|
* list2.setTrailerFrameNo(landBusinesstypeList.getTrailerFrameNo());
|
|
|
* list2.setStartport(""); list2.setStartsatation("");
|
|
|
* list2.setStartport(startport); list2.setStartsatation(startStation);
|
|
|
* list2.setEndport(endport); list2.setEndstation(endStation);
|
|
|
* list2.setProdectTime(new Date()); list2.setMasterList("");
|
|
|
* list2.setDriverid(landBusinesstypeList.getDriverid());
|
|
|
* list2.setDrivername(landBusinesstypeList.getDrivername());
|
|
|
* list2.setAisle(bayService.findByYardAndName(endStation,
|
|
|
* "1号卡口-出").getChannel()); list2.setTurnoverflag("E");
|
|
|
* list2.setMassageId(messageId); landBusinesstypeListService.save(list2);
|
|
|
*
|
|
|
* }
|
|
|
*/
|
|
|
public static String dateTimeFormat() {
|
|
|
Date dateTime = new Date();
|
|
|
SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");
|
...
|
...
|
|