{{ price.description }} |
{% if price.allPeriods %}
{{ 'price.abbreviation.alldays'|trans }}
{% else %}
{% for pricePeriod in price.pricePeriods %}
{{ pricePeriod.start|date('d.m.Y') }} - {{ pricePeriod.end|date('d.m.Y') }}
{% endfor %}
{% endif %}
|
{% if price.alldays %}
{{ 'price.abbreviation.alldays'|trans }}
{% else %}
{% if price.monday == true %}{{ 'price.abbreviation.monday'|trans }}{% endif %}
{% if price.tuesday == true %}{{ 'price.abbreviation.tuesday'|trans }}{% endif %}
{% if price.wednesday == true %}{{ 'price.abbreviation.wednesday'|trans }}{% endif %}
{% if price.thursday == true %}{{ 'price.abbreviation.thursday'|trans }}{% endif %}
{% if price.friday == true %}{{ 'price.abbreviation.friday'|trans }}{% endif %}
{% if price.saturday == true %}{{ 'price.abbreviation.saturday'|trans }}{% endif %}
{% if price.sunday == true %}{{ 'price.abbreviation.sunday'|trans }}{% endif %}
{% endif %}
|
{{ price.price|number_format(2, ',', '.') }} |
{% if is_decimal_place_0(price.vat) %}
{{ price.vat|number_format(0, ',', '.') }}
{% else %}
{{ price.vat|number_format(2, ',', '.') }}
{% endif %}
|
{% if price.type == 1 %}
{{ 'price.miscellaneous'|trans }}
{% elseif price.type == 2 %}
{{ 'price.appartment'|trans }}
{% endif %}
|
{% if price.active == true %}{{ 'price.active'|trans }} {% else %} {{ 'price.inactive'|trans }}{% endif %} |
|