[IMP] account
[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 from osv import fields, osv
22
23 class account_unreconcile(osv.osv_memory):
24     _name = "account.unreconcile"
25     _description = "Account Unreconcile"
26
27     def trans_unrec(self, cr, uid, ids, context=None):
28         obj_move_line = self.pool.get('account.move.line')
29         obj_move_reconcile = self.pool.get('account.move.reconcile')
30         if context is None:
31             context = {}
32         recs = obj_move_line.read(cr, uid, data['ids'], ['reconcile_id','reconcile_partial_id'])
33         unlink_ids = []
34         full_recs = filter(lambda x: x['reconcile_id'], recs)
35         rec_ids = [rec['reconcile_id'][0] for rec in full_recs]
36         part_recs = filter(lambda x: x['reconcile_partial_id'], recs)
37         part_rec_ids = [rec['reconcile_partial_id'][0] for rec in part_recs]
38         unlink_ids += rec_ids
39         unlink_ids += part_rec_ids
40
41         if len(unlink_ids):
42             self.pool.get('account.move.reconcile').unlink(cr, uid, unlink_ids)
43         return {}
44
45 account_unreconcile()
46
47 class account_unreconcile_reconcile(osv.osv_memory):
48     _name = "account.unreconcile.reconcile"
49     _description = "Account Unreconcile Reconcile"
50
51     def trans_unrec_reconcile(self, cr, uid, ids, context=None):
52         obj_move_reconcile = self.pool.get('account.move.reconcile')
53         rec_ids = context['active_ids']
54         if context is None:
55             context = {}
56         if len(rec_ids):
57             obj_move_reconcile.unlink(cr, uid, rec_ids)
58         return {}
59
60 account_unreconcile_reconcile()
61
62 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: