Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
3046 Vizualizări

Hello guys !! its so URGENT 

For exemple , i have classes ( STUDENT and COURSES) , and each student can have many courses,  furthermore, i have button in form view of student , when i click , it show the list of courses, BUT i want that when i click on the button in the form view of student X, it show ONLY courses of student X . ( something like filter, domain, context .... i d'ont jnow what i have do ) 

Any suggestion ???? 

Imagine profil
Abandonează
Cel mai bun răspuns

When you press that button it should  return a view. And for to that view you'd have to add a domain. Something like:

view = {
  'type': 'ir.actions.act_window',
  'res_model': 'course.course',
 'view_type': 'form',
'view_mode': 'tree',
'target': 'new',
'domain': "[('student_id', '=', %s)]" % (self.id),
}
return view
Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
1
nov. 21
11485
2
feb. 17
3119
0
ian. 17
2456
1
apr. 15
8247
0
sept. 23
41