You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

39 lines
1.4 KiB

# coding: utf-8
# Copyright (C) 2018 - Today: GRAP (http://www.grap.coop)
# @author: Julien WESTE
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp import _, api, fields, models
from openerp.exceptions import Warning as UserError
class AccountInvoice(models.Model):
_inherit = 'account.invoice'
pos_pending_payment = fields.Boolean(
string='PoS - Pending Payment', readonly=True,
oldname='forbid_payment',
help="Indicates an invoice for which there are pending payments in the"
" Point of Sale. \nThe invoice will be marked as paid when the session"
" will be closed.")
# Overload Section
@api.multi
def action_cancel(self):
self._check_pos_pending_payment()
return super(AccountInvoice, self).action_cancel()
@api.multi
def invoice_pay_customer(self):
self._check_pos_pending_payment()
return super(AccountInvoice, self).invoice_pay_customer()
@api.multi
def _check_pos_pending_payment(self):
invoices = self.filtered(lambda x: x.pos_pending_payment)
if invoices:
raise UserError(_(
"You can not realize this action on the invoice(s) %s because"
" there are pending payments in the Point of Sale.") % (
', '.join(invoices.mapped('name'))))