Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to create a model in OpenERP/Odoo ?

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 160
    Comment on it

    If you want to create a model in OpenERP use like below code -

    1. from openerp.osv import fields, osv
    2. class course(osv.osv):
    3. _name='course'
    4. _columns= {
    5. 'name':fields.char("Name",size=128,domain=[('name', '=',2)]),
    6. 'gender':fields.boolean('Male'),
    7. 'description':fields.char("description",size=200),
    8. 'persons_id':fields.many2one('res.users' ,'person'),
    9. 'session':fields.one2many('session' ,'course','Session'),
    10. "qualification" : fields.selection([('a1','Undergraduate X'),('a2','Graduate'),('a3','Post Graduate')],"Education Qualification"),
    11. "termination1" : fields.many2one('hr.role1',' Termination'),
    12. }

 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: