Skip to content
Snippets Groups Projects
Commit 24505ae0 authored by Thomas Lefebvre (thle)'s avatar Thomas Lefebvre (thle)
Browse files

[FIX] account_edi: check fiscal period for an EDI cancellation


Steps to reproduce:
    - install a localization which uses the account_edi module;
    - define Lock date for the fiscal period;
    - choose an invoice which was sent before this date;
    - click on the "REQUEST EDI CANCELLATION" button.

Issue:
    We try to cancel the EDI document despite exceeding the fiscal period.

Cause:
	The verification of the fiscal period is done when clicking on the "RESET TO DRAFT" button which, in the flow, is after the request for cancellation of the EDI document.

Solution:
    Make a verification of the fiscal period when clicking on the "REQUEST EDI CANCELLATION" button.

opw-2990873

closes odoo/odoo#106073

X-original-commit: fda04e21
Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
parent b5306cce
Branches
Tags
No related merge requests found
......@@ -563,6 +563,7 @@ class AccountMove(models.Model):
'''
to_cancel_documents = self.env['account.edi.document']
for move in self:
move._check_fiscalyear_lock_date()
is_move_marked = False
for doc in move.edi_document_ids:
if doc.edi_format_id._needs_web_services() \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment