Question: Can the Shopify-NetSuite Integration App determine if a customer is a Company or an Individual?
Answer:
Yes, it can. First, we need to know what the qualifier is for determining if the customer is a Company or an Individual. Typically, this is if the Company field is populated.
Within the Customer Import Flow, add a Multifield setting for the NetSuite Individual field (as below):
The IF/THEN statement will be:
{{#if $.addresses[*].company}}false{{ else}}true{{/if}}
This IF/THEN states, if Company exists then mark Individual as FALSE (company) and if the company does not exist then Individual as TRUE.
Additionally, you will need to add the Company -> Company Name in the mapping.
Comments
Please sign in to leave a comment.