{{"LABEL_ORDER_HISTORY" | translate}} @if (!emptyState) {
@for (order of orders; track order) {
{{"LABEL_ORDER_ID" | translate}}
#{{ order.orderId }}
{{"LABEL_TOTAL_PRICE" | translate}}
{{ order.totalPrice.toFixed(2) }}¤
{{"LABEL_BONUS" | translate}}
{{ order.bonus }}
@if (!order.delivered) {
{{"LABEL_IN_TRANSIT" | translate}}
} @if (order.delivered) {
{{"LABEL_DELIVERED" | translate}}
}
{{"LABEL_PRODUCT" | translate}} {{element.name}} {{"LABEL_PRICE" | translate}} {{element.price}}¤ {{"LABEL_QUANTITY" | translate}} {{element.quantity}} {{"LABEL_TOTAL_PRICE" | translate}} {{ (element.total).toFixed(2) }}¤
}
} @else {
No results found {{"NO_SEARCH_RESULT" | translate}} {{"NO_ORDERS_PLACED" | translate}}
}