- Odoo Development Cookbook
- Holger Brunn Alexandre Fayolle Daniel Reis
- 280字
- 2021-07-16 11:00:30
Updating the addon modules list
As we said in the previous recipe, when you add a directory to the addons path, just restarting the Odoo server is not enough to be able to install one of the new addon modules. A specific action is required for Odoo to scan the addons path and update the list of available addon modules.
Getting ready
Start your instance, and connect to the instance using the Administrator account and activate the developer mode (see Chapter 1, Installing the Odoo Development Environment).
How to do it…
To update the list of available addon modules in your instance, you need to perform the following steps:
- Open the Apps menu:
- Click on Update Apps List:
- In the dialog, click on the Update button.
- At the end of the update, you can click on the first Apps entry to see the updated list of available addon modules. You will need to remove the default filter on Apps in the search box to see all of them.
How it works…
When the Update button is clicked on, Odoo will read the addons path configuration variable, and for each directory in the list, it will look for immediate subdirectories containing an addon manifest file, which is a file named __openerp__.py
, stored in the addon module directory. Odoo reads the manifest expecting to find a Python dictionary. Unless the manifest contains a key installable
set to False
, the addon module metadata is recorded in the database. If the module was already present, the information is updated; otherwise, a new record is created. If a previously available addon module is not found, the record is not deleted from the list.
- Spring Boot 2實戰之旅
- TypeScript Essentials
- OpenDaylight Cookbook
- iOS 9 Game Development Essentials
- CentOS 7 Linux Server Cookbook(Second Edition)
- 神經網絡編程實戰:Java語言實現(原書第2版)
- PHP+MySQL網站開發技術項目式教程(第2版)
- 機器人Python青少年編程開發實例
- SSM輕量級框架應用實戰
- 算法訓練營:提高篇(全彩版)
- 一塊面包板玩轉Arduino編程
- Mastering Linux Security and Hardening
- Visual Studio 2015高級編程(第6版)
- Learning Node.js for .NET Developers
- FFmpeg開發實戰:從零基礎到短視頻上線