Hi everyone, I created an addons by setting the rules to user, supervisor, manager. Now I would like to install the survey addon and automatically set the rules user to manager if he is manager in my module.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- ลูกค้าสัมพันธ์
- e-Commerce
- ระบบบัญชี
- สินค้าคงคลัง
- PoS
- Project
- MRP
คำถามนี้ถูกตั้งค่าสถานะ
1
ตอบกลับ
1882
มุมมอง
Hi
Please go through the code for record rules
<record id="give_a_unique_record_id" model="ir.rule">
<field name="name">module_name.user</field> // Name of your choice
<field name="model_id" ref="module_name.model_account_analytic_line"/>
<field name="domain_force">[(1, '=', 1)]</field> // This will give access to all records unconditionally.
<field name="groups" eval="[(4, ref(custom_module.group_manager'))]"/> To set groups
<field name="perm_create" eval="1"/>
<field name="perm_write" eval="1"/>
<field name="perm_unlink" eval="1"/>
<field name="perm_read" eval="1"/>
// You can give the permission to create,read,write,unlink according to your system.
</record>
To know more about record rules , please take a look at : https://www.cybrosys.com/blog/record-rules-in-odoo-14
Hope it helps
สนุกกับการพูดคุยนี้ใช่ไหม? เข้าร่วมเลย!
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อRelated Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
---|---|---|---|---|
Add images to Odoo Survey Questions
แก้ไขแล้ว
|
|
2
มิ.ย. 25
|
2415 | |
|
0
ก.ค. 23
|
2335 | ||
|
1
เม.ย. 23
|
10241 | ||
|
0
ต.ค. 22
|
2891 | ||
|
1
มี.ค. 22
|
6184 |