使用 Sage Intacct API 在创建销售订单条目上指定实体

问题描述 投票:0回答:1

我正在尝试在销售订单创建 API 上指定一个实体位置,在该 API 中可以在“公司”>“实体”下找到该实体。有没有办法使用 Sage Intacct API 在创建销售订单输入 API 上指定它?

xml api post request postman
1个回答
0
投票

您需要分两步完成,首先使用 api location 查询位置,然后在 sale sorder 中传递值

1.

<query>
    <object>LOCATIONENTITY</object>
    <select>
        <field>LOCATIONID</field>
        <field>NAME</field>
        <field>RECORDNO</field>
    </select>
</query>

结果

            <result>
                  <status>success</status>
                  <function>query</function>
                  <controlid>controlid</controlid>
                  <data listtype="LOCATIONENTITY" totalcount="1" offset="0" count="1" numremaining="0">
                        <LOCATIONENTITY>
                              <LOCATIONID>100</LOCATIONID>
                              <NAME>Test</NAME>
                              <RECORDNO>1</RECORDNO>
                        </LOCATIONENTITY>
                  </data>
            </result>
      </operation>
</response> 
© www.soinside.com 2019 - 2024. All rights reserved.