Hi i added a button on my wizard form to open another wizard but i don't want to close existing one, the reason for an another wizard is just to pass some value after user filter and choose few data.
on my wizard form i added a button with below code
> def action_process_pickings(self, cr, uid, ids, context=None):
> if context is None: context = {}
> context = dict(context, active_ids=ids, active_model=self._name)
>
> return {
> 'name':_("Picking to Process"),
> 'view_mode': 'form',
> 'view_id': False,
> 'view_type': 'form',
> 'res_model': 'packing.wizard',
> 'res_id': ids[0],
> 'type': 'ir.actions.act_window',
> 'nodestroy': True,
> 'target': 'new',
> 'domain': '[]',
> 'context': context,
> }
I believe the solution is to put in "nodestroy" equal to True, it works on OpenERP 6.0 & 7.0 but not on 6.1, any solution?