{% extends 'private/base/base.html.twig' %} {% block body %}
{% block topBar %} {% embed 'components/topBar.html.twig' %}{% endembed %} {% endblock %} {% block menu %} {% embed 'components/menu.html.twig' %}{% endembed %} {% endblock %}
{% embed 'components/pageTitle.html.twig' %}{% endembed %}

{{ 'estimate.title' | trans }}

Hello, {{ estimate.client.name }}

{{ 'estimate.message' | trans }}

{{ 'estimate.date' | trans }} : {% if estimate.getSent == null %} {{ "now"|date("d-m-Y") }} {% else %} {{ estimate.getSent|date("d-m-Y") }} {% endif %}

{{ 'estimate.expiration.date' | trans }} : {% if estimate.getSent == null %} {{ "now"|date_modify("+15 day")|date("d-m-Y") }} {% else %} {{ estimate.getSent|date_modify("+15 day")|date("d-m-Y") }} {% endif %}

{% if estimate.accepted == true %}

{{ 'estimate.status' | trans }} : {{ 'estimate.accepted' | trans }}

{% elseif estimate.sent == true %}

{{ 'estimate.status' | trans }} : {{ 'estimate.sent' | trans }}

{% endif %}

{{ 'estimate.title' | trans }} : #{{ estimate.estimateReference }}

{{ 'estimate.from' | trans }} {{ estimate.company.name }}
{{ estimate.company.addressNumber }} {{ estimate.company.addressStreet }} {{ estimate.company.addressNumberBt }}
{{ estimate.company.addressPcode }} {{ estimate.company.addressCity }}
{{ estimate.company.addressCountry }}
{{ 'estimate.vat' | trans }}:{{ estimate.company.vat }}
{{ 'estimate.bill.to' | trans }} {{ estimate.client.name }}
{{ estimate.client.addressNumber }} {{ estimate.client.addressStreet }} {{ estimate.client.addressNumberBt }}
{{ estimate.client.addressPcode }} {{ estimate.client.addressCity }}
{{ estimate.client.addressCountry }}
{{ estimate.client.vat }}
{% for ts in estimate.timeSheets %} {% endfor %}
{{ 'invoice.date' | trans }} {{ 'invoice.project' | trans }} {{ 'invoice.rem' | trans }} {{ 'invoice.unit' | trans }} {{ 'invoice.rate' | trans }} {{ 'invoice.mileage' | trans }} {{ 'invoice.total' | trans }}
{{ ts.getCdtsStr|date("d-m") }} {{ ts.project.label }}
{{ ts.project.Description }}
{% if ts.remClient is not null and ts.remClient is not empty %} | {{ ts.remClient }} {% endif %} {{ ts.performance }} {{ ts.project.rate }} {% if ts.mileage is not null and ts.mileage is not empty %} {{ ts.project.MileageRate }} X {{ ts.mileage }} {% endif %} {{ ts.getTotal }}

{{ 'invoice.subtotal' | trans }} {{ estimate.getGrandTotal }}

{{ 'invoice.tax' | trans }} {{ estimate.getTax }}

€ {{ estimate.getGrandTotalWithTax }} EUR

: 0032 472761283
: info@wefeatit.com
: https://www.wefeatit.com
{{ 'estimate.bank' | trans }}: BE08 0689 3438 0213 - GKCCBEBB
{{ 'estimate.vat' | trans }}: BE 0728750013
{{ 'estimate.tnc' | trans }}: wefeatit.com/conditions.pdf
{% embed 'components/footer.html.twig' %}{% endembed %}
{% embed 'components/sideBar.html.twig' %}{% endembed %} {% endblock %}