How to write a module in Odoo
How to write a module in Odoo
Odoo is a powerful open-source ERP system that allows developers to create custom modules to extend its functionality. In this tutorial, we will guide you through the process of creating a custom module in Odoo, including the necessary files and structure.
We will create a simple module that adds a new model to Odoo. This module will be named my_module
and will contain a model called my_model
with a few fields.
Prerequisites
Before we start, make sure you have the following prerequisites installed on your system:
- Odoo (version 14 or later)
- Python 3.6 or later
- PostgreSQL
- Basic knowledge of Python and Odoo development
Step 1: Create the Module Directory Structure
First, we need to create the directory structure for our module. Navigate to the Odoo addons directory and create a new folder for your module:
1 | cd /path/to/odoo/addons |
Now, create the following directory structure inside my_module
:
1 | mkdir -p models views security data |
This structure will hold our Python models, XML views, security rules, and data files.
Step 2: Create the Manifest File
The manifest file is a Python file named __manifest__.py
that contains metadata about your module. Create this file in the my_module
directory:
1 | touch __manifest__.py |
Open the __manifest__.py
file and add the following content:
1 | { |
This file contains information about the module, such as its name, version, dependencies, and data files to load. Make sure to replace Your Name
and https://yourwebsite.com
with your actual name and website.
Step 3: Create the Model
Next, we will create a new model in Odoo. Create a new Python file named my_model.py
inside the models
directory:
1 | touch models/my_model.py |
Open the my_model.py
file and add the following content:
1 | from odoo import models, fields, api |
This code defines a new model called my.model
with four fields: name
, description
, date_created
, and active
. The @api.constrains
decorator is used to enforce a constraint on the name
field, ensuring it cannot be empty.
Step 4: Create the Views
Next, we will create the XML views for our model. Create a new XML file named my_model_views.xml
inside the views
directory:
1 | touch views/my_model_views.xml |
Open the my_model_views.xml
file and add the following content:
1 |
|
This XML file defines the tree and form views for our model, as well as an action to open the model and a menu item to access it. The parent
attribute in the menuitem
tag specifies the parent menu under which this menu item will be displayed. You can change base.menu_custom
to any existing menu ID in your Odoo instance.
Step 5: Create Security Rules
To allow users to access our model, we need to create security rules. Create a new CSV file named ir.model.access.csv
inside the security
directory:
1 | touch security/ir.model.access.csv |
Open the ir.model.access.csv
file and add the following content:
1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink |
This CSV file defines access rights for our model. The perm_read
, perm_write
, perm_create
, and perm_unlink
columns specify the permissions for reading, writing, creating, and deleting records, respectively. In this case, we are granting all permissions to the model.
Step 6: Create Sample Data (Optional)
If you want to create some sample data for your model, you can create a new XML file named my_model_data.xml
inside the data
directory:
1 | touch data/my_model_data.xml |
Open the my_model_data.xml
file and add the following content:
1 |
|
This XML file creates two sample records for our model. The noupdate="1"
attribute indicates that this data should not be updated if the module is installed again.
Step 7: Install the Module
Now that we have created all the necessary files, we can install our module. Start your Odoo server and navigate to the Apps menu in the Odoo interface. Click on the “Update Apps List” button to refresh the list of available modules.
Once the list is updated, search for “My Module” and click on the “Install” button to install it.
Step 8: Test the Module
After installing the module, you should see a new menu item called “My Model” in the Odoo interface. Click on it to access the model’s tree view. You can create new records, edit existing ones, and test the functionality of your module.
You can also check the form view by clicking on any record in the tree view. The form view should display the fields we defined in the model.
Conclusion
In this tutorial, we have created a simple custom module in Odoo that adds a new model with a few fields and views. We also defined security rules and created sample data for the model. This is just a basic example, and you can extend the functionality of your module by adding more features, such as workflows, reports, and custom business logic.
Feel free to explore the Odoo documentation and community resources to learn more about Odoo development and best practices. Happy coding!