search
Subscription
0
cart
close
You have no products in your basket yet
left
Tech Categories
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Best Sellers
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Best Sellers
New Releases
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
New Releases
Books
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Popular Books
Videos
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Popular Videos
Audiobooks
Tech Categories
Data Web Development Programming Cloud and Networking Security Game Development Mobile IoT and Hardware Business and Other
Popular Audiobooks
Articles
Newsletters
right
Odoo 15 Development Essentials - Fifth Edition

Odoo 15 Development Essentials: Enhance your Odoo development skills to create powerful business applications, Fifth Edition

By Daniel Reis
$37.99 $25.99
Book Feb 2022 548 pages 5th Edition
eBook
$37.99 $25.99
Print
$46.99
Subscription
$15.99 Monthly
eBook
$37.99 $25.99
Print
$46.99
Subscription
$15.99 Monthly

What do you get with eBook?

Feature icon Instant access to your Digital eBook purchase
Feature icon Download this book in EPUB and PDF formats
Feature icon Access this title in our online reader with advanced features
Feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Feb 25, 2022
Length 548 pages
Edition : 5th Edition
Language : English
ISBN-13 : 9781800200067
Vendor :
Odoo S.A
Category :
toc View table of contents toc Preview Book toc Download Code

Key benefits

  • Set up the Odoo development environment and learn how to test and debug your code
  • Use the ORM framework to work with data and implement business logic supporting business rules
  • Design user interfaces, web pages, and business reports using the Odoo framework's web components

Description

Odoo is fast becoming the reference open source platform for business applications thanks to the fact that it provides the infrastructure needed for developers to deliver software solutions for any business process quickly. Odoo's layered module approach makes it particularly effective for combining and extending features. This updated fifth edition is a tutorial-style introduction to essential Odoo development topics. The book starts by covering the development essentials for building business applications and takes you through Odoo installation and configuration, gradually transitioning from having no specific knowledge of Odoo to being ready for application development. You'll then learn how to develop your first Odoo application, while covering topics such as models and views. Later chapters will get you up to speed with using server APIs to add business logic, helping you lay a solid foundation for advanced topics. As you progress, you’ll get equipped to build and customize your applications and explore the new features available in Odoo 12 and beyond, such as in-memory ORM and computed writable fields. Finally, you’ll gain insights into building business logic and using the Odoo API to integrate with various applications. By the end of this book, you’ll be able to build business apps from scratch using the latest version of Odoo.

What you will learn

Install Odoo from source and organize the development environment Create your first Odoo app from scratch Understand the application components available in Odoo Structure the application’s data model using ORM features Use the ORM API to implement the business logic layer Design a graphical user interface (GUI) for the web client and website Use the Odoo External API to interface with external systems Deploy and maintain your application in production environments

What do you get with eBook?

Feature icon Instant access to your Digital eBook purchase
Feature icon Download this book in EPUB and PDF formats
Feature icon Access this title in our online reader with advanced features
Feature icon DRM FREE - Read whenever, wherever and however you want
Buy Now

Product Details


Publication date : Feb 25, 2022
Length 548 pages
Edition : 5th Edition
Language : English
ISBN-13 : 9781800200067
Vendor :
Odoo S.A
Category :

Table of Contents

