Book Image

Odoo Development Cookbook

By : Holger Brunn, Alexandre Fayolle, Daniel Reis
Book Image

Odoo Development Cookbook

By: Holger Brunn, Alexandre Fayolle, Daniel Reis

Overview of this book

Odoo is a full-featured open source ERP with a focus on extensibility. The flexibility and sustainability of open source is also a key selling point of Odoo. It is built on a powerful framework for rapid application development, both for back-end applications and front-end websites. The book starts by covering Odoo installation and administration, and provides a gentle introduction to application development. It then dives deep into several of the areas that an experienced developer will need to use. You’ll learn implement business logic, adapt the UI, and extend existing features.
Table of Contents (23 chapters)
Odoo Development Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

QWeb reports


The last part of the presentation layer is printing out reports. In case you haven't till now, install wkhtmltopdf as described in Chapter 1, Installing the Odoo Development Environment otherwise you won't get shiny PDFs as result of your efforts.

Getting ready

The conversion mechanism to PDFs is implemented in the addon report, so you should add it as dependency of your addon. Also double check that the configuration parameter web.base.url (or alternatively, report.url) is a URL accessible from your Odoo instance, otherwise report generation takes ages and the result looks funny.

How to do it...

  1. Define a view for your report:

    <template id="qweb_res_partner_birthdays">
      <t t-call="report.html_container">
        <t t-call="report.internal_layout">
          <div class="page">
            <h2>Partner's birthdays</h2>
            <div t-foreach="docs" t-as="o" class="row mt4 mb4">
              <div class="col-md-6"><t t-esc="o.name" /></div&gt...