diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt
index 2493e043..76508a72 100644
--- a/ayanova/devdocs/todo.txt
+++ b/ayanova/devdocs/todo.txt
@@ -301,7 +301,8 @@ TESTING INFO:
set to 1m timeout and then run a ginormous report or temp set server to always timeout is probably better for testing purposes
- report designer print needs to be fixed to use new system
- direct print report from url must be tested and fixed up
-
+ - upload and test on devops
+ - give to Joyce to mangle
- 1 todo: add the caching technique to *all* the other getreportdata methods as was done with workorder
diff --git a/ayanova/src/components/report-control.vue b/ayanova/src/components/report-control.vue
index 0c35f692..048fcffa 100644
--- a/ayanova/src/components/report-control.vue
+++ b/ayanova/src/components/report-control.vue
@@ -170,16 +170,11 @@ export default {
const jobLogRes = await window.$gz.api.get(
`job-operations/logs/${jobId}`
);
- //console.log(jobLogRes);
- //todo:look for reportfilename property in job log here and then put in reportUrl
- //debugger;
if (Array.isArray(jobLogRes.data)) {
//walk the array backwards as it's probably the final entry in the log
for (var i = jobLogRes.data.length - 1; i >= 0; i--) {
var v = jobLogRes.data[i].statusText;
- //console.log("value type is:", typeof v);
if (v.includes("reportfilename")) {
- console.log("Parsing:", v);
const o = JSON.parse(v);
reportUrl = window.$gz.api.reportDownloadUrl(
o.reportfilename
diff --git a/ayanova/src/views/ay-report-edit.vue b/ayanova/src/views/ay-report-edit.vue
index fda47a7d..4aa735db 100644
--- a/ayanova/src/views/ay-report-edit.vue
+++ b/ayanova/src/views/ay-report-edit.vue
@@ -307,6 +307,7 @@
+