Book Image

Working with OpenERP

By : Greg Moss
Book Image

Working with OpenERP

By: Greg Moss

Overview of this book

<p>OpenERP continues to gain momentum throughout the world in providing the best platform for open source ERP installations. This book covers all the essential modules and how to get the power of OpenERP to work for you.</p> <p>"Working with OpenERP" provides a real-world business solution approach to integrating OpenERP into your small or medium sized business. This book begins by walking you through how to install OpenERP on a Windows or Ubuntu server then takes you through all the essential modules you will need to get OpenERP up and running for your company.</p> <p>All through the book, "Working with OpenERP" provides real-world examples in sales, customer relationship management (CRM), purchasing, manufacturing, human resources, and financial accounting. After covering the basics, you will learn how to customize various methods to configure OpenERP for your business and even build your own custom modules.</p> <p>"Working with OpenERP" covers all the basics of installing and using OpenERP along with advanced real-world examples you will not find anywhere else.</p>
Table of Contents (21 chapters)
Working with OpenERP
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Building our first OpenERP module


One of the best features of the OpenERP framework is that we can extend OpenERP and write our own modules without having to modify any of the OpenERP source code. Instead, the changes we make are all contained in their own directory and within their own files.

The primary advantage to this point is that when OpenERP modifies their source code with patches or bug fixes, we do not have to worry about our changes getting overwritten. Also, while we may still need to modify our code if OpenERP makes a dramatic change to their source code, there is a reasonable chance the changes required will be minimal.

Tip

Like in other areas of OpenERP development, make frequent backups of your databases. Some of the examples we will show make changes to the database that can be difficult to undo.

Each module in OpenERP has basic requirements for it to be properly recognized by the OpenERP framework and installed. Once we successfully install our module, the framework will then...