Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
3 Ответы
11586 Представления

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?

Аватар
Отменить

@yoromang not work for me?!

Лучший ответ

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 

<record id="group_edit_product_sale_price" model="res.groups">
    <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)

Related Posts Ответы Просмотры Активность
2
мая 24
2121
1
апр. 23
14585
9
дек. 23
23876
1
мая 20
6330
1
мая 19
2852