diff --git a/addons/account/models/chart_template.py b/addons/account/models/chart_template.py index dbd73755acb64..a0bf33d02d8a2 100644 --- a/addons/account/models/chart_template.py +++ b/addons/account/models/chart_template.py @@ -174,7 +174,7 @@ def try_loading_for_current_company(self): # (won't work well for multi-company) company = self.env.user.company_id # If we don't have any chart of account on this company, install this chart of account - if not self.existing_accounting(company): + if not company.chart_template_id and not self.existing_accounting(company): self.load_for_current_company(15.0, 15.0) def load_for_current_company(self, sale_tax_rate, purchase_tax_rate):