April 2016
Beginner to intermediate
400 pages
9h 16m
English
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.
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.
<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 ...