当我让 Xero 生成发票编号和 ID 时,如何在发布到 Xero 后更新我的发票

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

我想向 xero 发送 2 张非常基本的发票。 让 xero 创建 Invoice Nr 和 InvoiceId,然后返回它,以便我可以在我们这边更新它。

发送后我们的 IDE 创建一个新的根目录。

有没有办法随发票一起发送某种 GUID,以便我稍后可以匹配和更新信息?

{ "Invoices": [ { "Type": "ACCREC", "Contact": { "ContactID": "XYZ" }, "Status": "AUTHORISED", "LineItems": [ { "Description": "16 Jul 2024 transport ", "Quantity": "28", "UnitAmount": "190", "LineAmount": "5351.", "AccountCode": "200" } ] }, { "Type": "ACCREC", "Contact": { "ContactID": "ABC" }, "Status": "AUTHORISED", "LineItems": [ { "Description": "16 Jul 2024 transport TCI U 316377 8123", "Quantity": "30.005", "UnitAmount": "190", "LineAmount": "5700.95", "AccountCode": "200" } ] } ] }

我尝试过使用客户端+金额,但这不是解决这个问题的好方法。

uuid guid invoice xero-api
1个回答
0
投票

对于 ACCREC 发票,您可以在参考字段中包含标识符,如此处所述。

© www.soinside.com 2019 - 2024. All rights reserved.