[ADD] report_csv

This commit is contained in:
Enric Tobella
2019-02-05 16:50:50 +01:00
committed by ferran-73
parent 76dc8b2754
commit 3058d46484
16 changed files with 397 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
// © 2019 Creu Blanca
// License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
odoo.define('report_csv.report', function(require){
'use strict';
var ActionManager= require('web.ActionManager');
var crash_manager = require('web.crash_manager');
var framework = require('web.framework');
ActionManager.include({
ir_actions_report: function (action, options){
var self = this;
var cloned_action = _.clone(action);
if (cloned_action.report_type === 'csv') {
framework.blockUI();
var report_csv_url = 'report/csv/' + cloned_action.report_name;
if (_.isUndefined(cloned_action.data) ||
_.isNull(cloned_action.data) ||
(_.isObject(cloned_action.data) && _.isEmpty(cloned_action.data)))
{
if(cloned_action.context.active_ids) {
report_csv_url += '/' + cloned_action.context.active_ids.join(',');
}
} else {
report_csv_url += '?options=' + encodeURIComponent(JSON.stringify(cloned_action.data));
report_csv_url += '&context=' + encodeURIComponent(JSON.stringify(cloned_action.context));
}
self.getSession().get_file({
url: report_csv_url,
data: {data: JSON.stringify([
report_csv_url,
cloned_action.report_type
])},
error: crash_manager.rpc_error.bind(crash_manager),
success: function (){
if(cloned_action && options && !cloned_action.dialog){
options.on_close();
}
}
});
framework.unblockUI();
return;
}
return self._super(action, options);
}
});
});