Book Image

Odoo Development Cookbook

By : Holger Brunn, Alexandre Fayolle, Daniel Reis
Book Image

Odoo Development Cookbook

By: Holger Brunn, Alexandre Fayolle, Daniel Reis

Overview of this book

Odoo is a full-featured open source ERP with a focus on extensibility. The flexibility and sustainability of open source is also a key selling point of Odoo. It is built on a powerful framework for rapid application development, both for back-end applications and front-end websites. The book starts by covering Odoo installation and administration, and provides a gentle introduction to application development. It then dives deep into several of the areas that an experienced developer will need to use. You’ll learn implement business logic, adapt the UI, and extend existing features.
Table of Contents (23 chapters)
Odoo Development Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Activating the Odoo developer tools


When using Odoo as a developer, you need to know how to activate Developer Mode in the web interface to access the advanced settings menu and developer information.

How to do it...

To activate Developer Mode in the web interface:

  1. Connect to your instance and authenticate (not necessarily as admin; this function is available to all users, but the Administrator has more tools available).

  2. Click on the down arrow next to your user name in the top right corner of the page .

  3. In the drop-down menu, click on About.

  4. In the dialog box which is displayed, click on Activate the developer mode in the top right corner.

    Note

    It is also possible to activate the developer mode by editing the URL: before the # sign, insert ?debug=. For instance, if you are starting from: http://localhost:8069/web#menu_id=102&action=94, then you need to change this to: http://localhost:8069/web?debug=#menu_id=102&action=94.

  5. To exit developer mode, you can edit the URL and remove that string, close your browser tab and open a new one, or use the Leave Debug Mode option at the bottom of the debug drop-down menu next to the user menu in the top right of the screen.

How it works...

When in developer mode, three things happen:

  • The JavaScript and CSS code sent to the browser is not minified, which means that the web development tools of your browser are easy to use for debugging the JavaScript code (more on this in Chapter 15, Web Client Development).

  • You get tooltips when hovering over a field in a form view or over a column in list view providing technical information about the field (internal name, type, and so on).

  • A drop-down menu with a Bug icon is displayed next to the user's menu in the top right corner giving access to technical information about the model being displayed, the various related view definitions, the workflow, custom filter management, and so on.

Note

Caution!

Test your addons both with and without developer mode, as the unminified versions of the JavaScript libraries can hide bugs which only bite you in the minified version.