1

我知道一些AIF类要导入到标准表中,如下所示: InventItem_InventTable ;VendVendTable_VendTable 等...

我必须导入到 InventTable,并且,我也想在InventItemLocation表中插入。

当我启动:

entityKeyList = InventItemService::construct().create(InventItemDocument);

发生 InventItemLocation 自动填充。

是否有其他 AIF 类用于导入和填充InventItemLocation

我会决定插入特定字段(与 inventTable 无关)。

4

1 回答 1

0

我现在无法测试它,但我会试试这个AxInventItemLocation课程(MSDN)。像这样的东西:

AxInventItemLocation axInventItemLocation;

axInventItemLocation = AxInventItemLocation::construct();

axInventItemLocation.parmItemId(someItemId);
axInventItemLocation.parmInventDimId(aInventDimId);

axInventItemLocation.save();
于 2015-12-01T20:00:13.327 回答