{{ order.date|date('d M Y') }}
| # | Dish | Quantity | Price (€) | Discount (€) | Tax (€) | Total (€) |
|---|---|---|---|---|---|---|
| {{ loop.index }} | {{ item.dish }} | {{ item.quantity }} | €{{ item.price|number_format(2, ',', '.') }} | {% if item.discountAmount and item.discountAmount > 0 %} €{{ item.discountAmount|number_format(2, ',', '.') }} ({{ item.discountPercent }}%) {% else %} - {% endif %} | {% if item.taxAmount and item.taxAmount > 0 %} €{{ item.taxAmount|number_format(2, ',', '.') }} ({{ item.taxPercent }}%) {% else %} - {% endif %} | €{{ item.total|number_format(2, ',', '.') }} |