In this article you will learn what is a model and how to create a brand new model in Odoo. Before creating our first model in odoo, we need to know about model.
What is Model in Odoo
A model is a python class that represent business entity (fields) that are stored in PostgreSQL database. In odoo all business entities are implemented as model or class.
Read More: How to Inherit Existing Model in Odoo
Model fields (class property) are defined as attributes or column or fields in a database.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from openerp import models, fields | |
class AModel(models.Model): | |
_name = 'your.model.name' | |
name = fields.Char(string="Department Name", required=True) | |
is_test = fields.Boolean(string="Test Boolean Field") | |
amount = fields.Float(string="Amount") | |
Counter = fields.Integer(string="Counter") | |
many2one_id = fields.Many2one('your.model.name', string="Many2One", required=True) | |
cc_detail = fields.Text(stirng="CC Detail") | |
image = fields.Binary(string="Upload Image") | |
In the above code we have created a class named "AModel" and the name of model (table) is your..model.name. In this table we have many fields or columns such as name, image, counter etc. In simple words when we create fields in models, actually we create table and its fields or columns.
0 Comments