This question has been flagged
4043 Views

i have a button in a popup window and i want from this button to open an other popup window without closing the current popup window.like for example in many2one field on edit, a link appear in the right of the field and he open a new popup window

i used this code but it close the current popup window:

 def button_article(self, cr, uid, ids, context=None):
      ctx = (context or {}).copy()
      ctx['article'] = self.browse(cr, uid, ids[0], context=context).product_id.id
      ctx['form_view_ref'] = 'itk_entrepot.itk_entrepot_article_maj'
      print "button article"
      if ctx['article'] :
          return {
        'name':'Article',
        'view_type':'form',
        'view_mode':'form',
        'res_model':'product.product',
        'res_id': ids[0],
        'view_id':False,
        'target':'new',
        'type':'ir.actions.act_window',
        'domain':[('id','=',ctx['article'])],
        'context':ctx,
        'nodestroy':True,
        'res_id':ctx['article'],
            }
      else : return True

<button name="button_article" string="Article" type="object" class="oe_highlight" icon="article" />

i think that the problem can be resolved with javascript code, but i dont know how

Avatar
Discard