Order Date: {{ getFormattedDateTime(order.created_at) }}
Order Status: Paid
# | {{ $t('item') }} | {{ $t('quantity') }} | {{ $t('item_cost') }} | {{ $t('total') }} |
---|---|---|---|---|
{{ parseInt(index) + 1 }} |
{{ item.product.name }} {{ item.product.unit_title }} - {{ item.product_option.option_value }} |
{{ item.quantity }} | {{ getFormattedCurrency(item.product_option.calculated_price) }} | {{ getFormattedCurrency(item.product_option.calculated_price * item.quantity) }} |
- {{ $t('addon') }} | {{ addon.addon.name }} | {{ addon.quantity }} | {{ getFormattedCurrency(addon.price) }} | {{ getFormattedCurrency(addon.price * addon.quantity) }} |
{{ $t('sub_total') }}: {{ getFormattedCurrency(order.order_amount) }}
{{ $t('delivery_charge') }}: {{ getFormattedCurrency(order.delivery_charge) }}
{{ $t('coupon_discount') }}: - {{ getFormattedCurrency(order.coupon_discount) }}
{{ $t('extra_charges') }}: {{ getFormattedCurrency(get_total_charges) }}
{{ $t('total') }}: {{ getFormattedCurrency(order.total) }}