From a63f616c280ff464e331e3ba97265a8c29a86871 Mon Sep 17 00:00:00 2001
From: Ivan Yelizariev <iel@odoo.com>
Date: Mon, 28 Nov 2022 14:20:05 +0000
Subject: [PATCH] [FIX] base,web: fix address widgets in reports for RTL

Address widget has `o_force_ltr` class [1] since Odoo 14 [2]. Somehow, it didn't
work in Sale Order report and everything was RTL. But since Odoo 16 address part
actually became LTR. It mixes things up, because partner name and phone number
in the billing/delivery sections is still RTL [0].

This commit fix it by forcing whole address block to LTR. Alternative solution
could be removing `o_force_ltr` class, but this approach looks more risky and
should be done in master instead.

[0]: opw-3053457

[1]: https://github.com/odoo/odoo/blob/1666ee5515996fab8a843b36b4fd93b776172f75/odoo/addons/base/views/ir_qweb_widget_templates.xml#L26

[2]: https://github.com/odoo/odoo/commit/5b7c3805a045d8824dd1b4fa0de07d90b17392c1

closes odoo/odoo#106695

Signed-off-by: Yannick Tivisse (yti) <yti@odoo.com>
---
 addons/web/views/report_templates.xml               | 2 +-
 odoo/addons/base/views/ir_qweb_widget_templates.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/addons/web/views/report_templates.xml b/addons/web/views/report_templates.xml
index 5e3762bb9e03..4fd59607dd18 100644
--- a/addons/web/views/report_templates.xml
+++ b/addons/web/views/report_templates.xml
@@ -296,7 +296,7 @@
             <div class="address row">
                 <t t-if="information_block">
                     <t t-set="colclass" t-value="'col-5 offset-1'"/>
-                    <div name="information_block" class="col-6">
+                    <div name="information_block" class="col-6 o_force_ltr ">
                         <t t-out="information_block"/>
                     </div>
                 </t>
diff --git a/odoo/addons/base/views/ir_qweb_widget_templates.xml b/odoo/addons/base/views/ir_qweb_widget_templates.xml
index 93175e61993b..e360ee989dc7 100644
--- a/odoo/addons/base/views/ir_qweb_widget_templates.xml
+++ b/odoo/addons/base/views/ir_qweb_widget_templates.xml
@@ -1,6 +1,6 @@
 <odoo>
 <template id="contact_name">
-    <div t-if="'name' in fields">
+    <div t-if="'name' in fields" class="o_force_ltr">
         <t t-if="object.name">
             <span itemprop="name" t-esc="name"/>
         </t>
-- 
GitLab