Hi,
I have a boolean field and a button. I want this boolean field to be true only if the button pressed and mail sends.
my boolean field, mail_send = fields.Boolean('mail send)
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
I have a boolean field and a button. I want this boolean field to be true only if the button pressed and mail sends.
my boolean field, mail_send = fields.Boolean('mail send)
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
Thanks Yenthe
How would the syntax be if my checkbox is in the model of sale.order and my button in account.move?
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
3
Apr 24
|
1008 | ||
|
0
May 24
|
46 | ||
|
1
Apr 24
|
1822 | ||
|
4
Sep 23
|
3084 | ||
|
2
Sep 23
|
5592 |