This commit is contained in:
@@ -55,6 +55,8 @@
|
||||
data-cy="woAddress"
|
||||
/>
|
||||
</v-col>
|
||||
|
||||
<!-- ##################################################################################### -->
|
||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||
<v-checkbox
|
||||
v-model="value.active"
|
||||
@@ -66,6 +68,41 @@
|
||||
@change="fieldValueChanged('active')"
|
||||
></v-checkbox>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||
<v-row>
|
||||
<v-col cols="5">
|
||||
<v-text-field
|
||||
v-model="value.repeatInterval"
|
||||
:readonly="formState.readOnly"
|
||||
:label="$ay.t('RepeatInterval')"
|
||||
ref="repeatInterval"
|
||||
data-cy="repeatInterval"
|
||||
:rules="[form().integerValid(this, 'repeatInterval')]"
|
||||
:error-messages="form().serverErrors(this, 'repeatInterval')"
|
||||
@input="fieldValueChanged('repeatInterval')"
|
||||
type="number"
|
||||
></v-text-field>
|
||||
</v-col>
|
||||
<v-col cols="5">
|
||||
<v-select
|
||||
class="ml-1"
|
||||
v-model="value.repeatUnit"
|
||||
:items="pvm.selectLists.pmTimeUnits"
|
||||
item-text="name"
|
||||
item-value="id"
|
||||
:readonly="formState.readOnly"
|
||||
:ref="`repeatUnit`"
|
||||
data-cy="usertype"
|
||||
:rules="[form().integerValid(this, `repeatUnit`)]"
|
||||
:error-messages="form().serverErrors(this, `repeatUnit`)"
|
||||
@input="fieldValueChanged(`repeatUnit`)"
|
||||
></v-select>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</v-col>
|
||||
|
||||
<!-- ##################################################################################### -->
|
||||
<v-col
|
||||
v-if="
|
||||
form().showMe(this, 'WorkOrderSummary') &&
|
||||
|
||||
Reference in New Issue
Block a user