| {{ 'order.product-name' | translate }} | {{ 'order.product-sku' | translate }} | {{ 'order.unit-price' | translate }} | {{ 'order.quantity' | translate }} | {{ 'common.custom-fields' | translate }} | {{ 'order.total' | translate }} | |
|---|---|---|---|---|---|---|
|
|
{{ line.productVariant.name }} | {{ line.productVariant.sku }} |
{{ line.unitPriceWithTax | localeCurrency: order.currencyCode }}
{{ line.unitPrice | localeCurrency: order.currencyCode }}
|
|
|
{{ line.linePriceWithTax | localeCurrency: order.currencyCode }}
{{ line.linePrice | localeCurrency: order.currencyCode }}
|
|
|
{{ addedLine.productVariantName }} | {{ addedLine.sku }} |
{{ addedLine.priceWithTax | localeCurrency: order.currencyCode }}
{{ addedLine.price | localeCurrency: order.currencyCode }}
|
|
{{
(addedLine.priceWithTax * addedLine.quantity) / 100
| currency: order.currencyCode
}}
{{
(addedLine.price * addedLine.quantity) / 100
| currency: order.currencyCode
}}
|
|
| {{ surcharge.description }} | {{ surcharge.sku }} |
{{ surcharge.priceWithTax | localeCurrency: order.currencyCode }}
{{ surcharge.price | localeCurrency: order.currencyCode }}
|
||||
| {{ surcharge.description }} | {{ surcharge.sku }} |
{{ surchargePrice.price | localeCurrency: order.currencyCode }}
|
||||
| {{ 'order.shipping' | translate }} | {{ order.shippingLines[0]?.shippingMethod?.name }} |
{{ order.shippingWithTax | localeCurrency: order.currencyCode }}
{{ order.shipping | localeCurrency: order.currencyCode }}
|
||||