[FORWARD] Forward port of 7.0 branch until revision 9143.
[odoo/odoo.git] / addons / account_voucher / invoice.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 invoice(osv.osv):
26     _inherit = 'account.invoice'
27
28     def invoice_pay_customer(self, cr, uid, ids, context=None):
29         if not ids: return []
30         dummy, view_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'account_voucher', 'view_vendor_receipt_dialog_form')
31
32         inv = self.browse(cr, uid, ids[0], context=context)
33         return {
34             'name':_("Pay Invoice"),
35             'view_mode': 'form',
36             'view_id': view_id,
37             'view_type': 'form',
38             'res_model': 'account.voucher',
39             'type': 'ir.actions.act_window',
40             'nodestroy': True,
41             'target': 'new',
42             'domain': '[]',
43             'context': {
44                 'payment_expected_currency': inv.currency_id.id,
45                 'default_partner_id': self.pool.get('res.partner')._find_accounting_partner(inv.partner_id).id,
46                 'default_amount': inv.type in ('out_refund', 'in_refund') and -inv.residual or inv.residual,
47                 'default_reference': inv.name,
48                 'close_after_process': True,
49                 'invoice_type': inv.type,
50                 'invoice_id': inv.id,
51                 'default_type': inv.type in ('out_invoice','out_refund') and 'receipt' or 'payment',
52                 'type': inv.type in ('out_invoice','out_refund') and 'receipt' or 'payment'
53             }
54         }
55
56
57 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: