From 1285df0ffd85147b613805dd27362ce123755f35 Mon Sep 17 00:00:00 2001 From: sinergia Date: Mon, 26 Jun 2023 14:29:38 -0500 Subject: [PATCH] correction to name module in __init__ --- __init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/__init__.py b/__init__.py index 542096c..081b1db 100644 --- a/__init__.py +++ b/__init__.py @@ -13,8 +13,8 @@ def register(): purchase.PurchaseLine, sale.Sale, sale.SaleLine, - module='analytic_operation', type_='model') + module='analytic_operations', type_='model') Pool.register( - module='analytic_operation', type_='wizard') + module='analytic_operations', type_='wizard') Pool.register( - module='analytic_operation', type_='report') + module='analytic_operations', type_='report')