Skip to main content

Hello, 

Is it possible to create an entity mapping for the Shopify store connector to create orders with different order types depending on certain criteria as it comes over from Shopify? 

I have the Shopify store set up with a default order type (WB), and then we also use the POS side. This has two order types for in store and ship to customer orders already set up. 

 

However, we are starting to use other sales channels in our Shopify store and we don’t want all those orders from Shopify admin, online store, and other channels to ALL come through with the same order type. I’ve tried creating several different entity mappings to follow some logic with NO luck. 

 

 

 

Any advice would be greatly appreciated!

Thanks!

I dont believe this is possible without a customisation 


=Switch(    ÂOrderData.SourceName] = 'web', 'WB',    InStr(SOrderData.Tags], 'FO') > 0, 'FO',     OrderData.SourceName] = 'shopify_draft_order', 'MO',    'OrderData.SourceName] = '3094345', 'CP',    True, 'FI')

 

This set for the Order Type target field on the Sales order entity works for all except the FO orders, which are our ship from store orders at the POS. 


Reply