You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?xml version="1.0" encoding="utf-8"?> <odoo noupdate="1">
<record id="mail_activity_rule_my_team" model="ir.rule"> <field name="name">mail.activity: user: my team</field> <field name="model_id" ref="mail.model_mail_activity"/> <field name="domain_force">["|", ('team_id', 'in', user.activity_team_ids.ids), "&", ('team_id', '=', False), ('user_id', '=', user.id)]</field> <field name="groups" eval="[(4, ref('base.group_user'))]"/> <field name="perm_create" eval="True"/> <field name="perm_read" eval="False"/> <field name="perm_write" eval="True"/> <field name="perm_unlink" eval="True"/> </record>
</odoo>
|