80 lines
2.7 KiB
Python
80 lines
2.7 KiB
Python
# Copyright 2015-2019 ACSONE SA/NV (<http://acsone.eu>)
|
|
# Copyright 2021 CorporateHub (https://corporatehub.eu)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import _, models
|
|
from odoo.exceptions import UserError
|
|
from odoo.osv import expression
|
|
from odoo.tools.misc import format_date
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = "account.move"
|
|
|
|
def _get_conflicting_invoices_domain(self):
|
|
self.ensure_one()
|
|
domain = [
|
|
("journal_id", "=", self.journal_id.id),
|
|
("type", "!=", "entry"),
|
|
]
|
|
if (
|
|
self.journal_id.refund_sequence
|
|
and self.journal_id.sequence_id != self.journal_id.refund_sequence_id
|
|
):
|
|
domain.append(("type", "=", self.type))
|
|
return domain
|
|
|
|
def _get_older_conflicting_invoices_domain(self):
|
|
self.ensure_one()
|
|
return expression.AND(
|
|
[
|
|
self._get_conflicting_invoices_domain(),
|
|
[
|
|
("state", "=", "draft"),
|
|
("invoice_date", "!=", False),
|
|
("invoice_date", "<", self.invoice_date),
|
|
],
|
|
]
|
|
)
|
|
|
|
def _raise_older_conflicting_invoices(self):
|
|
self.ensure_one()
|
|
raise UserError(
|
|
_(
|
|
"Chronology conflict: A conflicting draft invoice dated before "
|
|
"{date_invoice} exists, please validate it first."
|
|
).format(date_invoice=format_date(self.env, self.invoice_date))
|
|
)
|
|
|
|
def _get_newer_conflicting_invoices_domain(self):
|
|
self.ensure_one()
|
|
return expression.AND(
|
|
[
|
|
self._get_conflicting_invoices_domain(),
|
|
[("state", "=", "posted"), ("invoice_date", ">", self.invoice_date)],
|
|
]
|
|
)
|
|
|
|
def _raise_newer_conflicting_invoices(self):
|
|
self.ensure_one()
|
|
raise UserError(
|
|
_(
|
|
"Chronology conflict: A conflicting validated invoice dated after "
|
|
"{date_invoice} exists."
|
|
).format(date_invoice=format_date(self.env, self.invoice_date))
|
|
)
|
|
|
|
def write(self, vals):
|
|
if vals.get("state") != "posted":
|
|
return super().write(vals)
|
|
|
|
newly_posted = self.filtered(lambda move: move.state != "posted")
|
|
res = super().write(vals)
|
|
for move in newly_posted & self.filtered("journal_id.check_chronology"):
|
|
if self.search(move._get_older_conflicting_invoices_domain(), limit=1):
|
|
move._raise_older_conflicting_invoices()
|
|
if self.search(move._get_newer_conflicting_invoices_domain(), limit=1):
|
|
move._raise_newer_conflicting_invoices()
|
|
|
|
return res
|