Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
7497 Vistas

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

Avatar
Descartar
Mejor respuesta

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
Descartar
Autor

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.

Publicaciones relacionadas Respuestas Vistas Actividad
0
jul 24
1012
1
dic 21
4728
1
jun 20
3558
1
may 23
1973
1
ene 19
21248