[IMP] project.config.settings: improve field labels, and add project_issue

bzr revid: rco@openerp.com-20120402135659-uemtmtg5doutkmua
This commit is contained in:
Raphael Collet 2012-04-02 15:56:59 +02:00
parent 46721a88bf
commit 091c7a6e53
2 changed files with 13 additions and 13 deletions

View File

@ -26,33 +26,33 @@ class project_configuration(osv.osv_memory):
_inherit = 'res.config.settings'
_columns = {
'module_project_mrp': fields.boolean('Create tasks directly from a sale order',
help ="""Automatically creates project tasks from procurement lines of type 'service'.
'module_project_mrp': fields.boolean('Create Tasks from a Sale Order',
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("Write task specifications on collaborative note pads",
'module_pad': fields.boolean("Use Collaborative Note Pads for Tasks",
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("Invoice working time on tasks",
'module_project_timesheet': fields.boolean("Timesheets and Invoices",
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_scrum': fields.boolean("Manage your project following Agile methodology",
'module_project_scrum': fields.boolean("SCRUM Methodology",
help="""This allows to implement all concepts defined by the scrum project management methodology for IT companies.
* Project with sprints, product owner, scrum master;
* Sprints with reviews, daily meetings, feedbacks;
* Product backlog;
* Sprint backlog.
This installs the module project_scrum."""),
'module_project_planning' : fields.boolean("Manage planning",
help="""This module helps you to manage your plannings.
Each department manager can know whether someone in their team has still unallocated time for a given
planning (taking into consideration the validated leaves), or whether he/she still needs to encode tasks.
This installs the module project_planning."""),
'module_project_long_term': fields.boolean("Manage long term planning",
'module_project_long_term': fields.boolean("Manage Gantt and Resource Planning",
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",
help="""Provides management of issues/bugs in projects.
This installs the module project_issue."""),
'module_project_issue_sheet': fields.boolean("Track and invoice issues working time",
help="""Provides timesheet support for the issues/bugs management in project.
This installs the module project_issue_sheet."""),

View File

@ -15,12 +15,12 @@
<field name="module_project_scrum"/>
<separator string="Planning" colspan="4"/>
<field name="module_project_planning"/>
<field name="module_project_long_term"/>
<separator string="Helpdesk and support" colspan="4"/>
<group name="support" colspan="4"/>
<field name="module_project_issue"/>
<field name="module_project_issue_sheet"/>
<group name="support" colspan="4"/>
</form>
</field>
</record>