Merge pull request 'demand: tms-运单管理-转件管理-校验逻辑修改' (#321) from aike into master
Reviewed-on: http://git.xdadan.loc/tanex/emis-service/pulls/321
This commit is contained in:
commit
3fafb4ffa2
@ -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 = "面单删除";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user