我知道某些类 AIF 要导入到标准表,如下所示:InventItem_InventTable; VendVendTable_VendTable等......
我必须导入到InventTable中,并且我也希望在 InventItemLocation 表中插入。
当我启动:
entityKeyList = InventItemService::construct().create(InventItemDocument);
发生在InventItemLocation自动填充。
是否有其他AIF类可以导入和填充InventItemLocation
?
我决定插入特定字段(与inventTable无关)。
答案 0 :(得分:0)
我现在无法测试它,但我会试试AxInventItemLocation
类(MSDN)。
像这样:
AxInventItemLocation axInventItemLocation;
axInventItemLocation = AxInventItemLocation::construct();
axInventItemLocation.parmItemId(someItemId);
axInventItemLocation.parmInventDimId(aInventDimId);
axInventItemLocation.save();