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

Hello,


How can I implement a rule for a user id to see only the records that he is assigned to but also the records that are in new state but not assigned to anyone.


My code so far will :



Own complaints

['|', ('state', 'in', ['new']), ('technician', '=', user.id)]

Odoo 13 CE.


Thank you !

Imagine profil
Abandonează
Cel mai bun răspuns

Try this

['|', '&', ('state', 'in', ['new']), ('technician', '=', False), ('technician', '=', user.id)]
Imagine profil
Abandonează
Autor

I tried you way before but the conditions were not in the correct order and did not work.

Now it works like a charm. Thank you !

Related Posts Răspunsuri Vizualizări Activitate
5
sept. 20
11378
2
mar. 15
6124
0
mar. 15
3014
1
mar. 15
4127
0
mar. 15
3285