{{ serviceList.reference }}
|
{{ serviceList.name }}
{% if serviceList.serviceArticleSellingList|length > 0 %}
{% for serviceFlatRateSelling in serviceList.serviceArticleSellingList %}
{{ serviceFlatRateSelling.serviceArticleName }}
{% endfor %}
{% endif %}
|
{{ serviceList.quantity }}
|
{{ serviceList.sellUnitPriceWithoutTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
|
{{ serviceList.sellPriceWithoutTaxWithoutDiscount|number_format(2, ',', ' ') }} {{ currencySymbol }}
|
{% if isDiscount %}
- {{ serviceList.priceDiscount|number_format(2, ',', ' ') }} {{ currencySymbol }}
|
{{ serviceList.sellPriceWithoutTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
|
{% endif %}
{{ serviceList.sellTaxName|trans({}, 'DocumentTrans') ~ afterTaxname }}
|
{{ serviceList.sellPriceWithTax|number_format(2, ',', ' ') }} {{ currencySymbol }}
|
{% endfor %}
{% endif %}
{{ 'administrative.total.title'|trans({}, 'DocumentTrans') }}
|
{{ sellingData.totalSellPriceWithoutTaxWithoutDiscount|replace(',', '.')|number_format(2, ',', ' ') ~ ' ' ~ currencySymbol}}
|
{% if sellingData.prices.priceDiscount %}
- {{ sellingData.prices.priceDiscount|number_format(2, ',', ' ') ~ ' ' ~ currencySymbol}}
|
{{ sellingData.sellPriceWithoutTax|replace(',', '.')|number_format(2, ',', ' ') ~ ' ' ~ currencySymbol}}
|
{% endif %}
{{ sellingTaxData.totalTax|number_format(2, ',', ' ') ~ ' ' ~ currencySymbol}}
|
{{ sellingData.sellPriceWithTax|replace(',', '.')|number_format(2, ',', ' ') ~ ' ' ~ currencySymbol}}
|