Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

create new model description odoo

from odoo import models

class TestModel(models.Model):
    _name = "test.model"
    rder = "sequence"

    name = fields.Char('Plan Name', required=True, translate=True)
    number_of_months = fields.Integer('# Months', required=True)
    active = fields.Boolean('Active', default=True)
    sequence = fields.Integer('Sequence', default=10)

    _sql_constraints = [
        ('check_number_of_months', 'CHECK(number_of_months >= 0)', 'The number of month can't be negative.'),
    ]
 
PREVIOUS NEXT
Tagged: #create #model #description #odoo
ADD COMMENT
Topic
Name
8+3 =