Logs show me
AttributeError: View definition error for inherited view 'project_medical_dates.view_project_project_form' on model 'project.project': Element '' not found in parent view 'project.edit_project'
Though other fields defined in the .py are found.
class project(osv.osv):
_inherit = "project.project"
_columns = {
'cert_ids': fields.one2many('project.medical.cert', 'project_id', 'Doctor Certification'),
'auth_ids': fields.one2many('project.medical.auth', 'project_id', 'Insurance Company Authorization'),
'client_id':fields.many2one('res.partner', 'Client'),
'status':fields.selection([
('active', 'Active'),
('inProcess', 'In Process'),
('holdParent', 'Parent Hold'),
('holdDoctor', 'Doctor Hold'),
('holdIns', 'Insurance Company Hold'),
('holdMed', 'Medical Hold'),
('discharged', 'Discharged'),
('dnq', 'Does Not Qualify (DNQ)'),
], 'Status', help="Project Status; active, ..."),
}
project()
Here's how I reference the field:
project.project.medical.form project.project
How can I go about determining why cert_ids is not found?
↧