I need to add a button in each row of a report. That i need to see some data while clicking on the button. The data will be change according to the value of the report line with some conditions.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
1
回复
3826
查看
Hi,
You need to just add a button inside the report lines just like this.
<field name="report_line" nolabel="1">
<tree>
<button name="list_view" string="button" type="object"/>
</tree>
</field>
Then, we need to define a function inside the report_line model to get the view according to your needs.
def list_view(self):
view_tree = self.env.ref('module_name.view_id').id
return {
'type': 'ir.actions.act_window',
'name': 'Name',
'view_mode': 'tree',
'res_model': 'model for the view',
'view_id': view_tree,
'domain': [()],
'context': "{'create': False}"
}
So here you need to find the view id, that we need to show and also you can give any domain according to your needs
Regards
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
1
7月 24
|
1657 | ||
|
0
9月 24
|
1068 | ||
|
1
5月 24
|
2170 | ||
|
2
6月 23
|
2414 | ||
|
0
1月 20
|
160 |