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.
21 lines
633 B
21 lines
633 B
# Copyright (C) 2013 - 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).
|
|
|
|
import logging
|
|
|
|
from odoo import api, models
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
class PosSession(models.Model):
|
|
_inherit = 'pos.session'
|
|
|
|
@api.multi
|
|
def action_pos_session_close(self):
|
|
res = super().action_pos_session_close()
|
|
orders = self.mapped('order_ids').filtered(lambda x: x.invoice_id)
|
|
orders.mapped('invoice_id').write({'pos_pending_payment': False})
|
|
return res
|