From 4b140806818ef1d315729563fc067f68c578c26a Mon Sep 17 00:00:00 2001 From: HuylenbroeckFlorent <flhu@odoo.com> Date: Fri, 28 Apr 2023 10:03:35 +0000 Subject: [PATCH] [FIX] Install l10n_eu_service without chart template When installing l10n_eu_service without a localization installed, a line fails in the get_oss_tags function of res_company, thus halting the installation and returning an error. This fail is due to the function relying on the company in self having its 'chart_template_id' set, when this is not always the case. Adding a failsafe to that function allows the installation of the module to proceed in the event that the chart_template_id is not set. opw-3291118 opw-3289913 closes odoo/odoo#120077 Signed-off-by: Brice Bartoletti (bib) <bib@odoo.com> --- addons/l10n_eu_service/models/res_company.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/l10n_eu_service/models/res_company.py b/addons/l10n_eu_service/models/res_company.py index 0a7bfcd81dc2..4b09c04d582b 100644 --- a/addons/l10n_eu_service/models/res_company.py +++ b/addons/l10n_eu_service/models/res_company.py @@ -117,7 +117,9 @@ class Company(models.Model): return self.env.ref(f'l10n_eu_service.oss_tax_account_company_{self.id}') def _get_oss_tags(self): - [chart_template_xml_id] = self.chart_template_id.parent_id.get_xml_id().values() or self.chart_template_id.get_xml_id().values() + chart_template_xml_id = '' + if self.chart_template_id: + [chart_template_xml_id] = self.chart_template_id.parent_id.get_external_id().values() or self.chart_template_id.get_external_id().values() tag_for_country = EU_TAG_MAP.get(chart_template_xml_id, { 'invoice_base_tag': None, 'invoice_tax_tag': None, -- GitLab