demand: 打印备注修改,始发网点为空时设置默认值
committer: heyu
This commit is contained in:
parent
c80db35415
commit
22f371e439
@ -2851,7 +2851,7 @@ public class EmisBaseService {
|
||||
.filter(s -> s != null && s.length() >= 6)
|
||||
.map(s -> s.substring(s.length() - 6))
|
||||
.collect(Collectors.joining(","));
|
||||
remark = remark + " " + "该运单为主单,对应虚拟单为" + shortCodes;
|
||||
remark = remark + " " + "该运单为主单,对应虚拟单为" + shortCodes + ",";
|
||||
}
|
||||
// if (StringUtil.isNotBlank(waybill.getMasterBillCode())) {
|
||||
// remark = remark + " " + "该运单为虚拟单,对应主单为" + waybill.getMasterBillCode();
|
||||
|
||||
@ -2286,6 +2286,10 @@ public class EmisWaybillServiceImpl extends EmisBaseService implements IEmisWayb
|
||||
emisWaybillSave.setOrderSn(orderSn);
|
||||
}
|
||||
|
||||
if(StringUtil.isBlank(emisWaybillSave.getStartSiteCode())){
|
||||
emisWaybillSave.setStartSiteCode(emisWaybillSave.getSendSiteCode());
|
||||
}
|
||||
|
||||
|
||||
if( StringUtils.isAnyEmpty(
|
||||
emisWaybillSave.getTransLineType(),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user