From a0e52e7bee3057664550f69070841ac87c3ca675 Mon Sep 17 00:00:00 2001 From: Numerigraphe - Lionel Sausin <ls@numerigraphe.fr> Date: Tue, 10 Feb 2009 09:48:00 +0100 Subject: [PATCH] Fix Bug #327471 "the report name is wrong in hr_attendence module" Also change the name of the wizards in the hr_attendence module bzr revid: ls@numerigraphe.fr-20090210084800-x50c18hmpg6135i6 --- addons/hr_attendance/hr_attendance_wizard.xml | 6 +++--- addons/hr_attendance/report/attendance_errors.py | 2 +- addons/hr_attendance/report/bymonth.py | 2 +- addons/hr_attendance/report/timesheet.py | 2 +- addons/hr_attendance/wizard/print_attendance_error.py | 4 ++-- addons/hr_attendance/wizard/print_bymonth.py | 4 ++-- addons/hr_attendance/wizard/print_byweek.py | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/addons/hr_attendance/hr_attendance_wizard.xml b/addons/hr_attendance/hr_attendance_wizard.xml index 0c9e256ae458..92c28911b40d 100644 --- a/addons/hr_attendance/hr_attendance_wizard.xml +++ b/addons/hr_attendance/hr_attendance_wizard.xml @@ -3,10 +3,10 @@ <data> <wizard id="si_so" model="hr.employee" name="hr.si_so" string="Sign in / Sign out"/> - <wizard id="wizard_attendance_error" keyword="client_print_multi" model="hr.employee" name="hr.timesheet.attendance.report" string="Print Attendance Error Report"/> + <wizard id="wizard_attendance_error" keyword="client_print_multi" model="hr.employee" name="hr.attendance.report" string="Print Attendance Error Report"/> - <wizard id="print_week" keyword="client_print_multi" model="hr.employee" name="hr.print_week" string="Print Timesheet by week"/> - <wizard id="print_month" keyword="client_print_multi" model="hr.employee" name="hr.print_month" string="Print Timesheet by month"/> + <wizard id="print_week" keyword="client_print_multi" model="hr.employee" name="hr.attendance.print_week" string="Print Timesheet by week"/> + <wizard id="print_month" keyword="client_print_multi" model="hr.employee" name="hr.attendance.print_month" string="Print Timesheet by month"/> <menuitem action="si_so" id="menu_si_so" parent="menu_hr_attendance" type="wizard" groups="group_hr_attendance"/> diff --git a/addons/hr_attendance/report/attendance_errors.py b/addons/hr_attendance/report/attendance_errors.py index 762dd1944965..d9dd93a04261 100644 --- a/addons/hr_attendance/report/attendance_errors.py +++ b/addons/hr_attendance/report/attendance_errors.py @@ -73,7 +73,7 @@ class attendance_print(report_sxw.rml_parse): return (self._sign(total),total2 and self._sign(total2)) -report_sxw.report_sxw('report.hr.timesheet.attendance.error', 'hr.employee', 'addons/hr_attendance/report/attendance_errors.rml',parser=attendance_print, header=2) +report_sxw.report_sxw('report.hr.attendance.error', 'hr.employee', 'addons/hr_attendance/report/attendance_errors.rml',parser=attendance_print, header=2) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/report/bymonth.py b/addons/hr_attendance/report/bymonth.py index d0715b4b66da..1da6db83cfd2 100644 --- a/addons/hr_attendance/report/bymonth.py +++ b/addons/hr_attendance/report/bymonth.py @@ -96,7 +96,7 @@ class report_custom(report_rml): return xml -report_custom('report.hr.timesheet.bymonth', 'hr.employee', '', 'addons/hr_attendance/report/bymonth.xsl') +report_custom('report.hr.attendance.bymonth', 'hr.employee', '', 'addons/hr_attendance/report/bymonth.xsl') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/report/timesheet.py b/addons/hr_attendance/report/timesheet.py index feec7743370e..a256e27767b7 100644 --- a/addons/hr_attendance/report/timesheet.py +++ b/addons/hr_attendance/report/timesheet.py @@ -115,5 +115,5 @@ class report_custom(report_rml): ''' % '\n'.join(user_xml) return self.post_process_xml_data(cr, uid, xml, context) -report_custom('report.hr.timesheet.allweeks', 'hr.employee', '', 'addons/hr_attendance/report/timesheet.xsl') +report_custom('report.hr.attendance.allweeks', 'hr.employee', '', 'addons/hr_attendance/report/timesheet.xsl') # vim:noexpandtab:tw=0 diff --git a/addons/hr_attendance/wizard/print_attendance_error.py b/addons/hr_attendance/wizard/print_attendance_error.py index 6505b7718325..fe88406f3314 100644 --- a/addons/hr_attendance/wizard/print_attendance_error.py +++ b/addons/hr_attendance/wizard/print_attendance_error.py @@ -46,10 +46,10 @@ class wiz_attendance(wizard.interface): }, 'print': { 'actions': [], - 'result': {'type': 'print', 'report': 'hr.timesheet.attendance.error', 'state':'end'} + 'result': {'type': 'print', 'report': 'hr.attendance.error', 'state':'end'} } } -wiz_attendance('hr.timesheet.attendance.report') +wiz_attendance('hr.attendance.report') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/wizard/print_bymonth.py b/addons/hr_attendance/wizard/print_bymonth.py index 4e28055bcdc0..8c83b90cde35 100644 --- a/addons/hr_attendance/wizard/print_bymonth.py +++ b/addons/hr_attendance/wizard/print_bymonth.py @@ -54,10 +54,10 @@ class wiz_bymonth(wizard.interface): }, 'print': { 'actions': [], - 'result': {'type': 'print', 'report': 'hr.timesheet.bymonth', 'state': 'end'} + 'result': {'type': 'print', 'report': 'hr.attendance.bymonth', 'state': 'end'} } } -wiz_bymonth('hr.print_month') +wiz_bymonth('hr.attendance.print_month') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/wizard/print_byweek.py b/addons/hr_attendance/wizard/print_byweek.py index ed3dd8f07a88..b5956cb7b48d 100644 --- a/addons/hr_attendance/wizard/print_byweek.py +++ b/addons/hr_attendance/wizard/print_byweek.py @@ -44,10 +44,10 @@ class wiz_byweek(wizard.interface): }, 'print': { 'actions': [], - 'result': {'type': 'print', 'report': 'hr.timesheet.allweeks', 'state':'end'} + 'result': {'type': 'print', 'report': 'hr.attendance.allweeks', 'state':'end'} } } -wiz_byweek('hr.print_week') +wiz_byweek('hr.attendance.print_week') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: -- GitLab