~ubuntu-branches/ubuntu/quantal/openerp6.1/quantal-proposed

« back to all changes in this revision

Viewing changes to openerp/addons/account/wizard/account_unreconcile.py

  • Committer: Package Import Robot
  • Author(s): Yolanda Robla
  • Date: 2012-09-20 15:29:00 UTC
  • Revision ID: package-import@ubuntu.com-20120920152900-woyy3yww8z6acmsk
Tags: upstream-6.1-1+dfsg
ImportĀ upstreamĀ versionĀ 6.1-1+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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:
 
 
b'\\ No newline at end of file'