[ADD]l10n_in_hr_payroll:added report for salary rule by months
[odoo/odoo.git] / addons / l10n_in_hr_payroll / wizard / salary_rule_bymonth.py
1 # -*- coding: utf-8 -*-
2 ###############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import time
23
24 from osv import osv, fields
25
26 class salary_rule_bymonth(osv.osv_memory):
27     _name = 'salary.rule.month'
28 #    _inherit = 'hr.employee'
29     _description = 'Print Monthly Salary Rule Report'
30     _columns = {
31         'start_date': fields.date('Starting Date', required=True),
32         'end_date': fields.date('Ending Date', required=True),
33         'employee_ids': fields.many2many('hr.employee', 'payroll_year_rel','payroll_year_id','emp_id', 'Employees',required=True),
34 #        'rule_id': fields.many2one('hr.salary.rule.category', 'Rule Category', required=True),
35     }
36     _defaults = {
37          'start_date': lambda *a: time.strftime('%Y-01-01'),
38          'end_date': lambda *a: time.strftime('%Y-%m-%d'),
39     }
40
41     def print_report(self, cr, uid, ids, context=None):
42         """
43          To get the date and print the report
44          @param self: The object pointer.
45          @param cr: A database cursor
46          @param uid: ID of the user currently logged in
47          @param context: A standard dictionary
48          @return: return report
49         """
50         if context is None:
51             context = {}
52         datas = {'ids': context.get('active_ids', [])}
53
54         res = self.read(cr, uid, ids, ['employee_ids',  'start_date', 'end_date', ], context=context)
55         res = res and res[0] or {}
56         datas['form'] = res
57         datas['ids'] = res.get('employee_ids',[])
58         return {
59             'type': 'ir.actions.report.xml',
60             'report_name': 'salary.rule.bymonth',
61             'datas': datas,
62        }
63
64 salary_rule_bymonth()
65
66 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: