openerp-community-reviewer team mailing list archive
-
openerp-community-reviewer team
-
Mailing list archive
-
Message #01703
lp:~yann-papouin/account-financial-tools/7.0-bug-1255543-chart-update-records-wrong-dict into lp:account-financial-tools
Yann Papouin has proposed merging lp:~yann-papouin/account-financial-tools/7.0-bug-1255543-chart-update-records-wrong-dict into lp:account-financial-tools.
Requested reviews:
Account Core Editors (account-core-editors)
Related bugs:
Bug #1255543 in Account - Financial Tools: "[7.0][6.1][account_chart_update] Wrong dict passed in function to that leads to TypeError"
https://bugs.launchpad.net/account-financial-tools/+bug/1255543
For more details, see:
https://code.launchpad.net/~yann-papouin/account-financial-tools/7.0-bug-1255543-chart-update-records-wrong-dict/+merge/196912
--
https://code.launchpad.net/~yann-papouin/account-financial-tools/7.0-bug-1255543-chart-update-records-wrong-dict/+merge/196912
Your team OpenERP Community Reviewer/Maintainer is subscribed to branch lp:account-financial-tools.
=== modified file 'account_chart_update/wizard/wizard_chart_update.py'
--- account_chart_update/wizard/wizard_chart_update.py 2013-10-18 16:44:19 +0000
+++ account_chart_update/wizard/wizard_chart_update.py 2013-11-27 14:38:17 +0000
@@ -1095,7 +1095,7 @@
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)
Follow ups