This commit is contained in:
2021-04-12 20:27:49 +00:00
parent 38db1f5361
commit a9b93613d7
2 changed files with 15 additions and 0 deletions

View File

@@ -28,6 +28,20 @@
</div>
</template>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<gz-pick-list
:aya-type="$ay.ayt().Customer"
:show-edit-icon="true"
v-model="value.customerId"
:readonly="formState.readOnly"
:label="$ay.t('Customer')"
ref="customerId"
data-cy="customerId"
:rules="[form().required(this, 'customerId')]"
:error-messages="form().serverErrors(this, 'customerId')"
@input="fieldValueChanged('customerId')"
></gz-pick-list>
</v-col>
<v-col
v-if="form().showMe(this, 'ProjectAccountNumber')"
cols="12"