Hallo All,
Is there any way to change field value from Wizard?
eg: I have model hr.employee:
state = fields.Selection(selection=[('active','Active'), ('inactive','Inactive')])
I have transient model hr.employee.wizard:
state = fields.Selection(selection=[('active','Active'), ('inactive','Inactive')])
The thing is, i need to change the state from Wizard(hr.employee.wizard) and it also change the state in hr.employee.
I use @api.onchange but it didn't work.
Please advise.