45 lines
2.1 KiB
Python
45 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
# Copyright (C) 2004-2008 PC Solutions (<http://pcsol.be>). All Rights Reserved
|
|
from odoo import fields, models, api, _
|
|
from odoo.exceptions import ValidationError
|
|
|
|
class AccountJournal(models.Model):
|
|
_inherit = 'account.journal'
|
|
|
|
pos_payment_method_ids = fields.One2many('pos.payment.method', 'journal_id', string='Point of Sale Payment Methods')
|
|
|
|
@api.constrains('type')
|
|
def _check_type(self):
|
|
methods = self.env['pos.payment.method'].sudo().search([("journal_id", "in", self.ids)])
|
|
if methods:
|
|
raise ValidationError(_("This journal is associated with a payment method. You cannot modify its type"))
|
|
|
|
def _check_no_active_payments(self):
|
|
hanging_journal_entries = self.env['pos.payment'].search(
|
|
[
|
|
('payment_method_id', 'in', self.pos_payment_method_ids.ids),
|
|
('session_id.state', '=', 'opened')
|
|
], limit=1)
|
|
if(hanging_journal_entries):
|
|
payment_method = hanging_journal_entries.payment_method_id.name
|
|
pos_order = hanging_journal_entries.pos_order_id.name
|
|
pos_session = hanging_journal_entries.session_id.name
|
|
raise ValidationError(_("This journal is associated with payment method %s that is being used by order %s in the active pos session %s", payment_method, pos_order, pos_session))
|
|
|
|
@api.ondelete(at_uninstall=False)
|
|
def _unlink_journal_except_with_active_payments(self):
|
|
for journal in self:
|
|
journal._check_no_active_payments()
|
|
|
|
def action_archive(self):
|
|
self._check_no_active_payments()
|
|
return super().action_archive()
|
|
|
|
def _get_journal_inbound_outstanding_payment_accounts(self):
|
|
res = super()._get_journal_inbound_outstanding_payment_accounts()
|
|
account_ids = set(res.ids)
|
|
for payment_method in self.sudo().pos_payment_method_ids:
|
|
account_ids.add(payment_method.outstanding_account_id.id or self.company_id.account_journal_payment_debit_account_id.id)
|
|
return self.env['account.account'].browse(account_ids)
|