account_chart_update: copy inactive tax templates too

In v10, tax templates have an active flag. It is useful to copy them too, letting the user select which one he wants to activate in it's instance.
This commit is contained in:
Stéphane Bidoul (ACSONE)
2018-07-09 17:53:57 +02:00
committed by Reyes4711
parent a305c894f4
commit 53fa385d08

View File

@@ -462,7 +462,8 @@ class WizardUpdateChartsAccounts(models.TransientModel):
found_taxes_ids = [] found_taxes_ids = []
self.tax_ids.unlink() self.tax_ids.unlink()
# Search for changes between template and real tax # Search for changes between template and real tax
for template in self.chart_template_ids.mapped("tax_template_ids"): for template in self.chart_template_ids.\
with_context(active_test=False).mapped("tax_template_ids"):
# Check if the template matches a real tax # Check if the template matches a real tax
tax_id = self.find_tax_by_templates(template) tax_id = self.find_tax_by_templates(template)
if not tax_id: if not tax_id: