0

我们正在尝试按站点获取装配库存水平。

ItemInventoryAssembly有总数但不按站点划分。

ItemSites,按站点提供库存,不包括组装项目。

但是,以下 xml 请求 (ItemSiteQueryRq) 也返回程序集项目:

<?xml version="1.0" encoding="utf-8"?>
<?qbxml version="13.0"?>
<QBXML>
    <QBXMLMsgsRq onError="stopOnError">
        <ItemSitesQueryRq>
            <ItemSiteFilter>
                <ItemFilter>
                    <FullName >The item's full name </FullName>
                </ItemFilter>
            </ItemSiteFilter>
            <MaxReturned>25</MaxReturned>
            <ActiveStatus>All</ActiveStatus>
        </ItemSitesQueryRq>
    </QBXMLMsgsRq>
</QBXML>

这只是 QODBC 中的一个设置吗?

我们如何按站点获取装配项目的库存?

4

1 回答 1

0

事实证明,该表ItemSites也具有装配库存水平。但是项目编号列在其他列中。

因此,对于常规库存,列是ItemInventoryRefListIDItemInventoryRefFullName

对于装配库存,列是ItemInventoryAssemblyRefListIDItemInventoryAssemblyRefFullName

于 2020-03-12T16:43:34.690 回答