Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2699 Visualizzazioni

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
Abbandona
Post correlati Risposte Visualizzazioni Attività
2
gen 20
15383
16
ago 19
10342
1
gen 19
5580
5
giu 18
10981
0
set 17
2616