This commit is contained in:
2025-09-20 19:57:05 +02:00
parent ad10a2ef16
commit cc68501826
3 changed files with 21 additions and 3 deletions

View File

@@ -34,7 +34,7 @@
{% block body %}
<div class="d-flex">
<center><img src="{{ asset(bill.company.logo)}}" class="logo mb-3"></center>
<h1 class="ms-auto">{{bill.isBill?'Facture FA':'Devis DE' }}{{bill.billDate|date("Ymd")}}</h1>
<h1 class="ms-auto">{{bill.isBill?'Facture FA':'Devis DE' }}{{bill.billDate|date("Ymd")}}</h1>
</div>
<div class="company">
<h4>{{bill.company.title}}</h4>
@@ -47,7 +47,7 @@
{{bill.clientAddress|nl2br}}
</div>
<table class="table table-bordered mt-3">
<table class="table table-bordered mt-3 mb-6">
<thead>
<tr>
<th>Description</th>
@@ -76,4 +76,19 @@
</tfoot>
</table>
<div class="d-flex mt-6">
<div>
INFORMATION BANCAIRE<br>
Banque = {{bill.company.bankname}} - {{bill.company.banklocality}}<br>
n° Compte = {{bill.company.bankcode}}-{{bill.company.bankguichet}}-{{bill.company.bankkey}}<br>
IBAN = = {{bill.company.bankiban}}<br>
BIC = {{bill.company.bankbic}}
</div>
<div class="ms-auto">
TVA non applicable, art. 293 B du CGI
</div>
</div>
{% endblock %}