Я использую соединитель Netsuite и в мастере импорта операций (запрос), я выбираю конкретный c тип объекта (т. Е. Инвентарь), а затем в полях я выбираю 3 указанных c поля (цвет , size, item),
однако при запуске коннектора он возвращает весь объект, а не только выбранные поля, хотя фильтры, кажется, применяются правильно.
Также, когда я проверяю отправленный запрос на Netsuite, запрос не содержит никакой информации о выбранных полях, только о фильтрах
следующий XML запрос:
<ns3:type operator="anyOf">
<platformCore:searchValue xmlns:platformCore="urn:core_2019_1.platform.webservices.netsuite.com">_inventoryItem</platformCore:searchValue>
</ns3:type>
<ns3:customFieldList>
<platformCore:customField xsi:type="platformCore:SearchBooleanCustomField" scriptId="custitem_ton_sent_to_traconf" xmlns:platformCore="urn:core_2019_1.platform.webservices.netsuite.com">
<platformCore:searchValue>False</platformCore:searchValue>
</platformCore:customField>
<platformCore:customField xsi:type="platformCore:SearchBooleanCustomField" scriptId="custitem_ton_ready_to_export" xmlns:platformCore="urn:core_2019_1.platform.webservices.netsuite.com">
<platformCore:searchValue>True</platformCore:searchValue>
</platformCore:customField>
</ns3:customFieldList>
</ns2:basic>