How To Fix Valueerror: Field `active` Does Not Exist In Odoo
I have a view which inherits from view employee form, with fields from a model I created, but whenever I try to upgrade the module it shows me the ValueError: Field active does not
Solution 1:
Are you sure you're creating the view for the right model? I would say it has to be hr.employee
and not training.log.emp
, because you're also inheriting a hr.employee
view and you just want to show a one2many field on Employees with relation to your new model training.log.emp
.
Post a Comment for "How To Fix Valueerror: Field `active` Does Not Exist In Odoo"