【发布时间】:2016-08-22 20:56:18
【问题描述】:
我的 BLC 中有以下代码:
PXResultset<ARInvoice> previous = PXSelect<ARInvoice,
Where<ARInvoice.projectID, Equal<Required<Contract.contractID>>,
And<ARInvoice.createdDateTime, Less<Required<ARInvoice.createdDateTime>>,
And<ARInvoice.customerID, Equal<Required<Contract.customerID>>>>>, OrderBy<Desc<ARInvoice.createdDateTime>>>.Select(this, contract.ContractID, invoice.CreatedDateTime, contract.CustomerID);
我已将其扩展为具有附加列:“isInterestPenalty”。
我想查询它,使它只选择所有非interestPenalty。 比如:
...And<ARInvoice.isInterestPenalty<Equal<Argument<bool>>>>>
.Select(..., false)
我不知道如何或似乎无法在 Acumatica T300 中找到或如何在 Acumatica API 框架中搜索。
【问题讨论】:
标签: acumatica