From cca59aee785d01e9015bb0969780986588318886 Mon Sep 17 00:00:00 2001 From: "Andrea Grazioso (agr-odoo)" <agr@odoo.com> Date: Mon, 4 Nov 2019 11:50:35 +0000 Subject: [PATCH] [FIX] web: add nbsp on Tax-ID line in report (refix) Followup for d22866f8427c5500014b6502cbfe127b678204a8 Without this fix the rendering associated with this view would crash because after the replace the field became a string and it crash when retrieving it with t-field closes odoo/odoo#39732 Signed-off-by: Nicolas Martinelli (nim) <nim@odoo.com> --- addons/web/views/report_templates.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/views/report_templates.xml b/addons/web/views/report_templates.xml index c88e9e4d486a..9e121d5ed273 100644 --- a/addons/web/views/report_templates.xml +++ b/addons/web/views/report_templates.xml @@ -192,7 +192,7 @@ <li t-if="company.phone" class="list-inline-item"><i class="fa fa-phone" role="img" aria-label="Phone" title="Phone"/> <span t-field="company.phone"/></li> <li t-if="company.email" class="list-inline-item"><i class="fa fa-at" role="img" aria-label="Email" title="Email"/> <span t-field="company.email"/></li> <li t-if="company.website" class="list-inline-item"><i class="fa fa-globe" role="img" aria-label="Website" title="Website"/> <span t-field="company.website"/></li> - <li t-if="company.vat" class="list-inline-item"><i class="fa fa-building-o" role="img" aria-label="Fiscal number"/><t t-esc="(company.country_id.vat_label or 'Tax ID').replace(' ','\N{NO-BREAK SPACE}')"/>: <span t-field="company.vat.replace(' ','\N{NO-BREAK SPACE}')"/></li> + <li t-if="company.vat" class="list-inline-item"><i class="fa fa-building-o" role="img" aria-label="Fiscal number"/><t t-esc="(company.country_id.vat_label or 'Tax ID').replace(' ','\N{NO-BREAK SPACE}')"/>: <span t-esc="company.vat.replace(' ','\N{NO-BREAK SPACE}')"/></li> </ul> <div t-field="company.report_footer"/> <div t-if="report_type == 'pdf'" class="text-muted"> -- GitLab