[FIX] Javascript definition name was duplicated

pull/213/head
Enric Tobella 2018-04-27 21:28:23 +02:00
parent 633cf96298
commit d7c8f6592a
2 changed files with 3 additions and 4 deletions

View File

@ -3,14 +3,13 @@
{ {
'name': "Base report xlsx", 'name': "Base report xlsx",
'summary': """ 'summary': "Base module to create xlsx report",
Base module to create xlsx report""",
'author': 'ACSONE SA/NV,' 'author': 'ACSONE SA/NV,'
'Creu Blanca,' 'Creu Blanca,'
'Odoo Community Association (OCA)', 'Odoo Community Association (OCA)',
'website': "http://github.com/oca/reporting-engine", 'website': "http://github.com/oca/reporting-engine",
'category': 'Reporting', 'category': 'Reporting',
'version': '11.0.1.0.1', 'version': '11.0.1.0.2',
'license': 'AGPL-3', 'license': 'AGPL-3',
'external_dependencies': { 'external_dependencies': {
'python': [ 'python': [

View File

@ -1,6 +1,6 @@
// © 2017 Creu Blanca // © 2017 Creu Blanca
// License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html). // 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'; 'use strict';
var ActionManager= require('web.ActionManager'); var ActionManager= require('web.ActionManager');