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

Show kanban cards in columns according to their state


This recipe shows you how to setup a kanban view where the user can drag and drop a record from one column to the other, thereby pushing the record in question into another state.

Getting ready

Now and in the rest of this chapter, we'll make use of the project module here as it defines models that lend themselves better to date and state based views than the ones defined in the base module. So before proceeding, add project to the dependencies list of your addon.

How to do it...

  1. Define a kanban view for tasks:

    <record id="kanban_tasks" model="ir.ui.view">
        <field name="model">project.task</field>
        <field name="arch" type="xml">
            <kanban default_group_by="stage_id">
                <field name="stage_id" />
                <field name="name" />
                <templates>
                    <t t-name="kanban-box">
                        <div class="oe_kanban_card">
                        ...