account_online_sync_patch/__manifest__.py
2026-05-28 16:58:55 +07:00

19 lines
744 B
Python

# -*- coding: utf-8 -*-
{
'name': 'Account Online Synchronization Patch',
'version': '19.0.1.0.0',
'category': 'Accounting',
'summary': 'Patch account online synchronization to prevent infinite loops and hangs on neutralized databases.',
'description': """
This module overrides the `fetch_online_sync_favorite_institutions` method on `account.journal`
to immediately return empty list `[]` if the database is neutralized (`database.is_neutralized` is true),
avoiding external requests that lock up Odoo's single-threaded Werkzeug server.
""",
'author': 'Suherdy Yacob',
'depends': ['account_online_synchronization'],
'data': [],
'installable': True,
'auto_install': True,
'license': 'LGPL-3',
}