Skip to content

Commit

Permalink
Merge PR #1004 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by simahawk
  • Loading branch information
OCA-git-bot committed Jul 10, 2024
2 parents f43eb43 + add6691 commit 86d3bd6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions base_edi/security/edi_groups.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="group_edi_user" model="res.groups">
<field name="name">EDI User</field>
<field name="category_id" ref="module_category_edi" />
<field
name="users"
eval="[(4, ref('base.user_root')), (4, ref('base.user_admin'))]"
/>
<field name="implied_ids" eval="[(4, ref('base.group_user'))]" />
</record>

<record id="group_edi_manager" model="res.groups">
<field name="name">EDI Manager</field>
<field name="category_id" ref="module_category_edi" />
<field
name="users"
eval="[(4, ref('base.user_root')), (4, ref('base.user_admin'))]"
/>
<field name="implied_ids" eval="[(4, ref('base_edi.group_edi_user'))]" />
</record>
</odoo>

0 comments on commit 86d3bd6

Please sign in to comment.