Skip to content

Commit

Permalink
pos_report_session_summary: fix printing session report
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienbeau committed Nov 5, 2023
1 parent 0474955 commit dc25f7f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pos_report_session_summary/views/report_session_summary.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,25 +67,25 @@
<td class="text-right">
<span
t-field="statement.balance_start"
t-options='{"widget": "monetary", "display_currency": "statement.currency_id"}'
t-options='{"widget": "monetary", "display_currency": statement.currency_id}'
/>
</td>
<td class="text-right">
<span
t-field="statement.total_entry_encoding"
t-options='{"widget": "monetary", "display_currency": "statement.currency_id"}'
t-options='{"widget": "monetary", "display_currency": statement.currency_id}'
/>
</td>
<td class="text-right">
<span
t-field="statement.balance_end_real"
t-options='{"widget": "monetary", "display_currency": "statement.currency_id"}'
t-options='{"widget": "monetary", "display_currency": statement.currency_id}'
/>
</td>
<td class="text-right">
<span
t-field="statement.difference"
t-options='{"widget": "monetary", "display_currency": "statement.currency_id"}'
t-options='{"widget": "monetary", "display_currency": statement.currency_id}'
/>
</td>
<td
Expand Down Expand Up @@ -145,7 +145,7 @@
<td class="text-right">
<span
t-field="line.amount"
t-options='{"widget": "monetary", "display_currency": "statement.currency_id"}'
t-options='{"widget": "monetary", "display_currency": statement.currency_id}'
/>
</td>
</tr>
Expand Down

0 comments on commit dc25f7f

Please sign in to comment.