Hi there,
I'm trying to merge 2 fields that I have from Magento 2.
My order json is like this:
{
"base_discount_amount": -50.00,
"extension_attributes": {
"base_aw_afptc_amount": -25.00,
}
}
So I tried to map like this:
{{add extension_attributes.base_aw_afptc_amount base_discount_amount}} -> Rate
But it's not being displayed as a discount in Netsuite.
But I can see in the preview it's like this:
"discountrate": "-75.00"
Do I need to map any other field or just the Rate should be fine?
Thanks