passing modules in GPL-3
[odoo/odoo.git] / addons / account / report / central_journal.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 import time
24 from report import report_sxw
25
26 #
27 # Use period and Journal for selection or resources
28 #
29 class journal_print(report_sxw.rml_parse):
30     def __init__(self, cr, uid, name, context):
31         super(journal_print, self).__init__(cr, uid, name, context)
32         self.localcontext.update({
33             'time': time,
34             'lines': self.lines,
35             'sum_debit': self._sum_debit,
36             'sum_credit': self._sum_credit
37         })
38
39     def lines(self, period_id, journal_id, *args):
40         if type(period_id)==type([]):
41             ids_final = []
42             for journal in journal_id:
43                 for period in period_id:
44                     ids_journal_period = self.pool.get('account.journal.period').search(self.cr,self.uid, [('journal_id','=',journal),('period_id','=',period)])
45                     if ids_journal_period:
46                         self.cr.execute('select a.code, a.name, sum(debit) as debit, sum(credit) as credit from account_move_line l left join account_account a on (l.account_id=a.id) where l.period_id=%d and l.journal_id=%d and l.state<>\'draft\' group by a.id, a.code, a.name, l.journal_id, l.period_id', (period, journal))
47                         res = self.cr.dictfetchall()
48                         a = {'journal':self.pool.get('account.journal').browse(self.cr, self.uid, journal),'period':self.pool.get('account.period').browse(self.cr, self.uid, period)}
49                         res[0].update(a)
50                         ids_final.append(res)
51             return ids_final
52         self.cr.execute('select a.code, a.name, sum(debit) as debit, sum(credit) as credit from account_move_line l left join account_account a on (l.account_id=a.id) where l.period_id=%d and l.journal_id=%d and l.state<>\'draft\' group by a.id, a.code, a.name', (period_id, journal_id))
53         res = self.cr.dictfetchall()
54         return res
55
56     def _sum_debit(self, period_id, journal_id):
57         self.cr.execute('select sum(debit) from account_move_line where period_id=%d and journal_id=%d and state<>\'draft\'', (period_id, journal_id))
58         return self.cr.fetchone()[0] or 0.0
59
60     def _sum_credit(self, period_id, journal_id):
61         self.cr.execute('select sum(credit) from account_move_line where period_id=%d and journal_id=%d and state<>\'draft\'', (period_id, journal_id))
62         return self.cr.fetchone()[0] or 0.0
63 report_sxw.report_sxw('report.account.central.journal', 'account.journal.period', 'addons/account/report/central_journal.rml',parser=journal_print, header=False)
64 report_sxw.report_sxw('report.account.central.journal.wiz', 'account.journal.period', 'addons/account/report/wizard_central_journal.rml',parser=journal_print, header=False)
65
66 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
67