gpt4 book ai didi

xml - 动态改变按钮的 Action

转载 作者:数据小太阳 更新时间:2023-10-29 02:23:19 25 4
gpt4 key购买 nike

能否根据另一个字段的值动态更改按钮的操作?示例代码:

<xpath expr="//button[@class='oe_stat_button o_res_partner_tip_opp']" position="attributes">
<attribute name="name">%(action1)d</attribute>
<attribute name="name">%(action2)d</attribute>
</xpath>

该按钮的操作将是 action1 或 action2,具体取决于 bool 值/选择/任何字段的值。如何实现?

最佳答案

至少有两种可能:

创建多个按钮并按条件显示或隐藏

最后应该是这样的:

<field name="my_selection_field" />
<button name="%(action1)d" string="Action 1" attrs="{'invisible': [('my_selection_field', '!=', 'selection1')]}" />
<button name="%(action2)d" string="Action 2" attrs="{'invisible': [('my_selection_field', '!=', 'selection2')]}" />
<button name="%(action3)d" string="Action 3" attrs="{'invisible': [('my_selection_field', '!=', 'selection3')]}" />

这显然不是完美的解决方案,但它应该有效。

使用 python 方法返回一个 Action

这也行,但会更动态一些。只需制作类型为object 的按钮,并在name 属性中设置一个模型多记录方法。

<button action="button_dynamic_action" string="Action" type="object" />

现在在 View 模型上实现该方法:

@api.multi
def button_dynamic_action(self):
self.ensure_one()
action = {}
if self.my_selection_field == 'selection1':
action = {
'name': _('Action 1'),
'view_type': 'form',
'view_mode': 'form',
'res_model': 'my.model',
#'view_id': # optional
'type': 'ir.actions.act_window',
#'res_id': # optional
'target': 'new' # or 'current'
}
elif self.my_selection_field == 'selection2':
action = {
'name': _('Action 2'),
'view_type': 'form',
'view_mode': 'tree',
'res_model': 'my.model',
#'view_id': # optional
'type': 'ir.actions.act_window',
#'res_id': # optional
'target': 'current' # or 'new'
}
# and so on
return action

您还可以从现有的窗口操作 (ir.actions.act_window) 中读取,而不是在代码中“创建”它们,以下示例来自 Odoo 本身:

res = self.env['ir.actions.act_window'].for_xml_id('base', 'action_attachment')
# ... change res with context or name and so on
return res

关于xml - 动态改变按钮的 Action ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54196850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com