diff --git a/report/account_template.xml b/report/account_template.xml index 287240c83d77518c18fce5206140e33da3e89028..c2d19392acccd2e9639bc6c45d0924ed3ac648ab 100644 --- a/report/account_template.xml +++ b/report/account_template.xml @@ -357,7 +357,7 @@ <td><strong><h5 >Electricité autoconsommée</h5></strong></td> <td class="text-right"> - <h4 t-field="o.power_cons"><strong><span> kWh</span></strong></h4> + <h4><strong><span t-field="o.power_cons"/> kWh</strong></h4> </td> </tr> <tr> @@ -567,18 +567,20 @@ </tr> </t> <tr class="border-black o_total"> - <t t-if="o.is_tva"> - <td colspan="5">MONTANT TOTAL</td> - </t> - <t t-else=""> - <td colspan="3">MONTANT TOTAL</td> - </t> - <td class="text-center"> - <span - t-esc="current_subtotal" - t-options='{"widget": "monetary", "display_currency": o.currency_id}' - /> - </td> + <strong> + <t t-if="o.is_tva"> + <td colspan="5">MONTANT TOTAL</td> + </t> + <t t-else=""> + <td colspan="3">MONTANT TOTAL</td> + </t> + <td class="text-center"> + <span + t-esc="current_subtotal" + t-options='{"widget": "monetary", "display_currency": o.currency_id}' + /> + </td> + </strong> </tr> </tbody> </table> @@ -769,18 +771,20 @@ </tr> </t> <tr class="border-black o_total"> - <t t-if="o.is_tva"> - <td colspan="5">MONTANT TOTAL</td> - </t> - <t t-else=""> - <td colspan="3">MONTANT TOTAL</td> - </t> - <td class="text-center"> - <span - t-esc="current_subtotal" - t-options='{"widget": "monetary", "display_currency": o.currency_id}' - /> - </td> + <strong> + <t t-if="o.is_tva"> + <td colspan="5">MONTANT TOTAL</td> + </t> + <t t-else=""> + <td colspan="3">MONTANT TOTAL</td> + </t> + <td class="text-center"> + <span + t-esc="current_subtotal" + t-options='{"widget": "monetary", "display_currency": o.currency_id}' + /> + </td> + </strong> </tr> </tbody> </table>