Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Odoo 11 Development Cookbook - Second Edition
Odoo 11 Development Cookbook - Second Edition

Odoo 11 Development Cookbook - Second Edition: Over 120 unique recipes to build effective enterprise and business applications , Second Edition

eBook
$9.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Odoo 11 Development Cookbook - Second Edition

Managing Odoo Server Instances

In this chapter, we will learn the following recipes:

  • Configuring the addons path
  • Updating the addon modules list
  • Standardizing your instance directory layout
  • Installing and upgrading local addon modules
  • Installing addon modules from GitHub
  • Applying changes to addons
  • Applying and trying proposed pull requests

Introduction

In Chapter 1, Installing the Odoo Development Environment, we saw 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).

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 words app or module for this, but we prefer keeping the term module for Python modules or packages that are not necessarily Odoo addons, and app for addon modules that are properly defined as applications, that is, have an entry in the main menu of Odoo.
...

Configuring the addons path

The addons path is a configuration parameter that lists the directories, which will be searched for addon modules by Odoo when it initializes a new database.

Directories listed in the addons path are expected to contain subdirectories, each of which is an addon module.

Getting ready

This recipe assumes that you have an instance ready, with a configuration file generated as described in Chapter 1, Installing the Odoo Development Environment. The source code of Odoo is available in ~/odoo-dev/odoo, and the configuration file is in
~/odoo-dev/my-instance.cfg.

How to do it…

...

Updating the addon modules list

As we said in the preceding 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 the available addon modules.

Getting ready

Start your instance and connect to the instance using the Administrator account and activate the developer mode (refer to Chapter 1, Installing the Odoo Development Environment).

How to do it…

To update the list of the available...

Standardizing your instance directory layout

We recommend that your development and production environments all use a similar directory layout. This standardization will prove helpful when you have to perform maintenance operations, and it will also ease your day-to-day work.

This recipe creates a directory structure that groups files having similar life cycles or similar purpose together in standardized subdirectories. Feel free to alter this structure to suit your needs, but ensure that you have this documented somewhere.

How to do it…

To create the proposed instance layout, you need to perform the following steps:

  1. Create one directory per instance:
$ mkdir ~/odoo-dev/projectname
$ cd ~/odoo-dev/projectname
  1. Create...

Installing and upgrading local addon modules

The core of the functionality of Odoo comes from the addon modules. You have a wealth of addons available as part of Odoo itself as well as addon modules that you can download from the internet or write yourself.

In this recipe, we will show how to install and upgrade addon modules through the web interface and from the command line.

The main benefits of using the command line for these operations are being able to act on more than one addon at a time and having a clear view of the server logs as the installation or update progresses, which is very useful when in the development mode or when scripting the installation of an instance.

Getting ready

You have an Odoo instance with...

Installing addon modules from GitHub

GitHub is a great source of third-party addons. A lot of Odoo partners use GitHub to share the addons they maintain internally, and the Odoo Community Association (OCA) collectively maintains several hundreds of addons on GitHub. Before starting to write your own addon, ensure that you check that nothing already exists that you can use as is or as a starting point.

This recipe will show you how to clone the partner-contact project of the OCA from GitHub and make the addon modules it contains available in your instance.

Getting ready

Suppose you want to change the way addresses are handled in your instance; your customer needs a third field in addition to Odoo's two fields (street and...

Applying changes to addons

Most addons available on GitHub are subject to change and do not follow the rules that Odoo enforces for its stable release. They may receive bug fixes or enhancements, including issues or feature requests that you submitted, and these changes may introduce database schema changes or updates in the data files and views. This recipe explains how to install the updated versions.

Getting ready

Suppose you reported an issue with partner_address_street3 and received a notification that the issue was solved in the last revision of the 11.0 branch of the partner-contact project; you will want to update your instance with this latest version.

...

Applying and trying proposed pull requests

In the GitHub world, a Pull Request (PR) is a request made by a developer for the maintainers of a project to include some new developments. Such a PR may contain a bug fix or a new feature. These requests are reviewed and tested before being pulled in the main branch.

