İçereği Atla
Menü
Bu soru işaretlendi
2693 Görünümler

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
Vazgeç
İlgili Gönderiler Cevaplar Görünümler Aktivite
2
Oca 20
15382
16
Ağu 19
10340
1
Oca 19
5574
5
Haz 18
10976
0
Eyl 17
2613