md
This commit is contained in:
parent
3a3dfb617c
commit
770752eb49
@ -256,7 +256,7 @@ public class EmisWaybillServiceImpl implements IEmisWaybillService
|
||||
}
|
||||
|
||||
// 插入商品信息
|
||||
if(!CollectionUtil.isNotEmpty(emisWaybillNew.getCargoList() )){
|
||||
if(!CollectionUtil.isEmpty(emisWaybillNew.getCargoList() )){
|
||||
List<EmisWaybillCargo> cargoList=emisWaybillNew.getCargoList();
|
||||
for (EmisWaybillCargo cargoItem:cargoList) {
|
||||
cargoItem.setWaybillId(emisWaybillNew.getId());
|
||||
@ -265,7 +265,7 @@ public class EmisWaybillServiceImpl implements IEmisWaybillService
|
||||
}
|
||||
|
||||
// 插入附件信息
|
||||
if(!CollectionUtil.isNotEmpty(emisWaybillNew.getAttachmentList() )){
|
||||
if(!CollectionUtil.isEmpty(emisWaybillNew.getAttachmentList() )){
|
||||
List<EmisWaybillAttachment> attachmentList=emisWaybillNew.getAttachmentList();
|
||||
for (EmisWaybillAttachment attachmentItem:attachmentList) {
|
||||
attachmentItem.setWaybillId(emisWaybillNew.getId());
|
||||
|
||||
Loading…
Reference in New Issue
Block a user