Tag: Tutorial
Float and Monetary Fields in Odoo
Store decimals with Float; use Monetary with a currency field for money.
Boolean and Selection Fields in Odoo
Use Boolean for flags and Selection for fixed choice lists.
Date and Datetime Fields in Odoo
Store calendar dates with Date and timestamps with Datetime (UTC in DB).
Odoo Module Structure
Organize models, views, security, data, wizards, controllers, and static assets.
Odoo Manifest File
Declare module metadata, dependencies, data files, and assets in __manifest__.py.
Models in Odoo
Define business objects by inheriting models.Model (or TransientModel/AbstractModel).
Char, Text and Integer Fields in Odoo
Use Char for short strings, Text for long text, Integer for whole numbers.