Odooers论坛

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

How to make a check box true only if button clicked

形象
odoo
形象
丢弃
2 答案
0
形象
odoo
最佳答案

Hi Shaffaf,

You simply make a button in the XML with a function defined in it like this:

<button name="your_button" string="Send e-mail" type="object" class="btn-primary"/>

Then define a Python function where you set the boolean to true:

@api.multi
def your_button(self):
    self.your_boolean_field = True

Regards,
Yenthe

1 备注
形象
丢弃
形象
odoo
-

Thanks Yenthe

0
形象
odoo
最佳答案

How would the syntax be if my checkbox is in the model of sale.order and my button in account.move?

形象
丢弃