mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
14 lines
430 B
Python
14 lines
430 B
Python
|
|
# The whole python file is ignored when the dependency is missing
|
|
# because it contains an old-style rml_parse report which would
|
|
# be loaded anyway
|
|
try:
|
|
from odoo.addons.report_xlsx_helper.report.abstract_report_xlsx \
|
|
import AbstractReportXlsx
|
|
except (ImportError, IOError) as err:
|
|
import logging
|
|
_logger = logging.getLogger(__name__)
|
|
_logger.debug(err)
|
|
else:
|
|
from . import account_asset_report_xls
|