Merge pull request #11 from acsone/8.0-fix-new-api-compatibility

[FIX]Take a copy of the context before update
This commit is contained in:
Stéphane Bidoul (ACSONE)
2015-03-17 18:36:26 +01:00

View File

@@ -35,8 +35,7 @@ class account_bank_statement_import(osv.TransientModel):
def import_file(self, cr, uid, ids, context=None):
""" Process the file chosen in the wizard, create bank statement(s) and go to reconciliation. """
if context is None:
context = {}
context = dict(context or {})
#set the active_id in the context, so that any extension module could
#reuse the fields chosen in the wizard if needed (see .QIF for example)
context.update({'active_id': ids[0]})