[IMP] account, taxes report: added an option to print the detail (accounts) or not
[odoo/odoo.git] / addons / account / wizard / account_report_print_journal.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 from osv import osv, fields
23 from lxml import etree
24
25 class account_print_journal(osv.osv_memory):
26     _inherit = "account.common.journal.report"
27     _name = 'account.print.journal'
28     _description = 'Account Print Journal'
29
30     _columns = {
31         'sort_selection': fields.selection([('l.date', 'Date'),
32                                             ('am.name', 'Journal Entry Number'),],
33                                             'Entries Sorted by', required=True),
34         'journal_ids': fields.many2many('account.journal', 'account_print_journal_journal_rel', 'account_id', 'journal_id', 'Journals', required=True),
35     }
36
37     _defaults = {
38         'sort_selection': 'am.name',
39         'filter': 'filter_period',
40         'journal_ids': False,
41     }
42
43     def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):
44         '''
45         used to set the domain on 'journal_ids' field: we exclude or only propose the journals of type 
46         sale/purchase (+refund) accordingly to the presence of the key 'sale_purchase_only' in the context.
47         '''
48         if context is None: 
49             context = {}
50         res = super(account_print_journal, self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=submenu)
51         doc = etree.XML(res['arch'])
52
53         if context.get('sale_purchase_only'):
54             domain ="[('type', 'in', ('sale','purchase','sale_refund','purchase_refund'))]"
55         else:
56             domain ="[('type', 'not in', ('sale','purchase','sale_refund','purchase_refund'))]"
57         nodes = doc.xpath("//field[@name='journal_ids']")
58         for node in nodes:
59             node.set('domain', domain)
60         res['arch'] = etree.tostring(doc)
61         return res
62
63
64     def _print_report(self, cr, uid, ids, data, context=None):
65         if context is None:
66             context = {}
67         data = self.pre_print_report(cr, uid, ids, data, context=context)
68         data['form'].update(self.read(cr, uid, ids, ['sort_selection'], context=context)[0])
69         if context.get('sale_purchase_only'):
70             report_name = 'account.journal.period.print.sale.purchase'
71         else:
72             report_name = 'account.journal.period.print'
73         return {'type': 'ir.actions.report.xml', 'report_name': report_name, 'datas': data}
74
75 account_print_journal()
76
77 #vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
78
79 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: