...
|
...
|
@@ -203,7 +203,7 @@ public class CustomXmlHandleThread implements Runnable{ |
|
|
}
|
|
|
break;
|
|
|
case "MT3201":
|
|
|
if (customReception.getWayBillSecond()!=null && secondSplit.contains(customReception.getWayBillSecond())){
|
|
|
if (customReception.getWayBillSecond()!=null && customReception.getWayBillSecond().contains(secondSplit)){
|
|
|
ARRIVEDSECONDARY arrivedsecondary = new ARRIVEDSECONDARY(customReception);
|
|
|
i=arrivedsecondary.secondAnalysisReception();
|
|
|
}else {
|
...
|
...
|
@@ -212,7 +212,7 @@ public class CustomXmlHandleThread implements Runnable{ |
|
|
}
|
|
|
break;
|
|
|
case "MT5202":
|
|
|
if (customReception.getWayBillSecond()!=null && secondSplit.contains(customReception.getWayBillSecond())){
|
|
|
if (customReception.getWayBillSecond()!=null && customReception.getWayBillSecond().contains(secondSplit)){
|
|
|
TALLYSECONDARY tallysecondary = new TALLYSECONDARY(customReception);
|
|
|
i=tallysecondary.secondAnalysisReception();
|
|
|
}else {
|
...
|
...
|
@@ -221,7 +221,7 @@ public class CustomXmlHandleThread implements Runnable{ |
|
|
}
|
|
|
break;
|
|
|
case "MT5201":
|
|
|
if (customReception.getWayBillSecond()!=null && secondSplit.contains(customReception.getWayBillSecond())){
|
|
|
if (customReception.getWayBillSecond()!=null && customReception.getWayBillSecond().contains(secondSplit)){
|
|
|
TALLYSECONDARY tallysecondary = new TALLYSECONDARY(customReception);
|
|
|
i=tallysecondary.secondAnalysisReception();
|
|
|
}else {
|
...
|
...
|
@@ -234,16 +234,16 @@ public class CustomXmlHandleThread implements Runnable{ |
|
|
i=departuresloading.masterAnalysisReception();
|
|
|
break;
|
|
|
case "MT1201":
|
|
|
if (customReception.getWayBillSecond()!=null && secondSplit.contains(customReception.getWayBillSecond())){
|
|
|
if (customReception.getWayBillSecond()!=null && customReception.getWayBillSecond().contains(secondSplit)){
|
|
|
Originmanifestsecondary originmanifestsecondary = new Originmanifestsecondary(customReception);
|
|
|
originmanifestsecondary.secondAnalysisReception();
|
|
|
i=originmanifestsecondary.secondAnalysisReception();
|
|
|
}else {
|
|
|
ORIGINMANIFESTMASTER originmanifestmaster1201 = new ORIGINMANIFESTMASTER(customReception);
|
|
|
i = originmanifestmaster1201.masterAnalysisReception();
|
|
|
}
|
|
|
break;
|
|
|
case "MT2201":
|
|
|
if (customReception.getWayBillSecond()!=null && secondSplit.contains(customReception.getWayBillSecond())){
|
|
|
if (customReception.getWayBillSecond()!=null && customReception.getWayBillSecond().contains(secondSplit)){
|
|
|
PREPARESECONDARY preparesecondary = new PREPARESECONDARY(customReception);
|
|
|
i = preparesecondary.secondAnalysisReception();
|
|
|
}else {
|
...
|
...
|
@@ -323,7 +323,7 @@ public class CustomXmlHandleThread implements Runnable{ |
|
|
String errDirByDay = customXmlHandle.errBakDir + "/" + today;
|
|
|
File berrDirectory = new File(errDirByDay);
|
|
|
FileUtils.moveFileToDirectory(file,berrDirectory,true);
|
|
|
log.info("数据库未找到与回执适配的信息备份文件:{}:"+file.getName());
|
|
|
log.info("数据库未找到与回执适配的信息备份文件:{}:",file.getName());
|
|
|
}catch (FileExistsException e){
|
|
|
log.error("备份解析错误文件失败,目标文件夹存在同名文件{}",file.getName());
|
|
|
}catch (Exception e){
|
...
|
...
|
|