丽知:sku同步限制去除空格
This commit is contained in:
parent
45aff8f6d4
commit
c54ea5347a
|
@ -299,9 +299,9 @@ public class SKUPluginInitializer extends PluginBaseEntity {
|
|||
//def2 ofs id
|
||||
parentvo.setDef2(sku.getId());
|
||||
//invcode 存货编码
|
||||
parentvo.setInvcode(sku.getCode());
|
||||
parentvo.setInvcode(sku.getCode().trim());
|
||||
//invmnecode 助记码
|
||||
parentvo.setInvmnecode(sku.getCode());
|
||||
parentvo.setInvmnecode(sku.getCode().trim());
|
||||
//invname 存货名称
|
||||
parentvo.setInvname(sku.getName());
|
||||
//invshortname 存货简称
|
||||
|
|
Loading…
Reference in New Issue