Small fix by adding calendar_id field

bzr revid: hda@tinyerp.com-20100303075314-adehvgccvpmxowbg
This commit is contained in:
HDA (OpenERP) 2010-03-03 13:23:14 +05:30
parent e8ffd6ef5c
commit 350baa314c
1 changed files with 2 additions and 2 deletions

View File

@ -259,8 +259,8 @@ class project(osv.osv):
_inherit = "project.project"
_columns = {
'phase_ids': fields.one2many('project.phase', 'project_id', "Project Phases")
'phase_ids': fields.one2many('project.phase', 'project_id', "Project Phases"),
'resource_calendar_id': fields.many2one('resource.calendar', 'Working Time', help="Timetable working hours to adjust the gantt diagram report"),
}
project()