[ Order List Detail ]

Order number
Date
Total
Status
{{order.ordernumber}}
{{order.date | date:'short'}}
$ {{order.total}}
{{order.status}}

Shipping address

{{order.street}} {{order.city}} {{order.country}}
{{item.productname}}
$ {{item.unitprice | number:'.2-2'}}
{{item.units}}
${{(item.units * item.unitprice) | number:'.2-2'}}
Subtotal
${{order.subtotal | number:'.2-2'}}
{{order.coupon}}
- ${{order.discount | number:'.2-2'}}
-->
Total
${{ (order.discount ? ((order.total - order.discount) < 0 ? 0 : (order.total - order.discount)) : order.total) | number:'.2-2'}}