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" ]); }