[FIX] account: several fixes on the new bank statement reconciliation widget
[odoo/odoo.git] / addons / account / wizard / account_invoice_state.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 openerp.osv import osv
23 from openerp.tools.translate import _
24
25 class account_invoice_confirm(osv.osv_memory):
26     """
27     This wizard will confirm the all the selected draft invoices
28     """
29
30     _name = "account.invoice.confirm"
31     _description = "Confirm the selected invoices"
32
33     def invoice_confirm(self, cr, uid, ids, context=None):
34         if context is None:
35             context = {}
36         active_ids = context.get('active_ids', []) or []
37
38         proxy = self.pool['account.invoice']
39         for record in proxy.browse(cr, uid, active_ids, context=context):
40             if record.state not in ('draft', 'proforma', 'proforma2'):
41                 raise osv.except_osv(_('Warning!'), _("Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-Forma' state."))
42             record.signal_workflow('invoice_open')
43             
44         return {'type': 'ir.actions.act_window_close'}
45
46
47 class account_invoice_cancel(osv.osv_memory):
48     """
49     This wizard will cancel the all the selected invoices.
50     If in the journal, the option allow cancelling entry is not selected then it will give warning message.
51     """
52
53     _name = "account.invoice.cancel"
54     _description = "Cancel the Selected Invoices"
55
56     def invoice_cancel(self, cr, uid, ids, context=None):
57         if context is None:
58             context = {}
59         proxy = self.pool['account.invoice']
60         active_ids = context.get('active_ids', []) or []
61
62         for record in proxy.browse(cr, uid, active_ids, context=context):
63             if record.state in ('cancel','paid'):
64                 raise osv.except_osv(_('Warning!'), _("Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' or 'Done' state."))
65             record.signal_workflow('invoice_cancel')
66         return {'type': 'ir.actions.act_window_close'}
67
68
69 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: