From d335052223e6b2a8cb6b3ae98c996f6874a2d5e5 Mon Sep 17 00:00:00 2001
From: Katherine Zaoral <kz@adhoc.com.ar>
Date: Tue, 2 Aug 2022 15:23:53 +0000
Subject: [PATCH] [FIX] sale_stock: invoice reporte lot_values

Before this change, the lots info of the products that are shown in the
invoice report were always computed, no matter if they were printed or
not. It is always computing the lots information, no matter if it will
be printed or not

With this change, the lost info only is computed when is actually used
and will be printed: that is when the user has the
sale_stock.group_lot_on_invoice group.

closes odoo/odoo#97348

Signed-off-by: William Henrotin (whe) <whe@odoo.com>
---
 addons/sale_stock/views/report_invoice.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/addons/sale_stock/views/report_invoice.xml b/addons/sale_stock/views/report_invoice.xml
index 0e12889a24ec..228ee7ffd41e 100644
--- a/addons/sale_stock/views/report_invoice.xml
+++ b/addons/sale_stock/views/report_invoice.xml
@@ -2,10 +2,11 @@
 <odoo>
     <template id="sale_stock_report_invoice_document" inherit_id="account.report_invoice_document">
         <xpath expr="//div[@id='total']" position="after">
+          <t groups="sale_stock.group_lot_on_invoice">
             <t t-set="lot_values" t-value="o._get_invoiced_lot_values()"/>
             <t t-if="lot_values">
                 <br/>
-                <table groups="sale_stock.group_lot_on_invoice" class="table table-sm" style="width: 50%;" name="invoice_snln_table">
+                <table class="table table-sm" style="width: 50%;" name="invoice_snln_table">
                     <thead>
                         <tr>
                             <th><span>Product</span></th>
@@ -27,6 +28,7 @@
                     </tbody>
                 </table>
             </t>
+          </t>
         </xpath>
     </template>
 </odoo>
-- 
GitLab