From af2852f51c3624511b0e385fde7f34bb5b557a72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Didderen=20J=C3=A9r=C3=A9my?= Date: Mon, 24 Oct 2022 11:34:37 +0200 Subject: [PATCH] [FIX] account_financial_report - fix abstract report class name --- account_financial_report/report/abstract_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_financial_report/report/abstract_report.py b/account_financial_report/report/abstract_report.py index 96e32351..29c84e05 100644 --- a/account_financial_report/report/abstract_report.py +++ b/account_financial_report/report/abstract_report.py @@ -4,7 +4,7 @@ from odoo import api, models -class AgedPartnerBalanceReport(models.AbstractModel): +class AccountFinancialAbstractReport(models.AbstractModel): _name = "report.account_financial_report.abstract_report" _description = "Abstract Report"