From dd7c4de475ed9f009da9ced2454ef562c4469f0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20-=20Le=20Filament?= <remi@le-filament.com> Date: Wed, 7 Jul 2021 16:23:14 +0200 Subject: [PATCH] [fix] add missing import --- report/product_pricelist_report.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/report/product_pricelist_report.py b/report/product_pricelist_report.py index 599d114..b33344f 100644 --- a/report/product_pricelist_report.py +++ b/report/product_pricelist_report.py @@ -1,6 +1,8 @@ # Copyright 2021 Le Filament (<http://www.le-filament.com>) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import models + class report_product_pricelist(models.AbstractModel): _inherit = 'report.product.report_pricelist' -- GitLab