mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# Copyright 2024 - TODAY, Kaynnan Lemes <kaynnan.lemes@escflectra.com.br>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
# flake8: noqa: B950
|
|
|
|
from flectra import _, models
|
|
from flectra.exceptions import UserError
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
|
|
_inherit = "account.move"
|
|
|
|
def button_draft(self):
|
|
"""Handles the action of resetting entries to draft status.
|
|
|
|
Performs the operation of resetting entries to draft status. It iterates
|
|
through each entry, verifies if any associated payment order, and raises a UserError if so, preventing the reset operation.
|
|
|
|
Raises:
|
|
UserError: If an entry is associated with a Payment Order
|
|
"""
|
|
super().button_draft()
|
|
for move in self:
|
|
if (
|
|
self.env["account.move"]
|
|
.sudo()
|
|
.browse(move.id)
|
|
.line_ids.filtered(lambda line: line.payment_line_ids)
|
|
):
|
|
raise UserError(
|
|
_(
|
|
"You can't reset to draft because it's already associated with a Payment Order."
|
|
)
|
|
)
|