Subtotal: { renderCurrency(data.get('order.currency'), data.get('order.subtotal')) } { data.get('order.currency').toUpperCase() }
Shipping:
{ renderCurrency(data.get('order.currency'), data.get('order.shipping')) } { data.get('order.currency').toUpperCase() }
Tax ({ data.get('order.taxRate') * 100 }%):
{ renderCurrency(data.get('order.currency'), data.get('order.tax')) } { data.get('order.currency').toUpperCase() }
Total:
{ renderCurrency(data.get('order.currency'), data.get('order.total')) } { data.get('order.currency').toUpperCase() }