I've got this situation in which a boolean field get's changed by the user. And, it gets saved.
But... whenever the form is loaded, that field has to be set to False. Notice that I am not referring to default value. No, the field's value has to be changed so, no matter what value was saved, it has to be reset to False the next time the form is loaded.
I thought about using a computed field that would change the other field's value but, despite the log tellng me the value had been changed, nothing happened in the form.
An __init__, perhaps? Tried it but it was always raising an error. The model is product.template, BTW