- Odoo Development Cookbook
- Holger Brunn Alexandre Fayolle Daniel Reis
- 589字
- 2021-07-16 11:00:31
Creating and installing a new addon module
In this recipe, we will create a new module, make it available in our Odoo instance, and install it.
Getting ready
We will need an Odoo instance ready to use.
If the first recipe in Chapter 1, Installing the Odoo Development Environment, was followed, Odoo should be available at ~/odoo-dev/odoo
. For explanation purposes, we will assume this location for Odoo, although any other location of your preference could be used.
We will also need a location for our Odoo modules. For the purpose of this recipe, we will use a local-addons
directory alongside the odoo
directory, at ~/odoo-dev/local-addons
.
How to do it…
The following steps will create and install a new addon module:
- Change the working directory in which we will work and create the addons directory where our custom module will be placed:
$ cd ~/odoo-dev $ mkdir local-addons
- Choose a technical name for the new module and create a directory with that name for the module. For our example we will use my_module:
$ mkdir local-addons/my_module
- Make the Python module importable by adding an
__init__.py
file:$ touch local-addons/my_module/__init__.py
- Add a minimal module manifest, for Odoo to detect it. Create an
__openerp__.py
file with this line:{'name': 'My module'}
- Start your Odoo instance including our module directory in the addons path:
$ odoo/odoo.py --addons-path=odoo/addons/,local-addons/
- Make the new module available in your Odoo instance; log in to Odoo using
admin
, enable the Developer Mode in the About box, and in the Apps top menu select Update Apps List. Now Odoo should know about our Odoo module. - Select the Apps menu at the top and, in the search bar in the top right, delete the default Apps filter and search for
my_module
. Click on its Install button and the installation will be concluded.
How it works…
An Odoo module is a directory containing code files and other assets. The directory name used is the module's technical name. The name
key in the module manifest is its title.
The __openerp__.py
file is the module manifest. It contains a Python dictionary with information about the module, the modules it depends on, and the data files that it will load.
In the example, a minimal manifest file was used, but in real modules, we will want to add a few other important keys. These are discussed in the next recipe, Completing the module manifest.
The module directory must be Python-importable, so it also needs to have an __init__.py
file, even if it's empty. To load a module, the Odoo server will import it. This will cause the code in the __init__.py
file to be executed, so it works as an entry point to run the module Python code. Because of this, it will usually contain import statements to load the module Python files and submodules.
Modules can be installed directly from the command line using the --init
, or -i
, option. In the past, we had to use the Update Module List to make it available to the Odoo instance. However, at this moment, this is done automatically when the --init or --update are used from the command line.
- Spring Boot開發與測試實戰
- Mastering Adobe Captivate 2017(Fourth Edition)
- Apache Hive Essentials
- x86匯編語言:從實模式到保護模式(第2版)
- 編寫高質量代碼:改善C程序代碼的125個建議
- Access 2010數據庫基礎與應用項目式教程(第3版)
- Julia Cookbook
- 零基礎學Java程序設計
- Kali Linux Wireless Penetration Testing Beginner's Guide(Third Edition)
- 批調度與網絡問題的組合算法
- The Professional ScrumMaster’s Handbook
- R語言:邁向大數據之路(加強版)
- Deep Learning with R Cookbook
- C++從入門到精通(第6版)
- Android高級開發實戰:UI、NDK與安全