[IMP] Account: Generating entries for closing fiscal year => Add company_id in query...
[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 fields, 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         recs = obj_move_line.read(cr, uid, context['active_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         if len(unlink_ids):
41             self.pool.get('account.move.reconcile').unlink(cr, uid, unlink_ids)
42         return {}
43
44 account_unreconcile()
45
46 class account_unreconcile_reconcile(osv.osv_memory):
47     _name = "account.unreconcile.reconcile"
48     _description = "Account Unreconcile Reconcile"
49
50     def trans_unrec_reconcile(self, cr, uid, ids, context=None):
51         obj_move_reconcile = self.pool.get('account.move.reconcile')
52         rec_ids = context['active_ids']
53         if context is None:
54             context = {}
55         if len(rec_ids):
56             obj_move_reconcile.unlink(cr, uid, rec_ids)
57         return {}
58
59 account_unreconcile_reconcile()
60
61 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: