I have an requirement that when i install a module the groups which i have created should be equal to True how can i achieve this?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
Make it part of a group which is installed by default might be a handy solution.
Check below example here group Edit Product Sale Price is true for all base users
<field name="name">Edit Product Sale Price</field>
<field name="users" eval="[(4, ref('base.user_root')), (4, ref('base.user_admin'))]"/>
</record>
<record id="base.default_user" model="res.users">
<field name="groups_id" eval="[(4,ref('base.group_user')),(4,ref('your_module.your_group'))]"/>
</record>
You might have to re-install your module for the changes to take effect
@syrine it should work, try to re-install if possible
You can also do it manually. set the group on the default user ( settings -> users & companies -> users (filter: inactive users) .
each new user copies its default values from the (default user template)
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
2
مايو 24
|
2066 | ||
|
1
أبريل 23
|
14525 | ||
how to assign menu to groups
تم الحل
|
|
9
ديسمبر 23
|
23820 | |
|
1
مايو 20
|
6259 | ||
|
1
مايو 19
|
2782 |
@yoromang not work for me?!