Book Image

Learn Odoo

By : Greg Moss
Book Image

Learn Odoo

By: Greg Moss

Overview of this book

Odoo is management software that contains a set of open source enterprise management applications that help you modernize your business. Completely revised and updated, this comprehensive Odoo guide is a fourth edition of Working with Odoo. This book begins with an introduction to Odoo and helps you set up Odoo Online in your system. You'll learn how to start a new company database in Odoo and the basics of Odoo sales management. You will explore customer relationship management in Odoo and its importance in a modern business environment. Moving on, you'll learn how to install the purchasing application, set up suppliers, and begin purchasing and receiving products in Odoo. Next, you'll learn how to use the MRP module to create, process, and schedule the manufacturing and production order. Once you get to grips with the basic applications, you'll uncover how to customize Odoo to meet the specific needs of your business. You'll learn some advanced techniques for searching and finding information, and you'll be taken through business intelligence in Odoo. Towards the end of the book, you'll go in-depth into Odoo's architecture and learn to use Odoo's API to integrate with other applications. By the end of the book, you'll be ready to use Odoo to build enterprise applications and set up the functional requirements for your business.
Table of Contents (19 chapters)

To get the most out of this book

This book is based on the most stable version of Odoo, that is, Odoo 12. You should have Odoo version 12 installed on your system. It can be downloaded from https://github.com/odoo/odoo. Most often, it is installed in VMware or in the cloud, such as with AWS:

Once Odoo is installed, no other software installation is required for the book.

To get the most out of this book, you should understand basic business operations. For example, you should know the purpose of a sales order and a purchase order. You should also have basic computing skills and be able to understand filesystems and install the software. For the more advanced customization topics in the book, you should have basic knowledge of databases and programming concepts.

Download the color images

Conventions used

There are a number of text conventions used throughout this book.

CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "First, we define Orders to give us access to the sale.order model."

A block of code is set as follows:

daterequired = fields.Date('Date Required', required=True) 
rush = fields.Boolean('Rush Order')

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

from odoo import http 

class Webrushorders(http.Controller):

@http.route('/orders/rush/', auth='public')
def index(self, **kw):

Any command-line input or output is written as follows:

cd /usr/lib/python3/dist-packages/odoo/addons

Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Using the quick Create and Edit... option, you can add your finished products directly when creating a manufacturing order."

Warnings or important notes appear like this.
Tips and tricks appear like this.