[IMP] report_xml: black, isort, prettier

This commit is contained in:
Francisco Ivan Anton Prieto
2021-01-25 11:44:06 +01:00
committed by Enric Tobella
parent d828bf55a7
commit 09d1d54ee6
5 changed files with 22 additions and 12 deletions

View File

@@ -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;