This commit is contained in:
2022-01-23 22:25:31 +00:00
parent 7acf7acb71
commit c27f27b2e1
2 changed files with 11 additions and 5 deletions

View File

@@ -187,7 +187,7 @@
:error-messages=" :error-messages="
form().serverErrors( form().serverErrors(
this, this,
`Items[${activeWoItemIndex}].units[${activeItemIndex}].notes` `Items[${activeWoItemIndex}].units[${activeItemIndex}].workOrderItemUnitNotes`
) )
" "
data-cy="unitUnitNotes" data-cy="unitUnitNotes"
@@ -215,7 +215,7 @@
:error-messages=" :error-messages="
form().serverErrors( form().serverErrors(
this, this,
`Items[${activeWoItemIndex}].units[${activeItemIndex}].tags` `Items[${activeWoItemIndex}].units[${activeItemIndex}].workOrderItemUnitTags`
) )
" "
@input=" @input="
@@ -266,6 +266,12 @@
:aya-type="$ay.ayt().WorkOrderItem" :aya-type="$ay.ayt().WorkOrderItem"
:aya-id="value.id" :aya-id="value.id"
:readonly="formState.readOnly" :readonly="formState.readOnly"
:error-messages="
form().serverErrors(
this,
`Items[${activeWoItemIndex}].units[${activeItemIndex}].workOrderItemUnitWiki`
)
"
@input=" @input="
fieldValueChanged( fieldValueChanged(
`Items[${activeWoItemIndex}].units[${activeItemIndex}].wiki` `Items[${activeWoItemIndex}].units[${activeItemIndex}].wiki`

View File

@@ -458,7 +458,7 @@
<v-col <v-col
v-if=" v-if="
form().showMe(this, 'WorkOrderItemWarrantyService') && form().showMe(this, 'WarrantyService') &&
!value.userIsRestrictedType !value.userIsRestrictedType
" "
cols="12" cols="12"
@@ -802,7 +802,7 @@ export default {
} }
if ( if (
this.form().showMe(this, "WorkOrderItemRequestDate") && this.form().showMe(this, "RequestDate") &&
!this.value.userIsRestrictedType !this.value.userIsRestrictedType
) { ) {
headers.push({ headers.push({
@@ -824,7 +824,7 @@ export default {
} }
if ( if (
this.form().showMe(this, "WorkOrderItemWarrantyService") && this.form().showMe(this, "WarrantyService") &&
!this.value.userIsRestrictedType !this.value.userIsRestrictedType
) { ) {
headers.push({ headers.push({