From d7c8f6592af7cbc6a7d40c856c3892c21a58dcec Mon Sep 17 00:00:00 2001 From: Enric Tobella Date: Fri, 27 Apr 2018 21:28:23 +0200 Subject: [PATCH] [FIX] Javascript definition name was duplicated --- report_xlsx/__manifest__.py | 5 ++--- report_xlsx/static/src/js/report/qwebactionmanager.js | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/report_xlsx/__manifest__.py b/report_xlsx/__manifest__.py index d0d92dc0..95eb30c5 100644 --- a/report_xlsx/__manifest__.py +++ b/report_xlsx/__manifest__.py @@ -3,14 +3,13 @@ { 'name': "Base report xlsx", - 'summary': """ - Base module to create xlsx report""", + 'summary': "Base module to create xlsx report", 'author': 'ACSONE SA/NV,' 'Creu Blanca,' 'Odoo Community Association (OCA)', 'website': "http://github.com/oca/reporting-engine", 'category': 'Reporting', - 'version': '11.0.1.0.1', + 'version': '11.0.1.0.2', 'license': 'AGPL-3', 'external_dependencies': { 'python': [ diff --git a/report_xlsx/static/src/js/report/qwebactionmanager.js b/report_xlsx/static/src/js/report/qwebactionmanager.js index 5288df1e..3d560d86 100644 --- a/report_xlsx/static/src/js/report/qwebactionmanager.js +++ b/report_xlsx/static/src/js/report/qwebactionmanager.js @@ -1,6 +1,6 @@ // © 2017 Creu Blanca // License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). -odoo.define('report_xml.report', function(require){ +odoo.define('report_xlsx.report', function(require){ 'use strict'; var ActionManager= require('web.ActionManager');