demand: tms-运单管理-转件管理-校验逻辑修改

This commit is contained in:
aike 2026-03-04 17:47:43 +08:00
parent 6d98cb17b6
commit ebba0584c6

View File

@ -169,7 +169,7 @@ public class EmisWaybillTransferController extends EmisBaseController
if(!CollectionUtils.isEmpty(problemList)){
for(EmisWaybillProblemInfo problemInfo : problemList){
Integer problemType = problemInfo.getProblemType();
if(problemType != null && (problemType == 151 || problemType == 170 || problemType == 173)){
if (problemType != null && (problemType == 151 || problemType == 170 || problemType == 173) && mainBillCode.equals(problemInfo.getBillCode())) {
String problemTypeName = "";
if(problemType == 151){
problemTypeName = "面单删除";
@ -191,7 +191,7 @@ public class EmisWaybillTransferController extends EmisBaseController
if(!CollectionUtils.isEmpty(subProblemList)){
for(EmisWaybillProblemInfo problemInfo : subProblemList){
Integer problemType = problemInfo.getProblemType();
if(problemType != null && (problemType == 151 || problemType == 170 || problemType == 173)){
if (problemType != null && (problemType == 151 || problemType == 170 || problemType == 173) && billCode.equals(problemInfo.getBillCode())) {
String problemTypeName = "";
if(problemType == 151){
problemTypeName = "面单删除";