From 2144a7a0111b4db3ab61c3117ba3d5b764ee4eb0 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Sat, 13 Nov 2021 00:16:51 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 5 +++++ ayanova/src/components/tag-picker.vue | 7 +++++++ ayanova/src/views/adm-global-settings.vue | 3 ++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index d518ce38..a0f4057e 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -47,6 +47,11 @@ todo: Customer access +todo: case 4021 what is desired is a group by technician to show billable hours totals using workorder item labor report + maybe can make some javascript to reshape the data by hoisting the woitemlabor up and out, like invert the tree or something to that effect + want to avoid doing it at the server but if necessary then look into how to get db to do it, i.e. can it pull the same list but grouped by first somehow?? + or maybe the server can do the javascript equivalent to re-shape the data but as some kind of post process before it feeds it back to the report + i.e. grouping in c# not in javascript inside the headless browser. diff --git a/ayanova/src/components/tag-picker.vue b/ayanova/src/components/tag-picker.vue index 5dbd1fdc..b4aea64c 100644 --- a/ayanova/src/components/tag-picker.vue +++ b/ayanova/src/components/tag-picker.vue @@ -10,6 +10,8 @@ :items="sourcetags" :loading="tagSearchUnderway" :placeholder="placeHolderText" + :persistent-placeholder="persistentPlaceHolder" + :hint="hint" :prepend-inner-icon="prependInnerIcon" :no-data-text="$ay.t('NoData')" :search-input.sync="tagSearchEntry" @@ -73,6 +75,11 @@ export default { type: String, default: null }, + persistentPlaceHolder: { type: Boolean, default: false }, + hint: { + type: String, + default: null + }, prependInnerIcon: { type: String, default() { diff --git a/ayanova/src/views/adm-global-settings.vue b/ayanova/src/views/adm-global-settings.vue index e5d1ea59..db736106 100644 --- a/ayanova/src/views/adm-global-settings.vue +++ b/ayanova/src/views/adm-global-settings.vue @@ -218,11 +218,12 @@ @change="fieldValueChanged('customerAllowCSR')" > +