This commit is contained in:
@@ -32,6 +32,64 @@
|
|||||||
"
|
"
|
||||||
></v-text-field>
|
></v-text-field>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-text-field
|
||||||
|
v-model="obj.workorderNextSerial"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:label="$ay.t('NextWorkorderNumber')"
|
||||||
|
ref="workorderNextSerial"
|
||||||
|
data-cy="workorderNextSerial"
|
||||||
|
:rules="[
|
||||||
|
form().integerValid(this, 'workorderNextSerial'),
|
||||||
|
form().required(this, 'workorderNextSerial')
|
||||||
|
]"
|
||||||
|
:error-messages="form().serverErrors(this, 'workorderNextSerial')"
|
||||||
|
@input="fieldValueChanged('workorderNextSerial')"
|
||||||
|
append-outer-icon="$ayiSave"
|
||||||
|
@click:append-outer="
|
||||||
|
submit(ayaTypes().WorkOrder, obj.workorderNextSerial)
|
||||||
|
"
|
||||||
|
></v-text-field>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-text-field
|
||||||
|
v-model="obj.quoteNextSerial"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:label="$ay.t('NextQuoteNumber')"
|
||||||
|
ref="quoteNextSerial"
|
||||||
|
data-cy="quoteNextSerial"
|
||||||
|
:rules="[
|
||||||
|
form().integerValid(this, 'quoteNextSerial'),
|
||||||
|
form().required(this, 'quoteNextSerial')
|
||||||
|
]"
|
||||||
|
:error-messages="form().serverErrors(this, 'quoteNextSerial')"
|
||||||
|
@input="fieldValueChanged('quoteNextSerial')"
|
||||||
|
append-outer-icon="$ayiSave"
|
||||||
|
@click:append-outer="
|
||||||
|
submit(ayaTypes().Quote, obj.quoteNextSerial)
|
||||||
|
"
|
||||||
|
></v-text-field>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-text-field
|
||||||
|
v-model="obj.pmNextSerial"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:label="$ay.t('NextPMNumber')"
|
||||||
|
ref="pmNextSerial"
|
||||||
|
data-cy="pmNextSerial"
|
||||||
|
:rules="[
|
||||||
|
form().integerValid(this, 'pmNextSerial'),
|
||||||
|
form().required(this, 'pmNextSerial')
|
||||||
|
]"
|
||||||
|
:error-messages="form().serverErrors(this, 'pmNextSerial')"
|
||||||
|
@input="fieldValueChanged('pmNextSerial')"
|
||||||
|
append-outer-icon="$ayiSave"
|
||||||
|
@click:append-outer="submit(ayaTypes().PM, obj.pmNextSerial)"
|
||||||
|
></v-text-field>
|
||||||
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-form>
|
</v-form>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|||||||
Reference in New Issue
Block a user