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

Introduction


In Chapter 1, Installing the Odoo Development Environment, we have seen how to set up an Odoo instance using only the standard "core" addons, which are shipped by the editor. This chapter focuses on adding noncore addons to an Odoo instance, be it your own addons, or third-party addons such as the ones maintained by the Odoo Community Association (OCA).

Note

About the terminology – addon versus module

In this book, we will use the term addon or addon module to refer to a Python package that respects the expected format to be installed in Odoo. The user interface often uses the word module for this, but we prefer keeping this term for Python modules or packages that are not necessarily Odoo addons.