[MIG] account_financial_report: Migration to 17.0

This commit is contained in:
Henrik Norlin
2024-01-24 19:36:27 +01:00
committed by chaule97
parent 0b128f03ee
commit e6904a2449
8 changed files with 53 additions and 72 deletions

View File

@@ -1,40 +1,40 @@
/** @odoo-module **/
import {ReportAction} from "@web/webclient/actions/reports/report_action";
import {patch} from "web.utils";
import {useEnrichWithActionLinks} from "./report.esm";
// /** @odoo-module **/
// import {ReportAction} from "@web/webclient/actions/reports/report_action";
// import { patch } from "@web/core/utils/patch";
// import {useEnrichWithActionLinks} from "./report.esm";
const MODULE_NAME = "account_financial_report";
// const MODULE_NAME = "account_financial_report";
patch(ReportAction.prototype, "account_financial_report.ReportAction", {
setup() {
this._super.apply(this, arguments);
this.isAccountFinancialReport = this.props.report_name.startsWith(
`${MODULE_NAME}.`
);
useEnrichWithActionLinks(this.iframe);
},
// patch(ReportAction.prototype, "account_financial_report.ReportAction", {
// setup() {
// this._super.apply(this, arguments);
// this.isAccountFinancialReport = this.props.report_name.startsWith(
// `${MODULE_NAME}.`
// );
// useEnrichWithActionLinks(this.iframe);
// },
export() {
this.action.doAction({
type: "ir.actions.report",
report_type: "xlsx",
report_name: this._get_xlsx_name(this.props.report_name),
report_file: this._get_xlsx_name(this.props.report_file),
data: this.props.data || {},
context: this.props.context || {},
display_name: this.title,
});
},
// export() {
// this.action.doAction({
// type: "ir.actions.report",
// report_type: "xlsx",
// report_name: this._get_xlsx_name(this.props.report_name),
// report_file: this._get_xlsx_name(this.props.report_file),
// data: this.props.data || {},
// context: this.props.context || {},
// display_name: this.title,
// });
// },
/**
* @param {String} str
* @returns {String}
*/
_get_xlsx_name(str) {
if (!_.isString(str)) {
return str;
}
const parts = str.split(".");
return `a_f_r.report_${parts[parts.length - 1]}_xlsx`;
},
});
// /**
// * @param {String} str
// * @returns {String}
// */
// _get_xlsx_name(str) {
// if (!_.isString(str)) {
// return str;
// }
// const parts = str.split(".");
// return `a_f_r.report_${parts[parts.length - 1]}_xlsx`;
// },
// });