Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to make profile module in OpenERP(Odoo)?

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 152
    Comment on it

    In profile module we have to create a profile, we only have to create a new directory in server/addons and we should call this folder.
    profile_module name, in which we put an empty __init__.py file (as every directory Python imports must contain .py file like in below code

    1. __init__.py file), and a __terp__.py
    2. {
    3. "name":"Name of the Profile,
    4. "version":"Version String",
    5. "author":"Author Name",
    6. "category":"Profile",
    7. "depends":[List of the modules to install with the profile],
    8. "demo_xml":[],
    9. "update_xml":[],
    10. "active":False,
    11. "installable":True,
    12. }

    "name":"Manufacturing industry profile",
    "version":"1.0",
    "author":"Open",
    "category":"Profile",
    "depends":["mrp", "crm", "sale", "delivery"],

    Note- With the help of this code we will make profile module .

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: