[FIX] stock_picking_report_salesperson: add the same class style as in the base report

This commit is contained in:
Rodrigo
2024-07-11 17:20:57 +02:00
parent 26173312fc
commit 3d263b395c

View File

@@ -4,11 +4,11 @@
<xpath expr="//div[@name='div_origin']/.." position="inside">
<div
t-if="o.picking_type_id.code == 'outgoing' and o.sale_id.user_id"
class="col-auto"
class="col-auto col-3 mw-100 mb-2"
name="div_salesperson"
>
<strong>Salesperson:</strong>
<p t-field="o.sale_id.user_id.name" />
<p t-field="o.sale_id.user_id.name" class="m-0" />
</div>
</xpath>
</template>