TransactionSearch与身体字段条件Suitetalk

时间:2015-11-19 04:58:06

标签: c# netsuite

这是我的情况,我想在供应商账单ID列表中提取具有ApplyList.apply.doc(这是供应商账单ID)的供应商信用。

我必须创建TransactionSearch,但我不知道如何为此应用条件。

目前,我只知道使用状态,类型创建搜索,但这还不够。

这是我的代码:

var transactionsSearch = new TransactionSearch
{
    basic = new TransactionSearchBasic
    {                    
        //we only want credits with an "Open" status
        billingStatus = new SearchBooleanField
        {
            searchValue = isOpen,
            searchValueSpecified = true
        },
        //only search for those with a type of "_vendorCredit"
        type = new SearchEnumMultiSelectField
        {
            @operator = SearchEnumMultiSelectFieldOperator.anyOf,
            operatorSpecified = true,
            searchValue = new[] { "_vendorCredit" }
        },

    }
};

1 个答案:

答案 0 :(得分:1)

我想出了答案。

我必须在TransactionSearchBasic中使用属性Applied To Transaction,这将是Record Ref的数组。