Book Image

Odoo 10 Implementation Cookbook

By : Mantavya Gajjar
Book Image

Odoo 10 Implementation Cookbook

By: Mantavya Gajjar

Overview of this book

Odoo is a Python-based ERP system and is completely open source. Odoo is a comprehensive suite of business applications offering a wealth of functionalities that can be deployed to meet your business needs. This book will help you manage the different functionalities of your business and optimize it. You will learn in detail about the various facets of the business process such as sales, accounting, purchases, manufacturing, and inventory. We will cover each of these topics in detail and learn how Odoo handles all these tasks with much ease. With its modular approach, you will be able to build customized solutions, take advantage of the Odoo 10 system in your organization, and master basic administration. We will cover modules and applications in Odoo that will help optimize quality checks. You will also be able to customize major reporting functions for your teams and set up forms and documents for sales, purchase, inventory, and so on. By the end of the book, you will be able to use the major functionalities of Odoo 10 and fully implement them into your business.
Table of Contents (23 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Exporting and importing a custom application


Once you implement the application on the duplicated database, you are ready to move those settings and customizations to the production database.

How to do it...

  1. Go to the home page of your instance, enter studio mode, and click on the Export menu in the upper-left Customization menu. Look at the following screenshot:

Odoo will create a new application by incorporating all the changes in a structured way so that it can be loaded on the destination instance like other Odoo applications.

The download will begin once the module creation is completed by Odoo. The default filename will be customization.zip:

All customization is exported in the form of XML files including Python code, if you write for the computed fields.

  1. Change a few things before you import this customization to a production instance. Extract the customization.zip file, open the __manifest__.py file, and change the value of name and description to make it a realistic module. Change the...