[IMP] account_ebics: hide process button on ebics_file when no download process

This commit is contained in:
Luc De Meyer
2025-01-03 15:01:54 +01:00
parent 7425d6003b
commit 30313e58a4
11 changed files with 113 additions and 81 deletions

View File

@@ -0,0 +1,15 @@
# Copyright 2009-2025 Noviat.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
def migrate(cr, version):
cr.execute( # pylint: disable=E8103
"""
UPDATE ebics_file ef
SET state = 'done'
FROM ebics_file_format eff
WHERE ef.format_id = eff.id
AND eff.type = 'down'
AND eff.download_process_method IS NULL;
"""
)