This commit is contained in:
@@ -177,6 +177,42 @@
|
||||
"
|
||||
></gz-decimal>
|
||||
</v-col>
|
||||
|
||||
<v-col
|
||||
v-if="form().showMe(this, 'WorkOrderItemScheduledUserUserID')"
|
||||
cols="12"
|
||||
sm="6"
|
||||
lg="4"
|
||||
xl="3"
|
||||
>
|
||||
<gz-pick-list
|
||||
:aya-type="$ay.ayt().User"
|
||||
variant="tech"
|
||||
:show-edit-icon="true"
|
||||
v-model="
|
||||
value.items[activeWoItemIndex].scheduledUsers[activeItemIndex]
|
||||
.userId
|
||||
"
|
||||
:readonly="formState.readOnly || isDeleted"
|
||||
:disabled="isDeleted"
|
||||
:label="$ay.t('WorkOrderItemScheduledUserUserID')"
|
||||
:ref="
|
||||
`Items[${activeWoItemIndex}].scheduledUsers[${activeItemIndex}].userId`
|
||||
"
|
||||
data-cy="scheduledUsers.userid"
|
||||
:error-messages="
|
||||
form().serverErrors(
|
||||
this,
|
||||
`Items[${activeWoItemIndex}].scheduledUsers[${activeItemIndex}].userId`
|
||||
)
|
||||
"
|
||||
@input="
|
||||
fieldValueChanged(
|
||||
`Items[${activeWoItemIndex}].scheduledUsers[${activeItemIndex}].userId`
|
||||
)
|
||||
"
|
||||
></gz-pick-list>
|
||||
</v-col>
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -331,7 +331,7 @@
|
||||
|
||||
<v-col v-if="form().showMe(this, 'Items.WorkOrderItemWiki')" cols="12">
|
||||
<gz-wiki
|
||||
:aya-type="$ay.ayt.WorkOrderItem"
|
||||
:aya-type="$ay.ayt().WorkOrderItem"
|
||||
:aya-id="value.id"
|
||||
:ref="`items[${activeItemIndex}].wiki`"
|
||||
v-model="value.items[activeItemIndex].wiki"
|
||||
@@ -348,7 +348,7 @@
|
||||
>
|
||||
<gz-attachments
|
||||
:readonly="formState.readOnly"
|
||||
:aya-type="$ay.ayt.WorkOrderItem"
|
||||
:aya-type="$ay.ayt().WorkOrderItem"
|
||||
:aya-id="value.items[activeItemIndex].id"
|
||||
></gz-attachments
|
||||
></v-col>
|
||||
|
||||
Reference in New Issue
Block a user