fdb51bb6b91d75d6a01b8564ce3eea294afb4736
[odoo/odoo.git] / addons / account_voucher / wizard / account_voucher_unreconcile.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 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 import netsvc
23 from osv import osv
24 from osv import fields
25
26 class account_voucher_unreconcile(osv.osv_memory):
27     _name = "account.voucher.unreconcile"
28     _description = "Account voucher unreconcile"
29     
30     _columns = {
31         'remove':fields.boolean('Want to remove accounting entries too ?', required=False),
32     }
33     
34     _defaults = {
35         'remove': lambda *a: True,
36     }
37     
38     def trans_unrec(self, cr, uid, ids, context=None):
39         res = self.browse(cr, uid, ids[0])
40         if context is None:
41             context = {}
42         voucher_pool = self.pool.get('account.voucher')
43         reconcile_pool = self.pool.get('account.move.reconcile')
44         if context.get('active_id'):
45             voucher = voucher_pool.browse(cr, uid, context.get('active_id'), context)
46             recs = []
47             for line in voucher.move_ids:
48                 if line.reconcile_id:
49                     recs += [line.reconcile_id.id]
50                 if line.reconcile_partial_id:
51                     recs += [line.reconcile_partial_id.id]
52                 
53             #for rec in recs:
54             reconcile_pool.unlink(cr, uid, recs)
55             
56             if res.remove:
57                 voucher_pool.cancel_voucher(cr, uid, [context.get('active_id')], context)
58 #                wf_service = netsvc.LocalService("workflow")
59 #                wf_service.trg_validate(uid, 'account.voucher', context.get('active_id'), 'cancel_voucher', cr)
60             
61         return {}
62
63 account_voucher_unreconcile()
64
65 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: