This commit is contained in:
LiJianZhao 2025-06-05 14:10:53 +08:00
parent ec1ee69384
commit aeed19c7f8
2 changed files with 3 additions and 3 deletions

View File

@ -146,7 +146,7 @@ public class GoodsService extends BaseService {
} }
//上传对照消息 3301 //上传对照消息 3301
if (goods.getHilistCode() != null || !goods.getHilistCode().isEmpty()){ if (goods.getHilistCode() != null && !goods.getHilistCode().isEmpty()){
itemService.call3301(goods.getHilistCode(),"goods","create"); itemService.call3301(goods.getHilistCode(),"goods","create");
} }

View File

@ -233,7 +233,7 @@ public class ItemService extends BaseService {
//上传对照消息 3301 //上传对照消息 3301
if (item.getSocialCode() != null){ if (item.getSocialCode() != null && !item.getSocialCode().isEmpty()){
this.call3301(item.getSocialCode(),"item","create"); this.call3301(item.getSocialCode(),"item","create");
} }
} }
@ -356,7 +356,7 @@ public class ItemService extends BaseService {
itemGroupListMapper.insertOrUpdate(itemGroup); itemGroupListMapper.insertOrUpdate(itemGroup);
//上传对照消息 3301 //上传对照消息 3301
if (itemGroup.getSocialCode() != null){ if (itemGroup.getSocialCode() != null && !itemGroup.getSocialCode().isEmpty()){
this.call3301(itemGroup.getSocialCode(),"item_group_list","create"); this.call3301(itemGroup.getSocialCode(),"item_group_list","create");
} }