我试图在单击按钮时打开客户端操作。当操作打开时,它不会保留调用位置的面包屑。
<record id="view_dashboard_action" model="ir.actions.client">
<field name="name">Rental Dashboard</field>
<field name="tag">rental_availability</field>
<field name="target">main</field>
</record>
这是按钮代码:
@api.multi
def action_open_rental_dashboard(self):
action = self.env.ref('rental_management_v10.view_dashboard_action').read()[0]
action['context'] = {'product_ids': [1,2,3]}
action['flags'] = {'search_view': True, 'action_buttons': True},
return action
我也尝试将目标设置为“当前”,但仍然没有面包屑。