demand: 运单录入寄件国家非中国不保存企业名称、税号。运单修改支持企业名称、税号修改为空

committer: heyu
This commit is contained in:
aike 2025-08-28 13:21:36 +08:00
parent 30f947750e
commit 10123ad06a

View File

@ -2500,6 +2500,12 @@ public class EmisWaybillServiceImpl extends EmisBaseService implements IEmisWayb
emisWaybillSave.setEnterpriseName(" ");
emisWaybillSave.setEnterpriseTaxId(" ");
}
if(StringUtil.isBlank(emisWaybillSave.getEnterpriseName())){
emisWaybillSave.setEnterpriseName(" ");
}
if(StringUtil.isBlank(emisWaybillSave.getEnterpriseTaxId())){
emisWaybillSave.setEnterpriseTaxId(" ");
}
// 发件地址
EmisCustomerAddress sendAddress = new EmisCustomerAddress();