Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
6 Odpowiedzi
3194 Widoki

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 ?

Awatar
Odrzuć
Najlepsza odpowiedź

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

Awatar
Odrzuć

Ya, it's right.

Autor

Ok i will try it

Autor

It working for me

Najlepsza odpowiedź

Hi,

Try to write the value to that field 

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

Thank you.

Awatar
Odrzuć
Autor

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