{{ myinvoice.header.name }} |
{{ myinvoice.header.address }} |
{{ myinvoice.header.city }} |
{{ _('Phone')}}: | {{ myinvoice.header.phone }} |
{{ _('Email')}}: | {{ myinvoice.header.email }} |
{{ _('NIF')}}: | {{ myinvoice.header.cif }} |
|
{{ _('Payment can be done by transfer to the following bank account:') }}
{{ myinvoice.header.more|safe }} |
|
|
|
|
{{ _('Customer')}}: | {{ myinvoice.customer.name }} |
{% if myinvoice.customer.cif %}{{ _('CIF/NIF')}}: | {{ myinvoice.customer.cif }} | {% endif %}
{{ _('Address')}}: | {{ myinvoice.customer.address }} |
|
{{ _('Invoice number')}}: | {{ myinvoice.invoice_number }} |
{{ _('Date')}}: | {{ myinvoice.date|date:"d/m/Y" }} |
|
|
|
|
{{ _('REF') }} |
{{ _('CONCEPT') }} |
{{ _('QUANTITY') }} |
{{ _('UNIT PRICE') }} |
{{ _('AMOUNT') }} |
{% for l in myinvoice.line.all %}
{{ l.reference }} |
{{ l.concept }} |
{{ l.quantity }} {{ l.unit }} |
{{ l.unit_price|floatformat:2 }} {{ myinvoice.currency }} |
{{ l.amount|floatformat:2 }} {{ myinvoice.currency }} |
{% endfor %}
{{ _('Subtotal') }} | {{ myinvoice.subtotal|floatformat:2 }} {{ myinvoice.currency }} |
{{ _('Taxes') }} ({{ myinvoice.taxes }}) | {{ myinvoice.subtotal_iva|floatformat:2 }} {{ myinvoice.currency }} |
{% if myinvoice.retentions.value != '0.00' %}{{ _('Retentions') }} ({{ myinvoice.retentions }}) | {{ myinvoice.subtotal_retentions|floatformat:2 }} {{ myinvoice.currency }} | {% endif %}
{{ _('Total') }} | {{ myinvoice.total|floatformat:2 }} {{ myinvoice.currency }} |
|