这可能是一个简单的问题。但是,是否有人知道如何在Odoo中单击它后禁用按钮?谢谢你的帮助。
答案 0 :(得分:5)
大多数Odoo模块都使用状态来解决这类问题。一般的想法是你必须有一个字段,并根据该字段的值显示按钮。
例如:
# in you model
bool_field = fields.Boolean('Same text', default=False)
在您看来:
<button name="some_method"......... attrs="{'invisible': [('bool_field', '=', True)]}" />
...
...
...
<!-- keep the field invisible because i don't need the user to see
it, the value of this field is for technical purpuse -->
<field name="bool_field" invisible="1"/>
在你的模特中:
@api.multi
def some_method(self):
# in this method i will make sure to change the value of the
# field to True so the button is not visible any more for user
self.bool_field = True
...
...
...
因此,如果您准备好了一个按钮更改其值的字段,则可以直接使用它 或为此目的创建一个特殊领域。