[IMP] improve the project wizard

bzr revid: rma@tinyerp.com-20120731122904-ec9mwww85euzyu8v
This commit is contained in:
Randhir Mayatra (OpenERP) 2012-07-31 17:59:04 +05:30
parent f9a936f92d
commit 038de0d560
2 changed files with 11 additions and 11 deletions

View File

@ -27,38 +27,38 @@ class project_configuration(osv.osv_memory):
_inherit = 'res.config.settings'
_columns = {
'module_project_mrp': fields.boolean('Create Tasks from a Sale Order',
'module_project_mrp': fields.boolean('generate tasks from sale orders',
help ="""This feature automatically creates project tasks from service products in sale orders.
More precisely, tasks are created for procurement lines with product of type 'Service',
procurement method 'Make to Order', and supply method 'Produce'.
This installs the module project_mrp."""),
'module_pad': fields.boolean("Use Collaborative Note Pads for Tasks",
'module_pad': fields.boolean("use integrated collaborative note pads on task",
help="""Lets the company customize which Pad installation should be used to link to new pads
(by default, http://ietherpad.com/).
This installs the module pad."""),
'module_project_timesheet': fields.boolean("Timesheets per Task",
'module_project_timesheet': fields.boolean("record timesheet lines per tasks",
help="""This allows you to transfer the entries under tasks defined for Project Management to
the timesheet line entries for particular date and user, with the effect of creating,
editing and deleting either ways.
This installs the module project_timesheet."""),
'module_project_long_term': fields.boolean("Manage Gantt and Resource Planning",
'module_project_long_term': fields.boolean("manage resources palnning on gantt view",
help="""A long term project management module that tracks planning, scheduling, and resource allocation.
This installs the module project_long_term."""),
'module_project_issue': fields.boolean("Issues and Bug Tracking",
'module_project_issue': fields.boolean("track issues and bug",
help="""Provides management of issues/bugs in projects.
This installs the module project_issue."""),
'time_unit': fields.many2one('product.uom', 'Working Time Unit', required=True,
'time_unit': fields.many2one('product.uom', 'working time unit', required=True,
help="""This will set the unit of measure used in projects and tasks."""),
'module_project_issue_sheet': fields.boolean("Track and Invoice Issues Working Time",
'module_project_issue_sheet': fields.boolean("invoice working time on issues",
help="""Provides timesheet support for the issues/bugs management in project.
This installs the module project_issue_sheet."""),
'group_tasks_work_on_tasks': fields.boolean("Task's Work on Tasks",
'group_tasks_work_on_tasks': fields.boolean("compute work activities on tasks",
implied_group='project.group_tasks_work_on_tasks',
help="Allows you to compute work on tasks."),
'group_time_work_estimation_tasks': fields.boolean("Time Estimation on Tasks",
'group_time_work_estimation_tasks': fields.boolean("manage time estimation on tasks",
implied_group='project.group_time_work_estimation_tasks',
help="Allows you to compute Time Estimation on tasks."),
'group_manage_delegation_task': fields.boolean("Manage Task Delegation",
'group_manage_delegation_task': fields.boolean("allow task delegation",
implied_group='project.group_delegate_task',
help="Allows you to delegate tasks to other users."),
}

View File

@ -26,7 +26,7 @@ class project_issue_settings(osv.osv_memory):
_inherit = ['project.config.settings', 'fetchmail.config.settings']
_columns = {
'fetchmail_issue': fields.boolean("Create Issues from Incoming Mails",
'fetchmail_issue': fields.boolean("create issues from an incoming email account ",
fetchmail_model='project.issue', fetchmail_name='Incoming Issues',
help="""Allows you to configure your incoming mail server, and create issues from incoming emails."""),
}