【问题标题】:How can you retrieve a customer's payment methods in Acumatica?如何在 Acumatica 中检索客户的付款方式?
【发布时间】: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


    【解决方案1】:

    尝试使用下一种方法并删除过滤器

            new Command[]
            {
    

    新值 {Value = "Test", LinkedCommand = AR301000.PaymentMethodSelection.Customer }, AR301000.PaymentMethodSelection.ServiceCommands.EveryPaymentMethodID, AR301000.PaymentMethodSelection.PaymentMethod, AR301000.PaymentMethodSelection.CardAccountNo },空

    【讨论】:

      猜你喜欢
      • 2019-11-22
      • 1970-01-01
      • 2014-12-28
      • 2021-08-13
      • 1970-01-01
      • 2018-01-06
      • 1970-01-01
      • 1970-01-01
      • 2019-11-11
      相关资源
      最近更新 更多