You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
706 B

/** @odoo-module **/
import { registry } from "@web/core/registry";
import { BlockUI } from "@web/core/ui/block_ui";
import { download } from "@web/core/network/download";
//this is used to call the controller and also passes the report data.
registry.category("ir.actions.report handlers").add("xlsx", async function (action) {
if (action.report_type === 'xlsx') {
BlockUI;
var def = $.Deferred();
await download({
url: '/xlsx_reports',
data: action.data,
success: def.resolve.bind(def),
error: (error) => this.call('crash_manager', 'rpc_error', error),
complete: () => unblockUI,
});
}
});