From 619390d23cd337721bbe67a316052e77ee843335 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 26 Oct 2012 10:01:37 +0200 Subject: [PATCH] [IMP] timesheets bzr revid: fp@tinyerp.com-20121026080137-bluybqibtsjgb25n --- addons/hr/res_config.py | 2 +- addons/hr_attendance/res_config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/hr/res_config.py b/addons/hr/res_config.py index 7ae28348045..96bb42d1d8a 100644 --- a/addons/hr/res_config.py +++ b/addons/hr/res_config.py @@ -28,7 +28,7 @@ class hr_config_settings(osv.osv_memory): _columns = { 'module_hr_timesheet_sheet': fields.boolean('Allow timesheets validation by managers', help ="""This installs the module hr_timesheet_sheet."""), - 'module_hr_attendance': fields.boolean('Track attendances', + 'module_hr_attendance': fields.boolean('Install attendances feature', help ="""This installs the module hr_attendance."""), 'module_hr_timesheet': fields.boolean('Manage timesheets', help ="""This installs the module hr_timesheet."""), diff --git a/addons/hr_attendance/res_config.py b/addons/hr_attendance/res_config.py index 0da2d183409..61e2f784a5a 100644 --- a/addons/hr_attendance/res_config.py +++ b/addons/hr_attendance/res_config.py @@ -25,7 +25,7 @@ class hr_attendance_config_settings(osv.osv_memory): _inherit = 'hr.config.settings' _columns = { - 'group_hr_attendance': fields.boolean('Track attendances', + 'group_hr_attendance': fields.boolean('Track attendances for all employees', implied_group='base.group_hr_attendance', help="Allocates attendance group to all users."), }