Book Image

Working with Odoo 11 - Third Edition

By : Greg Moss
Book Image

Working with Odoo 11 - Third Edition

By: Greg Moss

Overview of this book

Odoo is an all-in-one management software that offers an array of business applications, forming a complete suite of enterprise management applications. Odoo 11 comes with advances on usability, speed, and design. Working with Odoo 11 starts with how to set up Odoo, both online and on your own server. You’ll then configure the basic company settings required to quickly get your first Odoo system up and running. Later, you’ll explore customer relationship management in Odoo and its importance in a modern business environment. You'll then dive into purchasing applications with Odoo, learn some of the primary functionalities of ERP systems for manufacturing operations, and use analytic accounting to provide better reporting. After that, you'll learn how to work with Odoo for mobile, and finally, you will walk through the recent Odoo 11 features with respect to the community and enterprise edition, giving you a complete understanding of what Odoo can do for your business.
Table of Contents (18 chapters)

Troubleshooting your module installation

You won't be the first Odoo developer who created a module from scratch to not have it show up in the list of apps. There are a few things you can check if you don't see your application in the list.

First of all, it is always good to know how to check the logfile for errors in your Odoo installation. This is particularly important while you are developing an Odoo module. If you followed the standard Ubuntu Debian install, you can open the logfile and view it with the following command:

sudo nano /var/log/odoo/odoo-server.log

To demonstrate how this can be useful, we have modified the silkworm_view.xml file to contain a small error. When we attempt to install the module, we get an error that we can then view in the odoo-server.log:

When we look at the error log, we can see the XMLSyntaxError that was introduced by the error we...