dev
This commit is contained in:
parent
ec1ee69384
commit
aeed19c7f8
|
|
@ -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");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue