{% trans %}Delivered services in{% endtrans %} {{ invoice.date | format_date(null, 'LLLL y', null, 'gregorian', app.request.locale) }}:
|
{% trans %}Rewe market{% endtrans %} {{ market.number }} {{ market.city }}
|
|
{% for item in invoice.data.comments %}
{{ item|trans }},
{% endfor %}
{% if invoice.data.extraComments1 is not empty %}
{{ invoice.data.extraComments1 }},
{% endif %}
{% if invoice.data.extraComments2 is not empty %}
{{ invoice.data.extraComments2 }},
{% endif %}
{% trans %}on behalf of{% endtrans %} {{ invoice.data.client }}
|
|
{% if invoice.data.flatRate != 0 %}
{% trans %}Flat rate-short{% endtrans %} |
1.00 |
{{ invoice.data.flatRate | number_format }} € |
{{ invoice.data.flatRate | number_format }} € |
{% endif %}
{% if invoice.data.travelCostPerKm > 0 and invoice.data.mileageKm > 0 %}
{% trans %}Travel cost km{% endtrans %} |
{{ invoice.data.travelCostPerKm | number_format }} |
{{ invoice.data.mileageKm | number_format }} € |
{{ (invoice.data.travelCostPerKm * invoice.data.mileageKm) | number_format }} € |
{% endif %}
{% if invoice.data.surchargesReason is not empty %}
{% trans %}Surcharges{% endtrans %} {{ invoice.data.surchargesReason }} |
{{ invoice.data.percent }} % |
{{ invoice.data.flatRate | number_format }} € |
{{ (invoice.data.flatRate * invoice.data.percent / 100) | number_format }} € |
{% endif %}
|
{% trans %}Net amount sum{% endtrans %} |
|
{{ data.totalNet | number_format }} € |
{% trans %}VAT amount{% endtrans %} {{ (data.tax*100)|round }}% |
|
{{ data.totalTax | number_format }} € |
|
|
{% trans %}Invoice amount{% endtrans %} |
|
{{ data.totalGross | number_format }} € |
{% endblock %}