This commit is contained in:
2021-06-29 19:32:58 +00:00
parent ecdcdfaab9
commit 65ac723d9f
3 changed files with 13 additions and 12 deletions

View File

@@ -419,13 +419,13 @@ CURRENTLY DOING:
3891 3: Implement a workable duplication system 3891 3: Implement a workable duplication system
outstanding for this: outstanding for this:
- look for missed items at client like woitempriority etc
search for duplicate menu item and see what missed
- Remove at server duplicate route and de-document if found anywhere - Workorder should not duplicate part requests.
also any redundant support code that was related to duplication truncate that collection in all woitems (set to [])
NOT THE FOLLOWING THOUGH which are too complex to dupe at client
Translation, User, Purchaseorder, Contact,
- why is duplicate async now, doesn't need to be right??
consider: duplicate workorder if to be replacement for templates needs ability to: consider: duplicate workorder if to be replacement for templates needs ability to:
@@ -442,10 +442,11 @@ bugbug: tags are not *displaying* when a record is opened until click in a field
event. Fuck. event. Fuck.
tag picker hasn't been modified since april 30 and only to change a font tag picker hasn't been modified since april 30 and only to change a font
bug isn't due to change in tag picker itself bug isn't due to change in tag picker itself
I'm leaning toward a regression when updated tag picker source <v-autocomplete with vuetify I'm leaning toward a vuetify regression when updated tag picker source <v-autocomplete with vuetify
look into that aspect look into that aspect
smoking gun: Vue and vuetify were updated the day after posting to devops working version smoking gun: Vue and vuetify were updated the day after posting to devops working version
check for another use of v-autocomplete and see if same issue to confirm then check for update since or bug reports on vuetify check for another use of v-autocomplete and see if same issue to confirm then check for update since or bug reports on vuetify
Maybe just check for front end updates through vue ui and if there any vuetify do it then check if fixed before digging too deeply
todo: User duplicate not working, error about optionsobj todo: User duplicate not working, error about optionsobj

View File

@@ -397,7 +397,7 @@ function generateMenu(vm) {
isMain: false, isMain: false,
readOnly: vm.formState.readOnly, readOnly: vm.formState.readOnly,
icon: "$ayiFireAlt", icon: "$ayiFireAlt",
title: "WorkOrderItemPriority", title: "WorkOrderItemPriorityID",
helpUrl: "svc-work-order-item-priority", helpUrl: "svc-work-order-item-priority",
formData: { formData: {
ayaType: window.$gz.type.WorkOrderItemPriority, ayaType: window.$gz.type.WorkOrderItemPriority,
@@ -460,7 +460,7 @@ async function initForm(vm) {
// //
async function fetchTranslatedText() { async function fetchTranslatedText() {
await window.$gz.translation.cacheTranslations([ await window.$gz.translation.cacheTranslations([
"WorkOrderItemPriority", "WorkOrderItemPriorityID",
"WorkOrderItemPriorityName", "WorkOrderItemPriorityName",
"WorkOrderItemPriorityColor" "WorkOrderItemPriorityColor"
]); ]);

View File

@@ -410,7 +410,7 @@ function generateMenu(vm) {
isMain: false, isMain: false,
readOnly: vm.formState.readOnly, readOnly: vm.formState.readOnly,
icon: "$ayiCircle", icon: "$ayiCircle",
title: "WorkOrderItemStatus", title: "WorkOrderItemWorkOrderStatusID",
helpUrl: "svc-work-order-item-status", helpUrl: "svc-work-order-item-status",
formData: { formData: {
ayaType: window.$gz.type.WorkOrderItemStatus, ayaType: window.$gz.type.WorkOrderItemStatus,
@@ -475,7 +475,7 @@ async function initForm(vm) {
// //
async function fetchTranslatedText() { async function fetchTranslatedText() {
await window.$gz.translation.cacheTranslations([ await window.$gz.translation.cacheTranslations([
"WorkOrderItemStatus", "WorkOrderItemWorkOrderStatusID",
"WorkOrderItemStatusName", "WorkOrderItemStatusName",
"WorkOrderItemStatusColor", "WorkOrderItemStatusColor",
"WorkOrderItemStatusNotes" "WorkOrderItemStatusNotes"