@ibiz-template/runtime 0.7.25-alpha.1 → 0.7.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +3 -4
- package/dist/index.system.min.js +1 -1
- package/out/controller/control/report-panel/generator/generator-factory.d.ts.map +1 -1
- package/out/controller/control/report-panel/generator/generator-factory.js +0 -1
- package/out/controller/control/report-panel/report-panel.controller.d.ts.map +1 -1
- package/out/controller/control/report-panel/report-panel.controller.js +1 -3
- package/package.json +3 -3
package/dist/index.esm.js
CHANGED
|
@@ -39755,7 +39755,6 @@ var ReportPanelGeneratorFactory = class {
|
|
|
39755
39755
|
case "USER2":
|
|
39756
39756
|
return new User2ReportPanelGenerator(model);
|
|
39757
39757
|
case "DESYSBIREPORTS":
|
|
39758
|
-
case "DESYSBIREPORTS":
|
|
39759
39758
|
case "SYSBICUBE":
|
|
39760
39759
|
case "DESYSBICUBES":
|
|
39761
39760
|
case "ALLSYSBICUBES":
|
|
@@ -39846,7 +39845,7 @@ var ReportPanelController = class extends ControlController {
|
|
|
39846
39845
|
* @memberof ReportPanelController
|
|
39847
39846
|
*/
|
|
39848
39847
|
async load(args = {}) {
|
|
39849
|
-
if (this.state.reportType && (this.state.reportType === "DESYSBIREPORTS" || this.state.reportType === "
|
|
39848
|
+
if (this.state.reportType && (this.state.reportType === "DESYSBIREPORTS" || this.state.reportType === "SYSBICUBE" || this.state.reportType === "DESYSBICUBES" || this.state.reportType === "ALLSYSBICUBES" || this.state.reportType === "SYSBIREPORT" || this.state.reportType === "SYSBICUBEREPORTS" || this.state.reportType === "ALLSYSBIREPORTS")) {
|
|
39850
39849
|
return {};
|
|
39851
39850
|
}
|
|
39852
39851
|
await this.startLoading();
|
|
@@ -39926,9 +39925,9 @@ var ReportPanelController = class extends ControlController {
|
|
|
39926
39925
|
* @return {*} {Promise<boolean>}
|
|
39927
39926
|
*/
|
|
39928
39927
|
async openReportDesignPage() {
|
|
39929
|
-
if (this.state.reportType && (this.state.reportType === "DESYSBIREPORTS" || this.state.reportType === "
|
|
39928
|
+
if (this.state.reportType && (this.state.reportType === "DESYSBIREPORTS" || this.state.reportType === "SYSBICUBE" || this.state.reportType === "DESYSBICUBES" || this.state.reportType === "ALLSYSBICUBES" || this.state.reportType === "SYSBIREPORT" || this.state.reportType === "SYSBICUBEREPORTS" || this.state.reportType === "ALLSYSBIREPORTS")) {
|
|
39930
39929
|
const modal = ibiz.overlay.createModal(
|
|
39931
|
-
"
|
|
39930
|
+
"iBizBIReportDesign",
|
|
39932
39931
|
{
|
|
39933
39932
|
dismiss: () => modal.dismiss(),
|
|
39934
39933
|
context: this.context,
|