{{"OrderNumber" | translate }}
{{orderDetails.number}}
{{"Date" | translate}}
{{orderDetails.date_created | date:'medium'}}
{{"PaymentMethod" | translate}}
{{orderDetails.payment_method_title}}
{{"BillingAddress" | translate}}
{{orderDetails.billing.first_name}}
{{orderDetails.billing.last_name}},
{{orderDetails.billing.email}}
{{orderDetails.billing.phone}}
{{orderDetails.billing.address_1}},
{{orderDetails.billing.address_2}},
{{orderDetails.billing.city}},
{{orderDetails.billing.state}}
{{orderDetails.billing.postcode}}
{{"ShippingAddress" | translate}}
{{orderDetails.shipping.first_name}}
{{orderDetails.shipping.last_name}},
{{orderDetails.shipping.company}}
{{orderDetails.shipping.address_1}},
{{orderDetails.shipping.address_2}},
{{orderDetails.shipping.city}},
{{orderDetails.shipping.state}}
{{orderDetails.shipping.country}}
{{orderDetails.shipping.postcode}}
{{"ProductDetails" | translate}}
{{"ProductName" | translate}} : {{item.name}}
{{"Price" | translate}} : {{item.price}}
{{"Quantity" | translate}} : {{item.quantity}}
{{"SubTotal" | translate}} : {{1*item.subtotal}}
{{"Totals" | translate}}
{{"SubTotal" | translate}}
{{(1*orderDetails.total - 1*orderDetails.shipping_total - 1*orderDetails.total_tax) | currency:values.currency:symbol:'1.2-2'}}
{{"ShippingTotal" | translate}}
{{1*orderDetails.shipping_total | currency:values.currency:symbol:'1.2-2'}}
{{"TaxTotal" | translate}}
{{1*orderDetails.total_tax | currency:values.currency:symbol:'1.2-2'}}
{{"GrandTotal" | translate}}
{{1*orderDetails.total | currency:values.currency:symbol:'1.2-2'}}