md
This commit is contained in:
parent
1bc637aa40
commit
436e57f726
@ -3693,8 +3693,9 @@ public class EmisBaseService {
|
||||
|
||||
String kdQueryChannelJsonStr="{\n" +
|
||||
"\"doora\":{\"chId\":\"17track\",\"comId\":\"100702\"},\n" +
|
||||
"\"Vietelpost\":{\"chId\":\"17track\",\"comId\":\"100611\"}\n" +
|
||||
"\"Viettelpost\":{\"chId\":\"17track\",\"comId\":\"100611\"}\n" +
|
||||
"}";
|
||||
|
||||
JSONObject jobjKdQ = JSONObject.parseObject(kdQueryChannelJsonStr);
|
||||
|
||||
JSONObject kdQObj = jobjKdQ.getJSONObject("Vietelpost");
|
||||
|
||||
@ -244,10 +244,13 @@ public class EmisWaybillAjustApplyServiceImpl extends EmisBaseService implements
|
||||
}
|
||||
|
||||
// bug: 1412 月结客户发生改变,都需要从账单中移除
|
||||
if( !oldCustNo.equals(newCustNo)){
|
||||
throw new EmisBizError(EmisBizErrorType.FAIL,"已定制账单,月结客户发生改变,请从原账单移除,单号:"+emisSettleSubBill.getBillNo());
|
||||
if(!StringUtils.isEmpty(newCustNo)){
|
||||
if( !newCustNo.equals(oldCustNo)){
|
||||
throw new EmisBizError(EmisBizErrorType.FAIL,"已定制账单,月结客户发生改变,请从原账单移除,单号:"+emisSettleSubBill.getBillNo());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user