diff --git a/report/report_scop_bordereau_payments.xml b/report/report_scop_bordereau_payments.xml index 10dc05fe088853881a16a781eecf2d7d373aa6a5..663985ff8a183352932c942695935ba733a5727e 100644 --- a/report/report_scop_bordereau_payments.xml +++ b/report/report_scop_bordereau_payments.xml @@ -79,20 +79,20 @@ </table> <table class="table table-sm table-striped" style="border: none;"> <tr> + <th class="text-right">Montant dû</th> <th>Total appelé</th> <th class="text-right">Total réglé</th> - <th class="text-right">Montant dû</th> </tr> <tr style="border-bottom: 1px solid #ccc;"> + <td class="text-right" style="border: none; background: inherit; color: inherit;"> + <t t-esc="schedule_line.get('total_residual')" t-options="{'widget': 'monetary', 'display_currency': o.company_id.currency_id}"/> + </td> <td style="border: none; background: inherit; color: inherit;"> <t t-esc="schedule_line.get('total_amount')" t-options="{'widget': 'monetary', 'display_currency': o.company_id.currency_id}"/> </td> <td class="text-right" style="border: none; background: inherit; color: inherit;"> <t t-esc="schedule_line.get('total_paid')" t-options="{'widget': 'monetary', 'display_currency': o.company_id.currency_id}"/> </td> - <td class="text-right" style="border: none; background: inherit; color: inherit;"> - <t t-esc="schedule_line.get('total_residual')" t-options="{'widget': 'monetary', 'display_currency': o.company_id.currency_id}"/> - </td> </tr> </table> </p>