From 7d0b07784e9d29346a7520764c5871b6deac0be3 Mon Sep 17 00:00:00 2001 From: Sreejith P Date: Tue, 15 Jan 2019 10:16:29 +0530 Subject: [PATCH] [FIX]NameError Fixed --- account_pdc_payment_report/__manifest__.py | 2 +- account_pdc_payment_report/report/report_payment.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/account_pdc_payment_report/__manifest__.py b/account_pdc_payment_report/__manifest__.py index 165e44e84..0822c557a 100644 --- a/account_pdc_payment_report/__manifest__.py +++ b/account_pdc_payment_report/__manifest__.py @@ -22,7 +22,7 @@ ############################################################################## { 'name': 'PDC Payments Report', - 'version': '11.0.1.0', + 'version': '11.0.2.0', 'author': 'Cybrosys Techno Solutions', 'company': 'Cybrosys Techno Solutions', 'website': 'http://www.cybrosys.com', diff --git a/account_pdc_payment_report/report/report_payment.py b/account_pdc_payment_report/report/report_payment.py index d77d7eb59..a0d1084ce 100644 --- a/account_pdc_payment_report/report/report_payment.py +++ b/account_pdc_payment_report/report/report_payment.py @@ -23,7 +23,7 @@ import time import logging -from odoo import api, models +from odoo import api, models, _ from odoo.exceptions import UserError _logger = logging.getLogger(__name__)