From 933ac7b2fdd3fb532f34b8ee4d7f471a1b91a423 Mon Sep 17 00:00:00 2001 From: Rucha Dave Date: Mon, 12 Jan 2015 17:59:33 +0530 Subject: [PATCH] [FIX] project: better tooltip of time_unit field Changing the unit does not modify past entries generated (too dangerous) however this was not clear of the effect of the field. A better fix (for master) would be to add a unit field. opw 618804 --- addons/project/res_config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/project/res_config.py b/addons/project/res_config.py index 187ad0327d8..52bcf2cd36c 100644 --- a/addons/project/res_config.py +++ b/addons/project/res_config.py @@ -45,7 +45,8 @@ class project_configuration(osv.osv_memory): help='Provides management of issues/bugs in projects.\n' '-This installs the module project_issue.'), 'time_unit': fields.many2one('product.uom', 'Working time unit', required=True, - help="""This will set the unit of measure used in projects and tasks."""), + help='This will set the unit of measure used in projects and tasks.\n' + 'Changing the unit will only impact new entries.'), 'module_project_issue_sheet': fields.boolean("Invoice working time on issues", help='Provides timesheet support for the issues/bugs management in project.\n' '-This installs the module project_issue_sheet.'),