I am a newbie in odoo development. I already installed a module which is inheriting from Project module , which will add certain additional fields in Project section. But when I tried to add more field in module file & tried to upgrade,the new field is not uploading. I restarted the server & tried updating.. but its not working..can you please help me? My model wil be like this :-
class legacy_projects007(osv.osv):
_inherit = "project.project"
_columns = {
'legacy_projects_amount': fields.float('Amount'),
'legacy_projects_regdate': fields.date(),
'legacy_projects_description': fields.text('Description'),
'legacy_projects_enddate': fields.date(),
}
_defaults ={
'legacy_projects_amount': "1000.0",
'legacy_projects_description': "Description of Project Here",
}