OpenERP 7 How to give users access to custom module in OpenERP 7?

岁酱吖の 提交于 2019-12-17 06:14:31

问题


I have developed a custom Module in OpenERP 7, My administrator user can only see this module.

1-How can I give access to normal users to my custom modules?

2-What are the steps to solve this problem.

Please give a detailed example.


回答1:


Create a one Security folder which has below two files. For example,

  • test_security.xml and
  • ir.model.access.csv

security/test_security.xml file

<?xml version="1.0" encoding="utf-8"?>
<openerp>
    <data noupdate="0">
        <record model="ir.module.category" id="module_category_name_test">
            <field name="name">Management</field> 
            <field name="sequence">7</field>
        </record>

        <record id="group_name_test_user" model="res.groups">
            <field name="name">User</field>
            <field name="category_id" ref="module_category_name_test"/>
            <field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
        </record>

        <record id="group_name_test_manager" model="res.groups">
            <field name="name">Manager</field>
            <field name="category_id" ref="module_category_name_test"/>
            <field name="implied_ids" eval="[(4, ref('group_name_test_user'))]"/>
            <field name="users" eval="[(4, ref('base.user_root'))]"/>
        </record>
    </data>
</openerp>

After do this Management Option show with two selection value like User and Manager in setting => Users => Access Rights => Application

Now turn for security/ir.model.access.csv

id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
unique_id, test.name, model_test_name, group_name_test_user, 1,1,0,0
unique_id, test.name, model_test_name, group_name_test_manager, 1,1,1,1

test.name is a table name.

Example of csv file, how to create? Where

  • Fields => Value => Description

  • id => access_testing_for_user => id must be unique.

  • name => testing.for.user => name is given as we want.

  • model_id:id => model_test_name => model_id:id is given like model_our_class_name.

  • group_id:id => group_name_test_user => group_id:id is xml id of above we create like for User and Manager.

  • perm_read => 1 for True and 0 for False for read record.

  • perm_write => 1 for True and 0 for False for write record.

  • perm_create => 1 for True and 0 for False for create record.

  • perm_unlink => 1 for True and 0 for False for delete record.

NOTE

These two files .xml and .csv must be listed in __openerp__.py as other view files are given.




回答2:


The most significant area in Odoo/OpenERP is how to deal or manage users. Managing users and assigning groups or role is the key point in every business. In Odoo/OpenERP assigning role or group to the single user is made through Administrator. And its not a good practice to do so using login through admin and do some setting stuff like assigning groups to employee or users.

I found some useful resources about Access Control List and Security Groups in Odoo. Have a look.



来源:https://stackoverflow.com/questions/22368935/openerp-7-how-to-give-users-access-to-custom-module-in-openerp-7

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!