From 6d56acbb83d066213a52127642be1a2c5be32df2 Mon Sep 17 00:00:00 2001 From: Yann Papouin Date: Wed, 27 Nov 2013 15:36:05 +0100 Subject: [PATCH] FIX: wrong dict passed in _update_accounts --- account_chart_update/wizard/wizard_chart_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_chart_update/wizard/wizard_chart_update.py b/account_chart_update/wizard/wizard_chart_update.py index 0ce1274ee..604836ab9 100644 --- a/account_chart_update/wizard/wizard_chart_update.py +++ b/account_chart_update/wizard/wizard_chart_update.py @@ -1189,7 +1189,7 @@ class wizard_update_charts_accounts(orm.TransientModel): taxes_res = self._update_taxes( cr, uid, wizard, log, tax_codes_res['mapping'], context=context) accounts_res = self._update_accounts( - cr, uid, wizard, log, taxes_res['pending'], context=context) + cr, uid, wizard, log, taxes_res['mapping'], context=context) self._update_taxes_pending_for_accounts(cr, uid, wizard, log, taxes_res['pending'], accounts_res['mapping'], context=context) fps_res = self._update_fiscal_positions(cr, uid, wizard, log, taxes_res['mapping'], accounts_res['mapping'], context=context)