Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
12229 Tampilan
  • Employees should only view tasks related to their assigned projects.
  • They should not be able to create, edit, or delete projects.
  • Employees must be able to edit their assigned tasks but should not be allowed to create or delete tasks.
Avatar
Buang
Jawaban Terbai

You have to update your record rules like this:

1️⃣ Rule: Employees can only view tasks related to their assigned projects: 
Model -  project.task
Domain - ['|', ('project_id.user_id', '=',
user.id), ('project_id.privacy_visibility', '!=', 'employees')]
Permission - Read



2️⃣Rule: Employees should not be able to create, edit, or delete projects:
Model - project.project
Domain - []
Permission - Read


3️⃣ Rule: Employees can edit their assigned tasks but cannot create or delete tasks:
Model - project.task
Domain - [('user_id', '=',
user.id)]
Permission - Read, Write

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
4
Mei 25
2486
2
Mei 25
5847
1
Mar 25
1670
4
Mar 25
4456
3
Feb 25
5460