From 3779ee6314dbd46d44af2ad9fb26cbce2f1d1472 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 659e0704a..6222e106f 100644 --- a/account_chart_update/wizard/wizard_chart_update.py +++ b/account_chart_update/wizard/wizard_chart_update.py @@ -1095,7 +1095,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)