{{ 'Faktura' | trans | upper }} {{ (channel is null or channel.isSwitchOrderNrOrderCountNr() == false) ? invoice.invoiceNr : invoice.invoiceCountNr }}{{ 'Datum' | trans }} {{ invoice.dateInvoice | date('Y m d') }} |
{% if logo is not empty %}
|
|
|
| {{ 'Ordernr' | trans }} | {{ 'Datum' | trans }} | {{ 'Total ex moms inkl frakt' | trans }} | {{ 'Frakt ex moms' | trans }} | {{ 'Total summa ink moms' | trans }} |
|---|---|---|---|---|
| {{ order.orderNr }} | {{ order.dateOrder | date('Y-m-d') }} | {{ order.totalSum | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | {{ order.shippingFee | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | {{ order.totalSumInclTax | number_format(2, '.', ' ') }} {{ 'kr' | trans }} |
| {{ 'Kundens momsregsnr' | trans }} | {{ invoice.customerVATNr | raw }} | {{ 'Moms' | trans }} | {{ invoice.totalTax | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | |
|---|---|---|---|---|
| {{ 'Subtotal ex moms' | trans }} | {{ totalSubTotal | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | {{ 'öresutjämning' | trans | capitalize }} | {{ (newTotal - total) | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | |
| {{ 'Frakt ex moms' | trans }} | {{ invoiceShippingFeeExclTax | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | {{ 'Total' | trans }} | {{ newTotal | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | |
| {{ 'Avdragen rabatt, ex moms' | trans }} | {{ totalDiscountExclTax | number_format(2, '.', ' ') }} {{ 'kr' | trans }} |
Order {{ order.orderNr }} |
{% if order.comment is not empty %}
{{ 'Comment' | trans }}: {{ order.comment }} {% endif %} |
| {{ 'Produkt' | trans }} | {{ 'Storlek' | trans }} | {{ 'Antal' | trans }} | {{ 'Pris ex moms' | trans }} |
|---|---|---|---|
|
{{ item.productName }}
{{ item.productSku }} {% if item.texts is not empty %} {% for text in item.texts %} - {{ text | raw }} {% endfor %} {% endif %} {% if item.addOnText is not empty %} - {{ item.addOnText | raw }} {% endif %} |
{{ item.productSizeText == 'Default Title' ? '-' : item.productSizeText }} | {{ item.quantity }} | {{ item.price | number_format(2, '.', ' ') }} {{ 'kr' | trans }} |
| {{ 'Subtotal ex moms' | trans }} | {{ subTotal | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | {{ 'Moms' | trans }} | {{ orderTotalTax | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | |
|---|---|---|---|---|
| {{ 'Frakt ex moms' | trans }} | {{ order.shippingFee | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | {{ 'öresutjämning' | trans | capitalize }} | {{ (newTotal - total) | number_format(2, '.', ' ') }} {{ 'kr' | trans }} | |
| {{ 'Total' | trans }} | {{ newTotal | number_format(2, '.', ' ') }} {{ 'kr' | trans }} |