Hi, I'm using Odoo 11.
I have a computed field:
subscription_end = fields.Date(string='Subscription end date', compute='_get_subscription_end')
The field is computed without a problem.
I also have a wizard with a method that writes to this field. This does not work since this field is a computed field. How can I change the value of the field from the wizard?