From c22242433b1e54f0a6d5b6c430be0d103a127ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20-=20Le=20Filament?= <remi@le-filament.com> Date: Fri, 30 Sep 2022 15:54:36 +0200 Subject: [PATCH] [FIX] display --- report/report_saleorder_preparation.xml | 26 ++++++++++--------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/report/report_saleorder_preparation.xml b/report/report_saleorder_preparation.xml index 9813422..3d1bc4f 100644 --- a/report/report_saleorder_preparation.xml +++ b/report/report_saleorder_preparation.xml @@ -5,19 +5,13 @@ <t t-call="web.html_container"> <t t-foreach="docs" t-as="o"> <t t-call="web.external_layout"> + <span><strong + >Adresse du client :</strong></span> + <div + t-field="o.partner_shipping_id" + t-options='{"widget": "contact", "fields": ["address", "name", "phone"], "no_marker": True, "phone_icons": True}' + /> <div class="page"> - <div class="row"> - <div class="col-5 offset-1" name="div_outgoing_address"> - <div> - <span><strong - >Adresse du client :</strong></span> - <div - t-field="o.partner_shipping_id" - t-options='{"widget": "contact", "fields": ["address", "name", "phone"], "no_marker": True, "phone_icons": True}' - /> - </div> - </div> - </div> <br /> <h1 t-field="o.name" class="mt0 float-left" /> <div class="row mt48 mb32"> @@ -61,16 +55,16 @@ > <thead> <tr> - <th name="th_product"> + <th name="th_product" style="width: 60%;"> <strong>Article</strong> </th> - <th name="th_qty"> + <th name="th_qty" style="width: 15%;"> <strong>Quantité</strong> </th> - <th name="th_serial_number" class="text-center"> + <th name="th_serial_number" style="width: 10%;"> <strong>Numéro de Lot</strong> </th> - <th name="th_expiry" class="text-center"> + <th name="th_expiry" style="width: 15%;"> <strong>DLC</strong> </th> </tr> -- GitLab