Skip to Content
Menu
This question has been flagged
6 Replies
2740 Views

Hello,

I have this field :

switch_power = fields.Selection([('1','On'),('0','Off')],'Power')

And i have defined a button which change the value of "switch_power" according to this function :


@api.multi
def message_test(self):

if(self.switch_power=='1'):
self.switch_power='0'
raise osv.except_osv(('Button test!'), ('Le button est on'))

else:
self.switch_power='1'
raise osv.except_osv(('Button test!'), ('Le button est off'))

The problem is when i click in the button, The message is displayed, but the value of "switch_power" dosen't changed.


Any help please ?

Avatar
Discard
Best Answer

May be, Because of raising message, your method not execute properly, try to remove raise keyword line and then execute method.

Avatar
Discard

Ya, it's right.

Author

Ok i will try it

Author

It working for me

Best Answer

Hi,

Try to write the value to that field 

self.write({'switch_power' : '1'})

Thank you.

Avatar
Discard
Author

Hi Avinash, i have try that, but nothing happened.