{% set fallback = app.request is not null ? app.request.locale : 'en' %} {% set language = model.template.language|default(fallback) %} {% set isDecimal = model.template.decimalDuration|default(false) %} {% set currency = model.currency %}
{{ 'invoice.to'|trans }}
{{ model.customer.company|default(model.customer.name) }} {{ model.customer.address|nl2br }} {% if model.customer.vatId is not empty %} {{ 'label.vat_id'|trans }}: {{ model.customer.vatId }} {% endif %} |
{{ 'invoice.from'|trans }}
{{ model.template.company }} {{ model.template.address|trim|nl2br }} {% if model.template.vatId is not empty %} {{ 'label.vat_id'|trans }}: {{ model.template.vatId }} {% endif %} |
{{ 'invoice.number'|trans }}:
{{ model.invoiceNumber }}
{{ 'invoice.due_days'|trans }}:
{{ model.dueDate|date_short }}
{% if model.customer.number is not empty %}
{{ 'label.number'|trans }}:
{{ model.customer.number }}
{% endif %}
{% if model.query.project is not empty and model.query.project.orderNumber is not empty %}
{{ 'label.orderNumber'|trans }}:
{{ model.query.project.orderNumber }}
{% endif %}
{{ 'label.date'|trans }} | {{ 'label.description'|trans }} | {{ 'label.unit_price'|trans }} | {{ 'label.amount'|trans }} | {{ 'label.total_rate'|trans }} |
---|---|---|---|---|
{{ entry.begin|date_short }} | {% if entry.description is not empty %} {{ entry.description|nl2br }} {% else %} {% if entry.activity is not null %}{{ entry.activity.name }} / {% endif %}{{ entry.project.name }} {% endif %} | {{ rate|money(currency) }} | {{ duration }} | {{ entry.rate|money(currency) }} |
{{ 'invoice.subtotal'|trans }} | {{ model.calculator.subtotal|money(currency) }} | |||
{{ 'invoice.tax'|trans }} ({{ model.calculator.vat }}%) | {{ model.calculator.tax|money(currency) }} | |||
{{ 'invoice.total'|trans }} | {{ model.calculator.total|money(currency) }} |