[IMP] scrum: Active field on sprint with good help msg

bzr revid: mra@tinyerp.com-20100503083024-26qk2r82d08l1mdf
This commit is contained in:
mra (Open ERP) 2010-05-03 14:00:24 +05:30
parent 8ac697eccc
commit 4188137041
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ class scrum_sprint(osv.osv):
return True
_columns = {
'name' : fields.char('Sprint Name', required=True, size=64),
'active' : fields.boolean('Active',help="If the active field is set to true, it will allow you to select sprint from task list view. "),
'active' : fields.boolean('Active', help="If Active field is set to true, it will allow you to select sprint from task list view. "),
'date_start': fields.date('Starting Date', required=True),
'date_stop': fields.date('Ending Date', required=True),
'project_id': fields.many2one('project.project', 'Project', required=True, domain=[('scrum','=',1)]),
@ -188,7 +188,7 @@ class scrum_product_backlog(osv.osv):
_columns = {
'name' : fields.char('Feature', size=64, required=True),
'note' : fields.text('Note'),
'active' : fields.boolean('Active', help="If the active field is set to true, it will allow you to hide the product backlog without removing it."),
'active' : fields.boolean('Active', help="If Active field is set to true, it will allow you to hide the product backlog without removing it."),
'project_id': fields.many2one('project.project', 'Project', required=True, domain=[('scrum','=',1)]),
'user_id': fields.many2one('res.users', 'Responsible'),
'sprint_id': fields.many2one('scrum.sprint', 'Sprint'),