Files
account-financial-tools/account_credit_control/security/res_groups.xml
Sylvain Van Hoof 5cb7d0a9ec [MIG] Migration of the module account_credit_control (from v8 to v10)
(cherry picked from commit 811310fd06ca8589fa8e87da6b8bdaea403bf660)

[MIG] Improve the code and fix some bugs

(cherry picked from commit 5bcdfe3f748884d650120f76d1642b820d0a800b)

[FIX] Change the parent for the menu Credit Control (the previous parent menu was not in the Odoo standard)

(cherry picked from commit 826257ce7b5248956d838cae9c94a012d550327e)

[FIX] Fix a lot of errors to respect pep8

(cherry picked from commit bed6cf35d665eea32122c91d33322af141053f29)

[FIX] Respect PEP8

(cherry picked from commit 6353eef0dce1bfe5db8a38d3410d1cc7f833fa10)
2017-06-09 11:25:17 +02:00

26 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="category_credit_control" model="ir.module.category">
<field name="name">Credit Control</field>
<field name="sequence" eval="99" />
</record>
<record id="group_account_credit_control_info" model="res.groups" context="{'noadmin':True}">
<field name="name">Info</field>
<field name="category_id" ref="category_credit_control"/>
</record>
<record id="group_account_credit_control_user" model="res.groups" context="{'noadmin':True}">
<field name="name">User</field>
<field name="category_id" ref="category_credit_control"/>
<field name="implied_ids" eval="[(4, ref('group_account_credit_control_info'))]"/>
</record>
<record id="group_account_credit_control_manager" model="res.groups">
<field name="name">Manager</field>
<field name="category_id" ref="category_credit_control"/>
<field name="implied_ids" eval="[(4, ref('group_account_credit_control_user'))]"/>
</record>
</odoo>