{% extends 'invoice/layout.html.twig' %} {% block invoice %}
{{ '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 %}
{% set customerPhone = model.customer.phone|default(model.customer.mobile) %} {{ '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 %} {% 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 %}

{{ 'invoice.number'|trans }}: {{ model.numberGenerator.invoiceNumber }}
{{ 'invoice.due_days'|trans }}: {{ model.dueDate|date_short }}

{% for entry in model.calculator.entries %} {% set duration = entry.duration|duration_decimal %} {% if entry.fixedRate %} {% set rate = entry.fixedRate %} {% set duration = entry.amount|amount %} {% else %} {% set rate = entry.hourlyRate %} {% endif %} {% endfor %}
{{ '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(model.calculator.currency) }} {{ duration }} {{ entry.rate|money(model.calculator.currency) }}
{{ 'invoice.subtotal'|trans }} {{ model.calculator.subtotal|money(model.calculator.currency) }}
{{ 'invoice.tax'|trans }} ({{ model.calculator.vat }}%) {{ model.calculator.tax|money(model.calculator.currency) }}
{{ 'invoice.total'|trans }} {{ model.calculator.total|money(model.calculator.currency) }}
{% if model.template.paymentTerms is not empty %}
{{ model.template.paymentTerms|nl2br|md2html }}
{% endif %}
{% endblock %}