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'