[IMP] account, taxes report: added an option to print the detail (accounts) or not
[odoo/odoo.git] / addons / account / wizard / account_unreconcile.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
23
24 class account_unreconcile(osv.osv_memory):
25     _name = "account.unreconcile"
26     _description = "Account Unreconcile"
27
28     def trans_unrec(self, cr, uid, ids, context=None):
29         obj_move_line = self.pool.get('account.move.line')
30         if context is None:
31             context = {}
32         if context.get('active_ids', False):
33             obj_move_line._remove_move_reconcile(cr, uid, context['active_ids'], context=context)
34         return {'type': 'ir.actions.act_window_close'}
35
36 account_unreconcile()
37
38 class account_unreconcile_reconcile(osv.osv_memory):
39     _name = "account.unreconcile.reconcile"
40     _description = "Account Unreconcile Reconcile"
41
42     def trans_unrec_reconcile(self, cr, uid, ids, context=None):
43         obj_move_reconcile = self.pool.get('account.move.reconcile')
44         if context is None:
45             context = {}
46         rec_ids = context['active_ids']
47         if rec_ids:
48             obj_move_reconcile.unlink(cr, uid, rec_ids, context=context)
49         return {'type': 'ir.actions.act_window_close'}
50
51 account_unreconcile_reconcile()
52
53 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: