【发布时间】:2014-11-25 19:44:34
【问题描述】:
我在 Acumatica 中检索客户的付款方式时遇到问题。我的代码如下所示。
AR303010Content AR301000 = context.AR303010GetSchema();
context.AR303010Clear();
string[][] AR301000data = context.AR303010Export
(
new Command[]
{
AR301000.PaymentMethodSelection.ServiceCommands.EveryCustomer,
AR301000.PaymentMethodSelection.Customer,
AR301000.PaymentMethodSelection.PaymentMethod,
AR301000.PaymentMethodSelection.CardAccountNo
},
new Filter[]
{
new Filter
{
Field = AR301000.PaymentMethodSelection.Customer,
Condition = FilterCondition.Equals,
Value = "TEST"
}
},
0, false, false
);
服务超时,不返回任何记录。
【问题讨论】:
标签: acumatica