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>
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrire| Publications associées | Réponses | Vues | Activité | |
|---|---|---|---|---|
|
0
nov. 25
|
10 | |||
|
1
juin 24
|
4208 | |||
|
Domain one2many field?
Résolu
|
5
juin 23
|
36847 | ||
|
1
déc. 23
|
20549 | |||
|
1
juil. 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?