Menu Project, Tasks provides a button for Kanban view, and even defaults to the Kanban view.
The Tasks link from the Projects page goes to a Search:Tasks page that does not have a button for Kanban view. How do I add a Kanban button here?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Menu Project, Tasks provides a button for Kanban view, and even defaults to the Kanban view.
The Tasks link from the Projects page goes to a Search:Tasks page that does not have a button for Kanban view. How do I add a Kanban button here?
I recently added a kanban view for manufacturing orders. To make kanban button display I needed to added kanban on this action menu:
<record id="mrp_production_action" model="ir.actions.act_window">
<field name="name">Manufacturing Orders</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">mrp.production</field>
<field name="view_type">form</field>
<field name="view_mode">kanban,tree,form,calendar,graph,gantt</field>
.....
</record>
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
Registrarse| Publicaciones relacionadas | Respuestas | Vistas | Actividad | |
|---|---|---|---|---|
|
0
nov 25
|
10 | |||
|
1
jun 24
|
4208 | |||
|
Domain one2many field?
Resuelto
|
5
jun 23
|
36849 | ||
|
1
dic 23
|
20550 | |||
|
1
jul 15
|
6147 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
I wonder how I would go about finding the answer in the source code?