[REMOVE]: mx.Date from trunk
[odoo/odoo.git] / addons / hr_payroll / report / report_emp_salary_structure.py
1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3
4 ##############################################################################
5 #
6 #    OpenERP, Open Source Management Solution
7 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
8 #    d$
9 #
10 #    This program is free software: you can redistribute it and/or modify
11 #    it under the terms of the GNU General Public License as published by
12 #    the Free Software Foundation, either version 3 of the License, or
13 #    (at your option) any later version.
14 #
15 #    This program is distributed in the hope that it will be useful,
16 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
17 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 #    GNU General Public License for more details.
19 #
20 #    You should have received a copy of the GNU General Public License
21 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 #
23 ##############################################################################
24
25 import time
26 from report import report_sxw
27 from tools import amount_to_text_en
28
29 class salary_structure_report(report_sxw.rml_parse):
30
31     def __init__(self, cr, uid, name, context):
32           super(salary_structure_report, self).__init__(cr, uid, name, context)
33           self.localcontext.update({
34             'time': time,
35             'get_type':self.get_type,
36             'get_contract':self.get_contract,
37             'get_line_amount_type':self.get_line_amount_type,
38             'get_line_type':self.get_line_type,
39             'get_line_amount_symbol':self.get_line_amount_symbol
40           })
41
42     def get_contract(self,emp):
43         curr_date = "'"+time.strftime("%Y-%m-%d")+"'"
44         sql_req= '''
45             SELECT c.id as id, c.wage as wage, struct_id as struct
46             FROM hr_contract c
47               LEFT JOIN hr_employee emp on (c.employee_id=emp.id)
48               LEFT JOIN hr_contract_wage_type cwt on (cwt.id = c.wage_type_id)
49               LEFT JOIN hr_contract_wage_type_period p on (cwt.period_id = p.id)
50             WHERE
51               (emp.id=%s) AND
52               (date_start <= %s) AND
53               (date_end IS NULL OR date_end >= %s)
54             LIMIT 1
55             '''%(emp.id, curr_date, curr_date)
56         self.cr.execute(sql_req)
57         contract_id = self.cr.dictfetchone()
58         if not contract_id:
59             return []
60         contract = self.pool.get('hr.contract').browse(self.cr, self.uid, [contract_id['id']])
61         return contract
62
63     def get_type(self,type):
64         return type[0].swapcase() + type[1:] +' Salary'
65
66     def get_line_amount_type(self,amount_type):
67         if amount_type == 'per':
68             return 'Percent(%)'
69         else:
70             return 'Fixed'
71
72     def get_line_amount_symbol(self,amount_type):
73         if amount_type != 'per':
74             return self.pool.get('res.users').browse(self.cr, self.uid,self.uid).company_id.currency_id.symbol
75
76     def get_line_type(self,type):
77         if type == 'allounce':
78             return 'Allowance'
79         elif type == 'deduction':
80             return 'Deduction'
81         elif type == 'advance':
82             return 'Advance'
83         elif type == 'loan':
84             return 'Loan'
85         elif type == 'otherpay':
86             return 'Other Payment'
87         else:
88             return 'Other Deduction'
89
90 report_sxw.report_sxw('report.salary.structure', 'hr.employee', 'hr_payroll/report/report_emp_salary_structure.rml', parser=salary_structure_report)
91
92
93
94
95
96
97
98
99 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
100
101
102
103
104
105
106