Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
7487 Prikazi

res.partner.rule.private.employee How to override this rule. I want to deactivate it through code.

Avatar
Opusti
Best Answer

Hi,

Either you can delete that rule or you can set active False for that record. Both can be done from UI or from Code.

Setting active False:

<record id="base.res_partner_rule_private_employee" model="ir.rule">
<field name="name">res.partner.rule.private.employee</field>
<field name="active" eval="False"/>
</record>

Deleting the rule:
<delete id="base.res_partner_rule_private_employee" model="ir.rule"/

Thanks

Avatar
Opusti
Avtor

Thanks!

Messing with this rule, unfortunately, is quite dangerous. By deleting or archiving this rule any users that belong to the internal group will no longer able see any internal users / partners, and probably not even able to log-in.

Related Posts Odgovori Prikazi Aktivnost
0
jul. 24
1010
1
dec. 21
4721
1
jun. 20
3545
1
maj 23
1968
1
jan. 19
21238