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

@@ -224,6 +224,7 @@ CURRENTLY DOING: make from new
BIG PICTURE STUFF
- ability to create from nothing implement whatever is minimally necessary to get it to work and do full crud test at all layers
- test out, confirm can CRUD as planned independantly and all at once
- Test out role rights, login as various roles and ensure it works as expected
- once pass this step then second pass at new features that affect models (not necessarily UI stuff just fields required etc)
shouldn't be too much as already did that when recently fleshed out models but no doubt missed much
- then full in front end and flow out to back end as required, remove any backend that was a defunct evolutionary path so no cruft left around

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"