[IMP] jump to accounting dash board after account generation

bzr revid: al@openerp.com-20111221115013-q10j13kwwfgzc859
This commit is contained in:
Antony Lesuisse 2011-12-21 12:50:13 +01:00
parent 6a58ba526a
commit cb5339c3d9
1 changed files with 9 additions and 1 deletions

View File

@ -3422,7 +3422,15 @@ class wizard_multi_charts_accounts(osv.osv_memory):
# Create Bank journals
self._create_bank_journals_from_o2m(cr, uid, obj_wizard, company_id, acc_template_ref, context=context)
return {'type' : 'ir.actions.act_window_close'}
action = {
'type': 'ir.actions.act_window',
'view_type': 'form',
'view_mode': 'form',
'res_model': 'board.board',
'view_id': self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account', 'board_account_form')[1],
'menu_id': self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account', 'menu_finance')[1]
}
return action
def _prepare_bank_journal(self, cr, uid, line, current_num, default_account_id, company_id, context=None):
'''