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>
Create an account today to enjoy exclusive features and engage with our awesome community!
Registrácia| Related Posts | Replies | Zobrazenia | Aktivita | |
|---|---|---|---|---|
|
0
nov 25
|
10 | |||
|
1
jún 24
|
4208 | |||
|
Domain one2many field?
Solved
|
5
jún 23
|
36847 | ||
|
1
dec 23
|
20549 | |||
|
1
júl 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?