[FIX] account_check_deposit: fix value passed for currency in monetary widget

This commit is contained in:
Patrick T
2023-11-07 10:53:01 +01:00
committed by Enric Tobella
parent 6ae380322f
commit 18563dae8a

View File

@@ -79,7 +79,7 @@
> >
<span <span
t-field="move_line.debit" t-field="move_line.debit"
t-options='{"widget": "monetary", "display_currency": "o.currency_id"}' t-options='{"widget": "monetary", "display_currency": o.currency_id}'
/> />
</t> </t>
<t <t
@@ -87,7 +87,7 @@
> >
<span <span
t-field="move_line.amount_currency" t-field="move_line.amount_currency"
t-options='{"widget": "monetary", "display_currency": "o.currency_id"}' t-options='{"widget": "monetary", "display_currency": o.currency_id}'
/> />
</t> </t>
</td> </td>
@@ -103,7 +103,7 @@
<b> <b>
<span <span
t-field="o.total_amount" t-field="o.total_amount"
t-options='{"widget": "monetary", "display_currency": "o.currency_id"}' t-options='{"widget": "monetary", "display_currency": o.currency_id}'
/> />
</b> </b>
</td> </td>