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