mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[IMP] report_xml: black, isort, prettier
This commit is contained in:
committed by
Enric Tobella
parent
d828bf55a7
commit
09d1d54ee6
@@ -1,16 +1,16 @@
|
||||
odoo.define("report_xml.ReportActionManager", function(require) {
|
||||
odoo.define("report_xml.ReportActionManager", function (require) {
|
||||
"use strict";
|
||||
|
||||
var ActionManager = require("web.ActionManager");
|
||||
|
||||
ActionManager.include({
|
||||
_executeReportAction: function(action, options) {
|
||||
_executeReportAction: function (action, options) {
|
||||
if (action.report_type === "qweb-xml") {
|
||||
return this._triggerDownload(action, options, "xml");
|
||||
}
|
||||
return this._super(action, options);
|
||||
},
|
||||
_makeReportUrls: function(action) {
|
||||
_makeReportUrls: function (action) {
|
||||
var reportUrls = this._super(action);
|
||||
reportUrls.xml = reportUrls.text.replace("/report/text/", "/report/xml/");
|
||||
return reportUrls;
|
||||
|
||||
Reference in New Issue
Block a user