From b764d3d0e65b62434dbe2aba4147eb3dc84fc47d Mon Sep 17 00:00:00 2001 From: Wilson Gomez Date: Sat, 5 Aug 2023 08:34:04 -0500 Subject: [PATCH] minor fix --- audit.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/audit.py b/audit.py index 28a35b8..771ba76 100644 --- a/audit.py +++ b/audit.py @@ -3,7 +3,6 @@ from trytond.pool import Pool, PoolMeta from trytond.model import ModelView, ModelSQL, fields from trytond.wizard import Wizard, StateView, Button, StateReport, StateTransition from dateutil.relativedelta import relativedelta -from trytond.modules.company import CompanyReport from datetime import timedelta from trytond.pyson import Eval, Bool from trytond.report import Report @@ -46,7 +45,7 @@ class AuditReportWizard(Wizard): return 'end' -class AuditReport(CompanyReport): +class AuditReport(Report): 'Audit Report' __name__ = 'account_col.audit_report'