From 3da81648356fb5f70b27db852f288cbec2e77eb4 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 2 Mar 2022 19:41:06 +0000 Subject: [PATCH] --- ayanova/src/api/dash-registry.js | 3 ++- ayanova/src/components/dash-csr-open-list.vue | 25 +++++++++++++++++-- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/ayanova/src/api/dash-registry.js b/ayanova/src/api/dash-registry.js index d7f8803e..cb27944f 100644 --- a/ayanova/src/api/dash-registry.js +++ b/ayanova/src/api/dash-registry.js @@ -54,7 +54,8 @@ export default { singleOnly: false, settings: { customTitle: null, - custtags: [] + custtags: [], + custtagsany: true } }, { diff --git a/ayanova/src/components/dash-csr-open-list.vue b/ayanova/src/components/dash-csr-open-list.vue index 8e83edbd..afbaadf6 100644 --- a/ayanova/src/components/dash-csr-open-list.vue +++ b/ayanova/src/components/dash-csr-open-list.vue @@ -54,11 +54,28 @@ + + + + @@ -125,6 +142,7 @@ export default { updateSettings: function() { this.settings.customTitle = this.localSettings.customTitle; this.settings.custtags = this.localSettings.custtags; + this.settings.custtagsany = this.localSettings.custtagsany; this.$emit("dash-change"); this.context = false; this.getDataFromApi(); @@ -136,7 +154,8 @@ export default { const res = await window.$gz.api.post("kpi", { KPIName: "CSROpenList", criteria: { - custtags: this.settings.custtags + custtags: this.settings.custtags, + custtagsany: this.settings.custtagsany }, clientTimeStamp: undefined }); @@ -167,7 +186,9 @@ async function fetchTranslatedText() { await window.$gz.translation.cacheTranslations([ "Name", "Customer", - "NoData" + "NoData", + "GridFilterDialogAndRadioText", + "GridFilterDialogOrRadioText" ]); }