当我单击一个按钮时,我必须转到客户发票的树状视图和表单视图。现在,它将转到供应商发票。我在按钮单击中尝试过这种操作。
return {
'name': "Invoice",
'type': 'ir.actions.act_window',
'view_mode': 'tree,form',
'xml_id': 'account.action_invoice_tree1',
'tree_view_id': self.env.ref('account.invoice_tree').id,
'form_view_id': self.env.ref('account.invoice_form').id,
'target': 'current',
'res_model':'account.invoice',
'domain': [('id','in',[invoice_obj.id])],
}
答案 0 :(得分:1)
App