fix : correction du téléchargement du bon de réception pour Chrome
All checks were successful
Auto Tag Develop / tag (push) Successful in 6s
Build Release Artefact / build (push) Successful in 1m17s

This commit is contained in:
2026-02-02 08:05:00 +01:00
parent 1ce6357c1d
commit 086279f962
4 changed files with 70 additions and 42 deletions

View File

@@ -65,7 +65,7 @@
.bigtable-wrap{
border: 1px solid #000;
height: 425px;
height: 360px;
margin-bottom: 10px;
}
@@ -107,8 +107,8 @@
.footer-block{ page-break-inside: avoid; }
.signature-box {
height: 22mm;
margin-bottom: 4mm;
height: 130px;
margin-bottom: 10px;
border: 0.5px solid #000;
padding: 6px 10px;
@@ -143,7 +143,16 @@
<div style="display:inline-block; width:75mm; line-height:1.3;">
<strong>{{ reception.supplier.name }}</strong><br>
<span>{{ reception.address.street }}</span><br>
<span>{{ reception.address.postalCode }} {{ reception.address.city }}</span>
{% if reception.address.street2 %}
<span>{{ reception.address.street2 }}</span><br>
{% endif %}
<span>{{ reception.address.postalCode }} {{ reception.address.city }}</span><br>
{% if reception.supplier.phone %}
<span>{{ reception.supplier.phone }}</span><br>
{% endif %}
{% if reception.supplier.email %}
<span>{{ reception.supplier.email}}</span><br>
{% endif %}
</div>
</td>
</tr>