我approveVariance
在VendInvoiceInfoTable
.
这是处理程序的代码:
public static void postApprovingPendingInvoice(XppPrePostArgs _args)
{
VendInvoiceInfoTable vendInvoiceInfoTable;
vendInvoiceInfoTable = _args.getThis();
info(vendInvoiceInfoTable.PurchId + " from handler");
}
如果我自己选中并取消选中该复选框,那就太好了。我说的是在带有标签的 VendInvoiceMatchingDetails 表单上找到的复选框:
Approve posting with matching discrepancies.
approveVariance
从批处理调用时会出现问题。处理程序不再到达。
这是正确的行为吗?有什么有效的方法吗?
我想我可以在 util 类中创建一个静态方法,并在每次调用它时调用它approveVariance
并发送一个特定的参数。我只是尝试遵循最佳实践。