22 Chapters
Preface Packt Packt
Preface
Who this book is for
What this book covers
To get the most out of this book
Download the example code files
Download the color images
Conventions used
Get in touch
Share Your Thoughts
Section 1: Introduction to Odoo Development Packt Packt
Section 1: Introduction to Odoo Development
Chapter 1: Quick Start Using the Developer Mode Packt Packt
Chapter 1: Quick Start Using the Developer Mode
Technical requirements
Introducing the to-do list project
Understanding basic Odoo concepts
Using an Odoo SaaS trial database
Installing Odoo in your workstation
Enabling the developer tools
Adding a custom field to a model
Creating a new model
Creating menu items and actions
Configuring access control security
Creating views
Summary
Chapter 2: Preparing the Development Environment Packt Packt
Chapter 2: Preparing the Development Environment
Technical requirements
Setting up a host for the Odoo server
Installing Odoo from source
Managing Odoo databases
Configuring the Odoo server options
Finding and installing additional modules
Using the server development options
Odoo commands quick reference
Summary
Chapter 3: Your First Odoo Application Packt Packt
Chapter 3: Your First Odoo Application
Technical requirements
Overview of the library project
Step 1 – Creating a new addon module
Step 2 – Creating a new application
Step 3 – Adding automated tests
Step 4 – Implementing the model layer
Step 5 – Setting up access security
Step 6 – Implementing the backend view layer
Step 7 – Implementing the business logic layer
Step 8 – Implementing the website UI
Quick reference
Summary
Chapter 4: Extending Modules Packt Packt
Chapter 4: Extending Modules
Technical requirements
Learning project – extending the Library app
Adding a new field to an existing model
Extending models using classic in-place extension
More model inheritance mechanisms
Extending views and data
Extending web pages
Summary
Further reading
Section 2: Models Packt Packt
Section 2: Models
Chapter 5: Importing, Exporting, and Module Data Packt Packt
Chapter 5: Importing, Exporting, and Module Data
Technical requirements
Understanding the external identifier concept
Exporting and importing CSV data files
Adding module data
Using XML data files
Summary
Further reading
Chapter 6: Models – Structuring the Application Data Packt Packt
Chapter 6: Models – Structuring the Application Data
Technical requirements
Learning project – improving the Library app
Creating models
Creating fields
Relationships between models
Computed fields
Model constraints
Overview of the Odoo base models
Summary
Further reading
Section 3: Business Logic Packt Packt
Section 3: Business Logic
Chapter 7: Recordsets – Working with Model Data Packt Packt
Chapter 7: Recordsets – Working with Model Data
Technical requirements
Using the shell command
The execution environment
Querying data with recordsets and domains
Accessing data in recordsets
Writing to records
Working with date and time fields
Working with recordsets
Transactions and low-level SQL
Summary
Further reading
Chapter 8: Business Logic – Supporting Business Processes Packt Packt
Chapter 8: Business Logic – Supporting Business Processes
Technical requirements
Learning project – the book checkout module
Exploring ways to trigger business logic
Understanding ORM method decorators for recordsets
Exploring useful data model patterns
Using the ORM built-in methods
Adding onchange user interface logic
The message and activity features
Creating a wizard
Raising exceptions
Writing unit tests
Using log messages
Learning about the available developer tools
Summary
Further reading
Chapter 9: External API – Integrating with Other Systems Packt Packt
Chapter 9: External API – Integrating with Other Systems
Technical requirements
Introducing the learning project – a client app to catalog books
Setting up Python on the client machine
Exploring the Odoo external API
Implementing the client app XML-RPC interface
Implementing the client app user interface
Using the OdooRPC library
Summary
Further reading
Section 4: Views Packt Packt
Section 4: Views
Chapter 10: Backend Views – Designing the User Interface Packt Packt
Chapter 10: Backend Views – Designing the User Interface
Technical requirements
Adding menu items
Understanding window actions
Adding options to the Action context menu
Exploring the form view structure
Using fields
Using buttons
Adding dynamic view elements
Exploring list views
Exploring search views
Understanding the other available view types
Summary
Further reading
Chapter 11: Kanban Views and Client-Side QWeb Packt Packt
Chapter 11: Kanban Views and Client-Side QWeb
Technical requirements
Introducing kanban boards
Designing kanban views
Designing kanban cards
Exploring the QWeb template language
Extending kanban views
Adding CSS and JavaScript assets
Summary
Further reading
Chapter 12: Creating Printable PDF Reports with Server-Side QWeb Packt Packt
Chapter 12: Creating Printable PDF Reports with Server-Side QWeb
Technical requirements
Installing wkhtmltopdf
Creating business reports
Designing report content
Creating custom reports
Further reading
Chapter 13: Creating Web and Portal Frontend Features Packt Packt
Chapter 13: Creating Web and Portal Frontend Features
Technical requirements
Introducing the library portal learning project
Creating a frontend web page
Understanding web controllers
Adding portal features
Summary
Further reading
Section 5: Deployment and Maintenance Packt Packt
Section 5: Deployment and Maintenance
Chapter 14: Understanding Odoo Built-In Models Packt Packt
Chapter 14: Understanding Odoo Built-In Models
Technical requirements
Understanding the contacts data model
Understanding the users and companies data model
Understanding the security-related information repository
Understanding the database structure models
Understanding the UI-related information repository
Understanding the configuration properties and company parameters
Understanding messaging data models
Summary
Chapter 15: Deploying and Maintaining Production Instances Packt Packt
Chapter 15: Deploying and Maintaining Production Instances
Technical requirements
Preparing the host system
Installing Odoo from source code
Configuring Odoo
Setting up Odoo as a system service
Setting up an Nginx reverse proxy
Configuring and enforcing HTTPS
Maintaining the Odoo service and modules
Summary
Further reading
Why subscribe?
Other Books You May Enjoy Packt Packt
Other Books You May Enjoy
Packt is searching for authors like you
Share Your Thoughts

Customer reviews

filter Filter
Rating distribution
star-icon star-icon star-icon star-icon star-icon 4.5
(2 Ratings)
5 star 50%
4 star 50%
3 star 0%
2 star 0%
1 star 0%
Viet Odoo Feb 19, 2024
star-icon star-icon star-icon star-icon star-icon 5
Feefo Verified review Feefo image
N/A Jan 24, 2024
star-icon star-icon star-icon star-icon star-icon 4
Feefo Verified review Feefo image
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? Packt Packt

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? Packt Packt

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? Packt Packt
  • 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? Packt Packt

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? Packt Packt
  • 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? Packt Packt

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.