fix tax note syntax in Twig template
This commit is contained in:
parent
99810c9cba
commit
28d7e692a2
@ -14,7 +14,7 @@ Layouts können mit inline CSS-Styles definiert werden. Die Einbindung externer
|
|||||||
|
|
||||||
Beachten Sie bitte, dass auch nur ein CSS-Subset unterstützt wird. Mit etwas CSS-Kreativität sollten sich die üblichen Formatierungen dennoch deutlich einfacher umsetzen lassen, als dies direkt in PHP-Programmierung möglich wäre.
|
Beachten Sie bitte, dass auch nur ein CSS-Subset unterstützt wird. Mit etwas CSS-Kreativität sollten sich die üblichen Formatierungen dennoch deutlich einfacher umsetzen lassen, als dies direkt in PHP-Programmierung möglich wäre.
|
||||||
|
|
||||||
## Twig
|
## Templates
|
||||||
|
|
||||||
Innerhalb der Templates steht Ihnen die komplette Twig- bzw. Smarty-Funktionalität zur Verfügung.
|
Innerhalb der Templates steht Ihnen die komplette Twig- bzw. Smarty-Funktionalität zur Verfügung.
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
<tr class="producttax">
|
<tr class="producttax">
|
||||||
<td class="indent"></td>
|
<td class="indent"></td>
|
||||||
<td class="description">
|
<td class="description">
|
||||||
{{ translate({ ident: "D3_PDFDOCUMENTS_TAX", args: VatKey, suffix: "COLON" }) }}
|
{{ translate({ ident: "D3_PDFDOCUMENTS_TAX", suffix: "COLON" }) | format( VatKey ) }}
|
||||||
</td>
|
</td>
|
||||||
<td class="values">
|
<td class="values">
|
||||||
{{ lang.formatCurrency(oVat, currency) }} {{ currency.name }}
|
{{ lang.formatCurrency(oVat, currency) }} {{ currency.name }}
|
||||||
@ -104,7 +104,7 @@
|
|||||||
<td class="indent"></td>
|
<td class="indent"></td>
|
||||||
<td class="description">
|
<td class="description">
|
||||||
{% if config.getConfigParam('sAdditionalServVATCalcMethod') != 'proportional' %}
|
{% if config.getConfigParam('sAdditionalServVATCalcMethod') != 'proportional' %}
|
||||||
{{ translate({ ident: "D3_PDFDOCUMENTS_TAX", args: order.getFieldData('oxdelvat'), suffix: "COLON" }) }}
|
{{ translate({ ident: "D3_PDFDOCUMENTS_TAX", suffix: "COLON" }) | format( order.getFieldData('oxdelvat') ) }}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ translate({ ident: "D3_PDFDOCUMENTS_PROPORTIONAL_TAX", suffix: "COLON" }) }}
|
{{ translate({ ident: "D3_PDFDOCUMENTS_PROPORTIONAL_TAX", suffix: "COLON" }) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@ -142,7 +142,7 @@
|
|||||||
<td class="indent"></td>
|
<td class="indent"></td>
|
||||||
<td class="description">
|
<td class="description">
|
||||||
{% if config.getConfigParam('sAdditionalServVATCalcMethod') != 'proportional' %}
|
{% if config.getConfigParam('sAdditionalServVATCalcMethod') != 'proportional' %}
|
||||||
{{ translate({ ident: "D3_PDFDOCUMENTS_TAX", args: order.getFieldData('oxpayvat'), suffix: "COLON" }) }}
|
{{ translate({ ident: "D3_PDFDOCUMENTS_TAX", suffix: "COLON" }) | format( order.getFieldData('oxpayvat') ) }}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ translate({ ident: "D3_PDFDOCUMENTS_PROPORTIONAL_TAX", suffix: "COLON" }) }}
|
{{ translate({ ident: "D3_PDFDOCUMENTS_PROPORTIONAL_TAX", suffix: "COLON" }) }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user