[IMP]:l10n_fr sql queries to parameterized query
[odoo/odoo.git] / addons / l10n_fr / report / base_report.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2008 JAILLET Simon - CrysaLEAD - www.crysalead.fr
5 #
6 # WARNING: This program as such is intended to be used by professional
7 # programmers who take the whole responsability of assessing all potential
8 # consequences resulting from its eventual inadequacies and bugs
9 # End users who are looking for a ready-to-use solution with commercial
10 # garantees and support are strongly adviced to contract a Free Software
11 # Service Company
12 #
13 # This program is Free Software; you can redistribute it and/or
14 # modify it under the terms of the GNU General Public License
15 # as published by the Free Software Foundation; either version 2
16 # of the License, or (at your option) any later version.
17 #
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
26 #
27 ##############################################################################
28
29 import time
30 from report import report_sxw
31
32 class base_report(report_sxw.rml_parse):
33     def __init__(self, cr, uid, name, context):
34         super(base_report, self).__init__(cr, uid, name, context=context)
35         self.localcontext.update( {
36             'time': time,
37             '_load': self._load,
38             '_get_variable': self._get_variable,
39             '_set_variable': self._set_variable,
40         })
41         self.context = context
42
43     def _load(self,name,form):
44         fiscalyear=self.pool.get('account.fiscalyear').browse(self.cr, self.uid, form['fiscalyear'])
45
46         period_query_cond=self.pool.get('account.period').search(self.cr, self.uid,[('fiscalyear_id','=',form['fiscalyear'])])
47
48         self.cr.execute("SELECT MIN(date_start) AS date_start, MAX(date_stop) AS date_stop FROM account_period WHERE id =ANY(%s)",(period_query_cond,))
49         dates =self.cr.dictfetchall()
50         self._set_variable('date_start', dates[0]['date_start'])
51         self._set_variable('date_stop', dates[0]['date_stop'])
52
53         self.cr.execute("SELECT l10n_fr_line.code,definition FROM l10n_fr_line LEFT JOIN l10n_fr_report ON l10n_fr_report.id=report_id WHERE l10n_fr_report.code=%s",(name,))
54         datas =self.cr.dictfetchall()
55         for line in datas:
56             self._load_accounts(form,line['code'],eval(line['definition']),fiscalyear,period_query_cond)
57
58     def _set_variable(self,variable,valeur):
59         self.localcontext.update({variable:valeur})
60
61     def _get_variable(self,variable):
62         return self.localcontext[variable]
63
64     def _load_accounts(self,form,code,definition,fiscalyear,period_query_cond):
65         #self.context.copy()
66         accounts={}
67         for x in definition['load']:
68             p=x.split(":")
69             accounts[p[1]]=[p[0],p[2]]
70         sum=0.0
71
72         if fiscalyear.state!='done' or not code.startswith('bpcheck'):
73             query_cond="("
74             for account in accounts:
75                 query_cond += "aa.code LIKE '"+account+"%' OR "
76             query_cond = query_cond[:-4]+")"
77
78             if len(definition['except'])>0:
79                 query_cond = query_cond+" and ("
80                 for account in definition['except']:
81                     query_cond += "aa.code NOT LIKE '"+account+"%' AND "
82                 query_cond = query_cond[:-5]+")"
83
84             closed_cond=""
85             if fiscalyear.state=='done':
86                 closed_cond=" AND (aml.move_id NOT IN (SELECT account_move.id as move_id FROM account_move WHERE period_id IN "+str(tuple(period_query_cond))+" AND journal_id=(SELECT res_id FROM ir_model_data WHERE name='closing_journal' AND module='l10n_fr')) OR (aa.type != 'income' AND aa.type !='expense'))"
87
88             query = "SELECT aa.code AS code, SUM(debit) as debit, SUM(credit) as credit FROM account_move_line aml LEFT JOIN account_account aa ON aa.id=aml.account_id WHERE "+query_cond+closed_cond+" AND aml.state='valid' AND aml.period_id IN "+str(tuple(period_query_cond))+" GROUP BY code"
89             self.cr.execute(query)
90
91             lines =self.cr.dictfetchall()
92             for line in lines:
93                 for account in accounts:
94                     if(line["code"].startswith(account)):
95                         operator=accounts[account][0]
96                         type=accounts[account][1]
97                         value=0.0
98                         if(type=="S"):
99                             value=line["debit"]-line["credit"]
100                         elif(type=="D"):
101                             value=line["debit"]-line["credit"]
102                             if(value<0.001): value=0.0
103                         elif(type=="C"):
104                             value=line["credit"]-line["debit"]
105                             if(value<0.001): value=0.0
106                         if(operator=='+'):
107                             sum+=value
108                         else:
109                             sum-=value
110                         break
111         self._set_variable(code, sum)
112 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
113