From e6ca39f1008ed991aa3f0b75f397c72ef234ca1e Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 2 Mar 2022 19:46:21 +0000 Subject: [PATCH] --- ayanova/src/api/dash-registry.js | 4 +- .../dash-workorder-overdue-personal-list.vue | 44 +++++++++++++++++-- 2 files changed, 44 insertions(+), 4 deletions(-) diff --git a/ayanova/src/api/dash-registry.js b/ayanova/src/api/dash-registry.js index cb27944f..f4b43776 100644 --- a/ayanova/src/api/dash-registry.js +++ b/ayanova/src/api/dash-registry.js @@ -36,7 +36,9 @@ export default { settings: { customTitle: null, wotags: [], - woitemtags: [] + wotagsany: true, + woitemtags: [], + woitemtagsany: true } }, { diff --git a/ayanova/src/components/dash-workorder-overdue-personal-list.vue b/ayanova/src/components/dash-workorder-overdue-personal-list.vue index 6d4ff6f8..18443262 100644 --- a/ayanova/src/components/dash-workorder-overdue-personal-list.vue +++ b/ayanova/src/components/dash-workorder-overdue-personal-list.vue @@ -51,16 +51,48 @@ + + + + - + + + + @@ -118,7 +150,9 @@ export default { //copy settings from local to parent settings, need to do it this way or get error about mutating prop directly which is vexing and has no easy solution seemingly this.settings.customTitle = this.localSettings.customTitle; this.settings.wotags = this.localSettings.wotags; + this.settings.wotagsany = this.localSettings.wotagsany; this.settings.woitemtags = this.localSettings.woitemtags; + this.settings.woitemtagsany = this.localSettings.woitemtagsany; this.$emit("dash-change"); //trigger save to server this.context = false; @@ -132,7 +166,9 @@ export default { KPIName: "WorkOrderOverduePersonalList", criteria: { wotags: this.settings.wotags, - woitemtags: this.settings.woitemtags + wotagsany: this.settings.wotagsany, + woitemtags: this.settings.woitemtags, + woitemtagsany: this.settings.woitemtagsany }, clientTimeStamp: window.$gz.locale.clientLocalZoneTimeStamp() }); @@ -164,7 +200,9 @@ async function fetchTranslatedText() { "Name", "WorkOrder", "WorkOrderItem", - "NoData" + "NoData", + "GridFilterDialogAndRadioText", + "GridFilterDialogOrRadioText" ]); }