{% load static i18n %} Sale Order {% if LANGUAGE_CODE == 'en' %} {% else %} {% endif %} {% if estimate.is_completed %}

Page Missing!

ERROR FETCHING DATA

{% else%}

{% trans "Sale Order" %}

{% trans "Thank you for choosing us. We appreciate your business" %}

{{ _("Estimate Number") }} : #{{estimate.estimate_number}}

{{ _("Date") }} : {{estimate.date_in_review}}

{{ _("Customer") }} : {{estimate.customer.customer_name}}

{{ _("Email") }} : {{estimate.customer.email}}

{{ _("Terms") }} : {{estimate.terms|title}}

{% for car in data.cars %} {% endfor %}
{{ _("VIN") }} {{ _("Make") }} {{ _("Model") }} {{ _("Year") }} {{ _("Quantity") }} {{ _("Unit Price") }} {{ _("Total") }}
{{ car.vin }} {{ car.make }} {{ car.model }} {{ car.year }} {{ car.quantity }} {{ car.unit_price }} {{ car.total }}

{{ _("VAT") }} ({{vat}}%): {{data.vat}} {{ CURRENCY }}

{{ _("Additional Services") }} :
{% for service in data.additional_services %} {{service.name}} - {{service.price}} {{ CURRENCY }}
{% endfor %}

{{ _("Total Amount") }} : {{data.grand_total}} {{ CURRENCY }}

{% endif %}