Skip to content

Commit

Permalink
Merge pull request #28 from Escodoo/14.0-fix-egd_stock_picking_custom
Browse files Browse the repository at this point in the history
[14.0][FIX] egd_stock_picking_custom:change lst_price to standard_price
  • Loading branch information
marcelsavegnago authored Nov 27, 2023
2 parents 36593b5 + 1a284cf commit c9ce6bc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions egd_stock_picking_custom/views/egd_report_custody.xml
Original file line number Diff line number Diff line change
Expand Up @@ -248,14 +248,14 @@
<td style="padding: 3px;">
<strong>
<span
t-field="product.product_id.lst_price"
t-field="product.product_id.standard_price"
/>
</strong>
</td>
<td style="padding: 3px;">
<strong>
<span
t-esc="product.product_uom_qty * product.product_id.lst_price "
t-esc="product.product_uom_qty * product.product_id.standard_price "
/>
</strong>
</td>
Expand All @@ -270,7 +270,7 @@
/>
<t
t-set="total_price"
t-value="total_price + (product.product_qty * product.product_id.lst_price)"
t-value="total_price + (product.product_qty * product.product_id.standard_price)"
/>
</t>
<tr class="table-active table-bordered">
Expand Down Expand Up @@ -709,14 +709,14 @@
<td style="padding: 3px;">
<strong>
<span
t-field="product.product_id.lst_price"
t-field="product.product_id.standard_price"
/>
</strong>
</td>
<td style="padding: 3px;">
<strong>
<span
t-esc="product.quantity * product.product_id.lst_price "
t-esc="product.quantity * product.product_id.standard_price "
/>
</strong>
</td>
Expand All @@ -732,7 +732,7 @@
/>
<t
t-set="total_price"
t-value="total_price + (product.product_uom_qty *product.product_id.lst_price)"
t-value="total_price + (product.product_uom_qty *product.product_id.standard_price)"
/>
<t t-set="lote" t-value="" />
</t>
Expand Down

0 comments on commit c9ce6bc

Please sign in to comment.