This commit is contained in:
@@ -22,9 +22,9 @@
|
|||||||
@input="fieldValueChanged('eventType')"
|
@input="fieldValueChanged('eventType')"
|
||||||
></v-select>
|
></v-select>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
todo: idValue / decValue here for wostatus, quotestatus, "The Andy" etc
|
todo: idValue / decValue here for wostatus, quotestatus, "The
|
||||||
Separate for each with a v-if conditional
|
Andy" etc Separate for each with a v-if conditional
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
@@ -57,6 +57,71 @@
|
|||||||
@input="fieldValueChanged('advanceNotice')"
|
@input="fieldValueChanged('advanceNotice')"
|
||||||
></gz-duration-picker>
|
></gz-duration-picker>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-select
|
||||||
|
v-model="obj.deliveryMethod"
|
||||||
|
:items="selectLists.deliveryMethods"
|
||||||
|
item-text="name"
|
||||||
|
item-value="id"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:disabled="formState.readOnly"
|
||||||
|
:label="$ay.t('NotifyDeliveryMethod')"
|
||||||
|
ref="deliveryMethod"
|
||||||
|
:data-cy="!!$ay.dev ? 'deliveryMethod' : false"
|
||||||
|
:rules="[form().integerValid(this, 'deliveryMethod')]"
|
||||||
|
:error-messages="form().serverErrors(this, 'deliveryMethod')"
|
||||||
|
@input="fieldValueChanged('deliveryMethod')"
|
||||||
|
></v-select>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-text-field
|
||||||
|
v-model="obj.deliveryAddress"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:disabled="formState.readOnly"
|
||||||
|
:clearable="!formState.readOnly"
|
||||||
|
@click:clear="fieldValueChanged('deliveryAddress')"
|
||||||
|
:counter="255"
|
||||||
|
:label="$ay.t('NotifyDeliveryAddress')"
|
||||||
|
:rules="[form().required(this, 'deliveryAddress')]"
|
||||||
|
:error-messages="form().serverErrors(this, 'deliveryAddress')"
|
||||||
|
ref="deliveryAddress"
|
||||||
|
:data-cy="!!$ay.dev ? 'deliveryAddress' : false"
|
||||||
|
@input="fieldValueChanged('deliveryAddress')"
|
||||||
|
></v-text-field>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
ATTACH REPORT todo: dynamic list of reports to select from for
|
||||||
|
type chosen
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12">
|
||||||
|
<gz-tag-picker
|
||||||
|
v-model="obj.inTags"
|
||||||
|
:label="$ay.t('InTags')"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:disabled="formState.readOnly"
|
||||||
|
ref="inTags"
|
||||||
|
:data-cy="!!$ay.dev ? 'inTags' : false"
|
||||||
|
:error-messages="form().serverErrors(this, 'inTags')"
|
||||||
|
@input="fieldValueChanged('inTags')"
|
||||||
|
></gz-tag-picker>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12">
|
||||||
|
<gz-tag-picker
|
||||||
|
v-model="obj.outTags"
|
||||||
|
:label="$ay.t('OutTags')"
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:disabled="formState.readOnly"
|
||||||
|
ref="outTags"
|
||||||
|
:data-cy="!!$ay.dev ? 'outTags' : false"
|
||||||
|
:error-messages="form().serverErrors(this, 'outTags')"
|
||||||
|
@input="fieldValueChanged('outTags')"
|
||||||
|
></gz-tag-picker>
|
||||||
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-form>
|
</v-form>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|||||||
Reference in New Issue
Block a user