[FIX] uom_id in rma and rma_sale_mrp reports

This commit is contained in:
Joshua Lauer
2024-05-14 11:53:49 +02:00
parent 0e78fc4ec4
commit 1ff6dac77b
2 changed files with 3 additions and 3 deletions

View File

@@ -108,9 +108,9 @@
</div> </div>
<div t-if="doc.product_id" class="col-auto mw-100 mb-2"> <div t-if="doc.product_id" class="col-auto mw-100 mb-2">
<strong>Quantity:</strong> <strong>Quantity:</strong>
<p class="m-0" t-field="doc.product_uom_qty"> <p class="m-0">
<span t-field="doc.product_uom_qty" /> <span t-field="doc.product_uom_qty" />
<span t-field="doc.uom_id" groups="uom.group_uom" /> <span t-field="doc.product_uom" groups="uom.group_uom" />
</p> </p>
</div> </div>
<div t-if="doc.delivered_qty" class="col-auto mw-100 mb-2"> <div t-if="doc.delivered_qty" class="col-auto mw-100 mb-2">

View File

@@ -58,7 +58,7 @@
<t t-if="kit_rma.product_id"> <t t-if="kit_rma.product_id">
<span t-field="kit_rma.product_uom_qty" /> <span t-field="kit_rma.product_uom_qty" />
<span <span
t-field="kit_rma.uom_id" t-field="kit_rma.product_uom"
groups="uom.group_uom" groups="uom.group_uom"
/> />
</t> </t>