This commit is contained in:
@@ -140,7 +140,7 @@
|
||||
:error-messages="
|
||||
form().serverErrors(this, `items[${activeItemIndex}].techNotes`)
|
||||
"
|
||||
ref="items.techNotes"
|
||||
:ref="`items[${activeItemIndex}].techNotes`"
|
||||
data-cy="items.techNotes"
|
||||
@input="fieldValueChanged(`items[${activeItemIndex}].techNotes`)"
|
||||
auto-grow
|
||||
@@ -159,7 +159,7 @@
|
||||
v-model="value.items[activeItemIndex].requestDate"
|
||||
:readonly="formState.readOnly"
|
||||
:disabled="isDeleted"
|
||||
ref="requestDate"
|
||||
:ref="`items[${activeItemIndex}].requestDate`"
|
||||
data-cy="requestDate"
|
||||
:error-messages="
|
||||
form().serverErrors(this, `items[${activeItemIndex}].requestDate`)
|
||||
@@ -190,7 +190,7 @@
|
||||
`items[${activeItemIndex}].workorderItemStatusId`
|
||||
)
|
||||
"
|
||||
ref="workorderItemStatusId"
|
||||
:ref="`items[${activeItemIndex}].workorderItemStatusId`"
|
||||
data-cy="workorderItemStatusId"
|
||||
prepend-icon="$ayiEdit"
|
||||
@click:prepend="handleEditItemStatusClick()"
|
||||
@@ -243,7 +243,7 @@
|
||||
`items[${activeItemIndex}].workorderItemPriorityId`
|
||||
)
|
||||
"
|
||||
ref="workorderItemPriorityId"
|
||||
:ref="`items[${activeItemIndex}].workorderItemPriorityId`"
|
||||
data-cy="workorderItemPriorityId"
|
||||
prepend-icon="$ayiEdit"
|
||||
@click:prepend="handleEditItemPriorityClick()"
|
||||
@@ -285,7 +285,7 @@
|
||||
:readonly="formState.readOnly"
|
||||
:disabled="isDeleted"
|
||||
:label="$ay.t('WorkOrderItemWarrantyService')"
|
||||
ref="warrantyService"
|
||||
:ref="`items[${activeItemIndex}].warrantyService`"
|
||||
data-cy="warrantyService"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
@@ -301,7 +301,7 @@
|
||||
<gz-tag-picker
|
||||
v-model="value.items[activeItemIndex].tags"
|
||||
:readonly="formState.readOnly"
|
||||
ref="tags"
|
||||
:ref="`items[${activeItemIndex}].tags`"
|
||||
data-cy="tags"
|
||||
:error-messages="
|
||||
form().serverErrors(this, `items[${activeItemIndex}].tags`)
|
||||
@@ -317,7 +317,7 @@
|
||||
:readonly="formState.readOnly"
|
||||
:parent-v-m="this"
|
||||
key-start-with="Items.WorkOrderItemCustom"
|
||||
ref="customFields"
|
||||
:ref="`items[${activeItemIndex}].customFields`"
|
||||
data-cy="customFields"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
@@ -333,7 +333,7 @@
|
||||
<gz-wiki
|
||||
:aya-type="$ay.ayt.WorkOrderItem"
|
||||
:aya-id="value.id"
|
||||
ref="wiki"
|
||||
:ref="`items[${activeItemIndex}].wiki`"
|
||||
v-model="value.items[activeItemIndex].wiki"
|
||||
:readonly="formState.readOnly"
|
||||
@input="fieldValueChanged('wiki')"
|
||||
|
||||
Reference in New Issue
Block a user