Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Defining the data model

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

    If you want to make data model in OpenERP(Odoo) follow the below mentioned code and paste it in your model.py file:

    1. session_ids = fields.One2many(
    2. 'openacademy.session', 'course_id', string="Sessions")
    3.  
    4. @api.multi
    5. def copy(self, default=None):
    6. default = dict(default or {})
    7.  
    8. copied_count = self.search_count(
    9. [('name', '=like', u"Copy of {}%".format(self.name))])
    10. if not copied_count:
    11. new_name = u"Copy of {}".format(self.name)
    12. else:
    13. new_name = u"Copy of {} ({})".format(self.name, copied_count)
    14.  
    15. default['name'] = new_name
    16. return super(Course, self).copy(default)
    17.  
    18. _sql_constraints = [
    19. ('name_description_check',
    20. 'CHECK(name != description)',

 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: