Hi , is there any solution available or any idea how i can add attachment button in Kanban view.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
2
回复
1865
查看
Finally done. I had to work on window action and menu item.
Can you specify further?
@Ricaordo Gross
XML
-------------------
PYTHON
--------------
def return_action_to_open(self, context=None):
action_id = self.env.ref(context.get('action'))
return {
'name': action_id.name,
'type': action_id.type,
'view_mode': 'form',
'res_model': action_id.res_model,
'target': 'new',
'domain': [],
'context': {
}
}