[FIX] account_cash_deposit: fix qweb report generation

This commit is contained in:
Alexis de Lattre
2024-03-11 13:18:00 +01:00
parent f20b9375e3
commit e57839eff4

View File

@@ -72,10 +72,7 @@
<span t-field="line.qty" />
</td>
<td class="text-right">
<span
t-field="line.subtotal"
t-options='{"widget": "monetary", "display_currency": "o.currency_id"}'
/>
<span t-field="line.subtotal" />
</td>
</tr>
</t>
@@ -85,10 +82,7 @@
<strong>Total:</strong>
</td>
<td class="text-right">
<span
t-field="o.total_amount"
t-options='{"widget": "monetary", "display_currency": "o.currency_id"}'
/>
<span t-field="o.total_amount" />
</td>
</tr>
</tbody>