This commit is contained in:
2020-09-16 20:41:47 +00:00
parent 425ef921e5
commit 943e390bce
4 changed files with 55 additions and 56 deletions

View File

@@ -10,6 +10,10 @@ todo: NON DEV MODE
No stack trace in error messages!
But do keep stack trace in internal LOG for diagnosis
todo: when server down get this weird TypeError string at client:
"Could not connect to AyaNova server at http://localhost:7575/api/v8.0/
Error: TypeError: NetworkError when attempting to fetch resource."
todo: a script error when just running a report from the report selector acts weird
Test with dev mode off to confirm it won't show it in the UI
Should show the error in the UI

View File

@@ -34,7 +34,6 @@ function dealWithError(msg, vm) {
console.error(errMsg);
console.trace();
debugger;
// window.$gz.eventBus.$emit("notify-error", "Dev error see log / console");
return;
}

View File

@@ -89,19 +89,20 @@ export default {
let reportDataOptions = vm.reportDataOptions;
if (!reportDataOptions) {
throw new Error("Missing report data unable to render report");
this.reject("Missing report data unable to render report");
}
reportDataOptions.ReportId = reportId;
//Meta data from client for use by report script
reportDataOptions.ClientMeta = window.$gz.api.reportClientMetaData();
let url = "report/render";
let res = await window.$gz.api.upsert(url, reportDataOptions);
if (res.error) {
throw new Error(res.error);
this.reject(res);
} else {
let reportUrl = window.$gz.api.reportDownloadUrl(res.data);
if (window.open(reportUrl, "Report") == null) {
throw new Error(
this.reject(
"Problem displaying report in new window. Browser must allow pop-ups to view reports; check your browser setting"
);
}

View File

@@ -611,7 +611,6 @@ async function clickHandler(menuItem) {
return;
}
let m = window.$gz.menu.parseMenuItem(menuItem);
try {
if (m.owner == FORM_KEY && !m.disabled) {
switch (m.key) {
case "save":
@@ -666,10 +665,6 @@ async function clickHandler(menuItem) {
);
}
}
} catch (ex) {
console.log("Widget menu handler error handler");
window.$gz.errorHandler.handleFormError(ex, m.vm);
}
}
//////////////////////