Template: Template_1: name: Invoice Template slug: invoice-template models: Invoice template: | Invoice {% if settings.company_logo %} {% endif %}

Invoice #{{invoice}}

Client info

{{invoice.customer_name}} {{invoice.customer_identification}}
{{invoice.contact_person}} {{invoice.customer_email}}
{{invoice.invoicing_address|format}} {{invoice.shipping_address|format}}

Payment details

{# show discounts only if there is some discount #} {% if invoice.discount_amount %} {% endif %} {% for item in invoice.Items %} {% if invoice.discount_amount %} {% endif %} {% endfor %} {% if invoice.discount_amount %} {% endif %}
Description Unit Cost Qty TaxesDiscountPrice
{{item.description}} {{item.unitary_cost|currency}} {{item.quantity}} {% for tax in item.Taxes %} {{tax.name}} {% endfor %} {{item.discount_amount|currency}}{{item.gross_amount|currency}}
Base {{invoice.base_amount|currency}}
Discount {{invoice.discount_amount|currency}}
Subtotal {{invoice.net_amount|currency}}
Taxes {{invoice.tax_amount|currency}}
Total {{invoice.gross_amount|currency}}

Terms & conditions

{{invoice.terms|format}}
Template_2: name: Template with product slug: template-with-product models: Invoice template: | Invoice {% if settings.company_logo %} {% endif %}

Invoice #{{invoice.number}}

Client info

{{invoice.customer_name}} {{invoice.customer_identification}}
{{invoice.contact_person}} {{invoice.customer_email}}
{{invoice.invoicing_address|format}} {{invoice.shipping_address|format}}

Payment details

{# show discounts only if there is some discount #} {% if invoice.discount_amount %} {% endif %} {% for item in invoice.Items %} {% if invoice.discount_amount %} {% endif %} {% endfor %} {% if invoice.discount_amount %} {% endif %}
Reference Description Unit Cost Qty TVADiscountPrice
{{item.product_id|product_reference}} {{item.description}} {{item.unitary_cost|currency}} {{item.quantity}} {% for tax in item.Taxes %} {{tax.name}} {% endfor %} {{item.discount|currency}}{{item.gross|currency}}
Base {{invoice.base_amount|currency}}
Discount {{invoice.discount_amount|currency}}
Subtotal {{invoice.net_amount|currency}}
Taxes {{invoice.tax_amount|currency}}
Total {{invoice.gross_amount|currency}}

Terms & conditions

{{invoice.terms|format}}
Template_3: name: Estimate Template slug: estimate-template models: Estimate template: | Estimate {% if settings.company_logo %} {% endif %}

Estimate #{{estimate}}

Client info

{{estimate.customer_name}} {{estimate.customer_identification}}
{{estimate.contact_person}} {{estimate.customer_email}}
{{estimate.invoicing_address|format}} {{estimate.shipping_address|format}}

Payment details

{# show discounts only if there is some discount #} {% if estimate.discount_amount %} {% endif %} {% for item in estimate.Items %} {% if estimate.discount_amount %} {% endif %} {% endfor %} {% if estimate.discount_amount %} {% endif %}
Description Unit Cost Qty TaxesDiscountPrice
{{item.description}} {{item.unitary_cost|currency}} {{item.quantity}} {% for tax in item.Taxes %} {{tax.name}} {% endfor %} {{item.discount_amount|currency}}{{item.gross_amount|currency}}
Base {{estimate.base_amount|currency}}
Discount {{estimate.discount_amount|currency}}
Subtotal {{estimate.net_amount|currency}}
Taxes {{estimate.tax_amount|currency}}
Total {{estimate.gross_amount|currency}}

Terms & conditions

{{estimate.terms|format}}