{% if insuranceRates is not empty %}
{% for insuranceRate in insuranceRates %}
{{ insuranceRate.description }}
{% if insuranceRate.contribution != null %}
{{ "\n"|nl2br }}
({{ translations['ORMLF']['RESBEST']['contribution'] }}: {{ insuranceRate.contribution }}€)
{% endif %}
|
|
{% if isNissanPartner %}
{{ insuranceRate.longPrice|number_format(2, ',', '.') }} €
{% else %}
{{ insuranceRate.totalLongPrice|number_format(2, ',', '.') }} €
{% endif %}
|
{% endfor %}
|
{% endif %}
{% if subRates is not empty %}
{% for subRate in subRates %}
{{ subRate.amount }}x {{ subRate.description }}
|
|
{% if isNissanPartner %}
{{ subRate.longPrice|number_format(2, ',', '.') }} €
{% else %}
{{ subRate.totalLongPrice|number_format(2, ',', '.') }} €
{% endif %}
|
{% endfor %}
|
{% endif %}
{% if deliveryPickupRates is not empty %}
{% for deliveryPickupRate in deliveryPickupRates %}
{{ deliveryPickupRate.description }}
|
|
{{ deliveryPickupRate.totalLongPrice|number_format(2,
',', '.') }} € |
{% endfor %}
|
{% endif %}
{% if voucherRates is not empty %}
{% for voucherRate in voucherRates %}
{{ voucherRate.description }}
|
|
{{ voucherRate.totalLongPrice|number_format(2,
',', '.') }} € |
{% endfor %}
|
{% endif %}