[FIX] l10n_ch: proper use of XML ID to identify a module data record

bzr revid: odo@openerp.com-20121220182928-hyh1ew0t320c8tjf
This commit is contained in:
Olivier Dony 2012-12-20 19:29:28 +01:00
parent 240f13b57b
commit f4345fb6d0
1 changed files with 2 additions and 3 deletions

View File

@ -32,9 +32,8 @@ class WizardMultiChartsAccounts(TransientModel):
# 0 is evaluated as False in python so we have to do this
# because original wizard test code_digits value on a float widget
if chart_template_id:
chart = self.pool['account.chart.template'].browse(cursor, uid,
chart_template_id, context=context)
if chart.name == "Plan comptable STERCHI":
sterchi_template = self.pool.get('ir.model.data').get_object('l10n_ch','l10nch_chart_template')
if sterchi_template.id == template_id:
res['value']['code_digits'] = 0
return res