This commit is contained in:
2021-02-10 15:53:45 +00:00
parent 6198714184
commit aa5a952aa4
90 changed files with 478 additions and 477 deletions

View File

@@ -3,7 +3,7 @@
<gz-report-selector ref="reportSelector"></gz-report-selector>
<div v-if="formState.ready">
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
<v-form ref="form">
<v-tabs mobile-breakpoint="100" v-model="tab">
@@ -21,9 +21,9 @@
xl="3"
>
<gz-pick-list
:ayaType="ayaTypes().Customer"
:showEditIcon="true"
:includeInactive="true"
:aya-type="ayaTypes().Customer"
:show-edit-icon="true"
:include-inactive="true"
v-model="obj.customerId"
:readonly="true"
:disabled="true"
@@ -45,9 +45,9 @@
xl="3"
>
<gz-pick-list
:ayaType="ayaTypes().HeadOffice"
:showEditIcon="true"
:includeInactive="true"
:aya-type="ayaTypes().HeadOffice"
:show-edit-icon="true"
:include-inactive="true"
v-model="obj.headOfficeId"
:readonly="true"
:disabled="true"
@@ -78,10 +78,10 @@
v-model="obj.roles"
:readonly="formState.readOnly"
ref="roles"
testId="roles"
test-id="roles"
:error-messages="form().serverErrors(this, 'roles')"
@input="fieldValueChanged('roles')"
limitSelectionTo="outside"
limit-selection-to="outside"
></gz-role-picker>
</v-col>
@@ -125,7 +125,7 @@
v-model="obj.lastLogin"
readonly
ref="lastLogin"
testId="lastLogin"
test-id="lastLogin"
></gz-date-time-picker>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
@@ -166,9 +166,9 @@
<v-col cols="12">
<gz-custom-fields
v-model="obj.customFields"
:formKey="formCustomTemplateKey"
:form-key="formCustomTemplateKey"
:readonly="formState.readOnly"
:parentVM="this"
:parent-v-m="this"
ref="customFields"
data-cy="customFields"
:error-messages="form().serverErrors(this, 'customFields')"
@@ -178,8 +178,8 @@
<v-col v-if="form().showMe(this, 'Wiki')" cols="12">
<gz-wiki
:ayaType="ayaType"
:ayaId="obj.id"
:aya-type="ayaType"
:aya-id="obj.id"
ref="wiki"
v-model="obj.wiki"
:readonly="formState.readOnly"
@@ -193,8 +193,8 @@
>
<gz-attachments
:readonly="formState.readOnly"
:ayaType="ayaType"
:ayaId="obj.id"
:aya-type="ayaType"
:aya-id="obj.id"
></gz-attachments
></v-col>
</v-row>