diff --git a/report/__init__.py b/report/__init__.py index 537678882bf0769d90d9b5a687eaf8782882e62c..f1728b3a30d33486401d11b626e51aca55561fac 100644 --- a/report/__init__.py +++ b/report/__init__.py @@ -1,4 +1,4 @@ -# -*- coding: utf-8 -*- -# Part of Odoo. See LICENSE file for full copyright and licensing details. +# Copyright 2021 Le Filament (<http://www.le-filament.com>) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import product_pricelist_report diff --git a/report/product_pricelist_report.py b/report/product_pricelist_report.py index d9c6c9ef8214cdc1c9a8726c63c07aecf2d33924..599d1144a6482e378ee5ddfa8acd18f8f108d195 100644 --- a/report/product_pricelist_report.py +++ b/report/product_pricelist_report.py @@ -1,8 +1,9 @@ # Copyright 2021 Le Filament (<http://www.le-filament.com>) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + class report_product_pricelist(models.AbstractModel): - _inherit = 'report.product.report_pricelist' + _inherit = 'report.product.report_pricelist' def _get_product_data(self, is_product_tmpl, product, pricelist, quantities): data = super()._get_product_data(is_product_tmpl, product, pricelist, quantities)