This commit is contained in:
2022-01-24 19:47:40 +00:00
parent a4facde871
commit bda0e79e43
2 changed files with 7 additions and 10 deletions

View File

@@ -59,7 +59,7 @@
:readonly="formState.readOnly || value.userIsTechRestricted"
:label="$ay.t('QuotePreparedByID')"
data-cy="preparedById"
:error-messages="form().serverErrors(this, 'preparedById')"
:error-messages="form().serverErrors(this, 'QuotePreparedByID')"
@input="fieldValueChanged('preparedById')"
></gz-pick-list>
</v-col>
@@ -120,7 +120,7 @@
v-model="value.introduction"
:readonly="formState.readOnly || value.userIsTechRestricted"
:label="$ay.t('QuoteIntroduction')"
:error-messages="form().serverErrors(this, 'introduction')"
:error-messages="form().serverErrors(this, 'QuoteIntroduction')"
data-cy="introduction"
auto-grow
@input="fieldValueChanged('introduction')"
@@ -167,7 +167,7 @@
:label="$ay.t('QuoteQuoteRequestDate')"
:readonly="formState.readOnly || value.userIsTechRestricted"
data-cy="requested"
:error-messages="form().serverErrors(this, 'requested')"
:error-messages="form().serverErrors(this, 'QuoteQuoteRequestDate')"
@input="fieldValueChanged('requested')"
></gz-date-time-picker>
</v-col>
@@ -191,7 +191,7 @@
:label="$ay.t('QuoteValidUntilDate')"
:readonly="formState.readOnly || value.userIsTechRestricted"
data-cy="validUntil"
:error-messages="form().serverErrors(this, 'validUntil')"
:error-messages="form().serverErrors(this, 'QuoteValidUntilDate')"
@input="fieldValueChanged('validUntil')"
></gz-date-time-picker>
</v-col>
@@ -215,7 +215,7 @@
:label="$ay.t('QuoteDateSubmitted')"
:readonly="formState.readOnly || value.userIsTechRestricted"
data-cy="submitted"
:error-messages="form().serverErrors(this, 'submitted')"
:error-messages="form().serverErrors(this, 'QuoteDateSubmitted')"
@input="fieldValueChanged('submitted')"
></gz-date-time-picker>
</v-col>
@@ -239,7 +239,7 @@
:label="$ay.t('QuoteDateApproved')"
:readonly="formState.readOnly || value.userIsTechRestricted"
data-cy="approved"
:error-messages="form().serverErrors(this, 'approved')"
:error-messages="form().serverErrors(this, 'QuoteDateApproved')"
@input="fieldValueChanged('approved')"
></gz-date-time-picker>
</v-col>

View File

@@ -215,10 +215,7 @@
}}<v-icon right large>$ayiTrashRestoreAlt</v-icon></v-btn
>
<div ref="topform"></div>
<v-col
v-if="form().showMe(this, 'Items.WorkOrderItemSummary')"
cols="12"
>
<v-col cols="12">
<v-textarea
:ref="`items[${activeItemIndex}].notes`"
v-model="value.items[activeItemIndex].notes"