Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 QBFC SDK,我似乎无法在 OSR 中找到任何可以提供发票到期金额的内容,因为 Quickbooks UI 会跟踪它。
QBFC 中的 Invoice 对象没有任何已应用的付款详细信息,我找不到手动检查付款的参考。我可能忽略了什么吗?
有一个BalanceRemaining字段可以为您提供所需的内容。
BalanceRemaining
... <AppliedAmount >AMTTYPE</AppliedAmount> <BalanceRemaining >AMTTYPE</BalanceRemaining> ...
代码应如下所示:
if (InvoiceRet.BalanceRemaining != null) { double BalanceRemaining71 = (double)InvoiceRet.BalanceRemaining.GetValue(); }