Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
Help Me In Postgresql To Make New Realtions With Another Tables ?
Hi All
I Want Help Here Please I Want To Create Module And Want To Create my Own Users To Use This Module So I Want To Know The Best Way to Do That If Any One Can Help Me Please Put Your Answer
Create a new folder in your module called security. Add 2 files ir.model.access.csv and an xml file with any name. (here : student_security.xml ). Specify these files in the update xml portion in the __openerp__.py file of the module as :
'update_xml': ["security/student_security.xml",
"security/ir.model.access.csv",
............other files in the module...................
]
in the xml file you can create groups for users. For eg:
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="group_student" context="{'noadmin':'True'}" model="res.groups">
<field name="name">Student</field>
</record>
</data>
</openerp>
After upgrading the module This creates a group Student. Now you can add any user that you create or an existing user to this group via the client. Settings/users/users/Access rights. . you will be able to see your created group as a boolen field in the section "Other" Then you can set the permissions for this group in the ir.model.access.csv file. An example for this file would be there in the module sale/security. you can refere that.
Thanks A lot For Effort But Still Unknown to Me I Need Clear Example Subhin
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 11/7/13, 4:24 PM |
Seen: 1244 times |
Last updated: 3/16/15, 8:10 AM |