Ir al contenido
Menú
Se marcó esta pregunta
2694 Vistas

Hey There

Good Day!

 

I have a button named as action_list and it is placed in XML file and works ok. What I want is that I want to fetch data from my table like vlaues on button click and this should be displayed in a new wizard where target =new. What should I get? I should have a table displayed in front end of Odoo showing all values... Below code is showing me list view of my current entered values. Am trying the below code. please guide me in all cases

 

def action_list(self,cr,uid,ids,context=None):

        cr.execute("SELECT * FROM activity_track WHERE id =%s",ids)

        result= map(lambda x: x[0], cr.fetchall())

        context.update({'myresult':result})

        return {

          'type':'ir.actions.act_window',

          'view_mode':'tree,form',

          'view_type':'tree',

          'domain':'[]',

          'nodestroy': True,

         # **'context':context,**

          'target': 'new',

          'res_model':'activity.track',


                 }
     

 

Thanks

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
2
ene 20
15382
16
ago 19
10340
1
ene 19
5574
5
jun 18
10976
0
sept 17
2614