且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Acumatica 采购订单收据 API 找不到 PO Order Nbr

更新时间:2023-11-18 14:05:52

试试这个:

{
"CreateBill": {"value": true},
"VendorRef": {"value": "FROM_API"},
"VendorID": {"value": "ARTISTICCARP"},
"Details": [
    {
        "InventoryID": {"value":"VND1807 4x6"},
        "ReceiptQty": {"value": 1},
        "POOrderNbr": {"value": "001131" },
        "POLineNbr": {"value": 1},
        "POOrderType": {"value": "Normal"}
       
    }]
}

您传入了错误的订单类型,这就是它找不到采购订单的原因.如果 CreateBill = true,您还需要一个 Vendor Ref.

You passed in a wrong order type that's why it cannot find the purchase order. And you also need a Vendor Ref if CreateBill = true.