diff --git a/ayanova/src/api/dash-registry.js b/ayanova/src/api/dash-registry.js index f4b43776..8f874083 100644 --- a/ayanova/src/api/dash-registry.js +++ b/ayanova/src/api/dash-registry.js @@ -76,9 +76,11 @@ export default { singleOnly: false, settings: { customTitle: null, + wostatus: null, wotags: [], + wotagsany: true, woitemtags: [], - wostatus: null + woitemtagsany: true } }, { diff --git a/ayanova/src/components/dash-workorder-unscheduled-open-list.vue b/ayanova/src/components/dash-workorder-unscheduled-open-list.vue index 5af995ad..36361f84 100644 --- a/ayanova/src/components/dash-workorder-unscheduled-open-list.vue +++ b/ayanova/src/components/dash-workorder-unscheduled-open-list.vue @@ -87,16 +87,48 @@ + + + + - + + + + @@ -160,7 +192,9 @@ export default { this.settings.customTitle = this.localSettings.customTitle; this.settings.wostatus = this.localSettings.wostatus; 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; @@ -175,7 +209,9 @@ export default { criteria: { wostatus: this.settings.wostatus, 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() }); @@ -210,7 +246,9 @@ async function fetchTranslatedText() { "WorkOrder", "WorkOrderItem", "WorkOrderStatus", - "NoData" + "NoData", + "GridFilterDialogAndRadioText", + "GridFilterDialogOrRadioText" ]); }