如何在 InventItemLocation table 上导入?
How to Import on InventItemLocation table?
我知道一些 类 AIF 可以导入到 标准 Table 中,看起来像:InventItem_InventTable; VendVendTable_VendTable 等等...
我必须导入 InventTable,而且,我也想在 InventItemLocation table.
中插入
当我启动 :
entityKeyList = InventItemService::construct().create(InventItemDocument);
发生 InventItemLocation 自动填充。
是否有其他 AIF 类 用于导入和填充 InventItemLocation
?
我会决定插入特定字段(与 inventTable 无关)。
我现在无法测试,但我会尝试 AxInventItemLocation
class (MSDN)。
像这样:
AxInventItemLocation axInventItemLocation;
axInventItemLocation = AxInventItemLocation::construct();
axInventItemLocation.parmItemId(someItemId);
axInventItemLocation.parmInventDimId(aInventDimId);
axInventItemLocation.save();
我知道一些 类 AIF 可以导入到 标准 Table 中,看起来像:InventItem_InventTable; VendVendTable_VendTable 等等...
我必须导入 InventTable,而且,我也想在 InventItemLocation table.
中插入当我启动 :
entityKeyList = InventItemService::construct().create(InventItemDocument);
发生 InventItemLocation 自动填充。
是否有其他 AIF 类 用于导入和填充 InventItemLocation
?
我会决定插入特定字段(与 inventTable 无关)。
我现在无法测试,但我会尝试 AxInventItemLocation
class (MSDN)。
像这样:
AxInventItemLocation axInventItemLocation;
axInventItemLocation = AxInventItemLocation::construct();
axInventItemLocation.parmItemId(someItemId);
axInventItemLocation.parmInventDimId(aInventDimId);
axInventItemLocation.save();