This recipe explains how to apply a PR to your Odoo project in order to test an improvement or a bug fix.

Getting ready

As in the previous recipe, suppose you reported an issue with partner_address_street3 and received a notification that the issue was solved in a pull request, which is not yet merged in the 11.0 branch of the project. The developer asks you to validate the fix in PR #123. You need to update a test...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • •Get the most up-to-date guide on Odoo 11 to create custom and reusable modules
  • •Interconnect your application with other systems by implementing web APIs
  • •Understand the mechanisms powering the Odoo framework to build robust enterprises

Description

Odoo is a full-featured open source ERP with a focus on extensibility. The flexibility and sustainability of open source are 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. Version 11 offers better usability and speed: a new design (as compared to the current Odoo Enterprise version) and a mobile interface. The book starts by covering Odoo installation and administration and Odoo Server deployment. It then delves into the implementation of Odoo modules, the different inheritance models available in Odoo. You will then learn how to define access rules for your data; how to make your application available in different languages; how to expose your data models to end users on the back end and on the front end; and how to create beautiful PDF versions of your data. By the end of the book, you will have a thorough knowledge of Odoo and will be able to build effective applications by applying Odoo development best practices

Who is this book for?

If you're a Python developer and want to develop highly efficient business applications with the latest Odoo framework (or if you just want a hands on problem solution book for all your Odoo Development related issues), this book is for you! Some experience with the JavaScript programming language and web development is required to get the most out of this book.

What you will learn

  • • Install and manage Odoo environments and instances
  • • Use models to define your application s data structures
  • • Add business logic to your applications
  • • Add automated tests and learn how to debug Odoo apps
  • • Learn about the access security model and internationalization features
  • • Customize websites built with Odoo, by writing your own templates and providing new snippets for use in the website builder
  • • Extend the web client with new widgets and make RPC calls to the server

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jan 22, 2018
Length: 470 pages
Edition : 2nd
Language : English
ISBN-13 : 9781788476966
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Jan 22, 2018
Length: 470 pages
Edition : 2nd
Language : English
ISBN-13 : 9781788476966
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 158.97
Odoo 11 Development Cookbook - Second Edition
$54.99
Working with Odoo 11
$54.99
Odoo 11 Development Essentials
$48.99
Total $ 158.97 Stars icon
Banner background image

Table of Contents

17 Chapters
Installing the Odoo Development Environment Chevron down icon Chevron up icon
Managing Odoo Server Instances Chevron down icon Chevron up icon
Server Deployment Chevron down icon Chevron up icon
Creating Odoo Addon Modules Chevron down icon Chevron up icon
Application Models Chevron down icon Chevron up icon
Basic Server-Side Development Chevron down icon Chevron up icon
Module Data Chevron down icon Chevron up icon
Debugging and Automated Testing Chevron down icon Chevron up icon
Advanced Server-Side Development Techniques Chevron down icon Chevron up icon
Backend Views Chevron down icon Chevron up icon
Access Security Chevron down icon Chevron up icon
Internationalization Chevron down icon Chevron up icon
Automation, Workflows, Emails, and Printouts Chevron down icon Chevron up icon
Web Server Development Chevron down icon Chevron up icon
Web Client Development Chevron down icon Chevron up icon
CMS Website Development Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7
(3 Ratings)
5 star 0%
4 star 33.3%
3 star 33.3%
2 star 0%
1 star 33.3%
Ravi Bhattarai Jan 15, 2018
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
The last edition was a great read and hope this edition will be even better and helpful in development.
Amazon Verified review Amazon
Leomar Apr 08, 2018
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
Every point touched in the book is explained well with incremental, practical and concise recipes...Was thinking to give 4 even 5 starts, yet for the price of the book one would have expected some point of sales recipes.POS is a very important Odoo application, specially for retail or small business, yet so many people neglect or give for granted in many ways. I will never understand why.You can see it's very important to me, hence -2 starts.
Amazon Verified review Amazon
Chris May 10, 2018
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
Leider ist das Format total zerrissen und als Kindleversion nicht verwendbar.Es sind pro Zeile teilweise nur einzelne Buchstaben zu sehen.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.