This commit is contained in:
2022-01-23 20:14:23 +00:00
parent 01ebcea767
commit 0135a57caa
2 changed files with 8 additions and 8 deletions

View File

@@ -268,7 +268,7 @@ TODO: 1 BETA DOCS:
rather than bombing. maybe do this first so can catch the ones that slip through
- 1 todo: Search limited to a type is *not* working, it just returns all results, search from a Customer for example and you will see all object results
= 1 todo: tags required field validation not working?
- 1 todo: tags required field validation not working at all
- 1 todo: wiki control needs to be able to show validation errors when minimized so when it's a required field it can show if empty
- 1 todo: time control in native browser format isn't showing a title at all, check date as well. Date and time is ok
- 1 todo: help about does it show user has native date time input use browser override?
@@ -441,7 +441,7 @@ todo: 3 Schedule form reporting?
|_____/|______|_| \_\ \/ |______|_| \_\
todo: 1 seeding in log is not showing done or server open afterwards so looks like permenently seeding, debug log is showing server open
todo: 2 AyaNova is not logged an event when a serial number is reset but ther is an event type for that purpose
I'm not certain if this is related to editing an object to change the serial or the seed being changed

View File

@@ -262,10 +262,7 @@
</span></v-btn
>
</v-col>
<v-col
v-if="form().showMe(this, 'Items.WorkOrderItemSummary')"
cols="12"
>
<v-col cols="12">
<v-textarea
:ref="`items[${activeItemIndex}].notes`"
v-model="value.items[activeItemIndex].notes"
@@ -327,7 +324,7 @@
<v-col
v-if="
form().showMe(this, 'ItemRequestDate') &&
form().showMe(this, 'RequestDate') &&
!value.userIsRestrictedType
"
cols="12"
@@ -500,7 +497,10 @@
:readonly="formState.readOnly"
data-cy="tags"
:error-messages="
form().serverErrors(this, `items[${activeItemIndex}].tags`)
form().serverErrors(
this,
`items[${activeItemIndex}].workOrderItemTags`
)
"
@input="fieldValueChanged('tags')"
></gz-tag-picker>