This commit is contained in:
2020-11-14 01:07:28 +00:00
parent dfe700555a
commit 1cd37abe9f
2 changed files with 24 additions and 0 deletions

View File

@@ -5,6 +5,10 @@
todo: SEEDER
Seed sample customers from v7 specifically in addition to random ones?
todo: bugbug datetime control clear buttons don't trigger emit of empty date times
contractexpires on customer form clearing it and saving sends date to server as if it wasn't cleared at all
Better solution: one clear button that clears all and emits properly and disable the built in if possible
todo: picklist empty null vs zero
test with customer and headofficeid
should have the empty selection pre-selected or maybe I need to do away with that since the clear button does the same thing?

View File

@@ -494,6 +494,26 @@
@input="fieldValueChanged('contractExpires')"
></gz-date-time-picker>
</v-col>
<v-col
v-if="form().showMe(this, 'UsesBanking')"
cols="12"
sm="6"
lg="4"
xl="3"
>
<v-checkbox
v-model="obj.usesBanking"
:readonly="formState.readOnly"
:disabled="formState.readOnly"
:label="$ay.t('UsesBanking')"
ref="usesBanking"
data-cy="usesBanking"
:error-messages="form().serverErrors(this, 'usesBanking')"
@change="fieldValueChanged('usesBanking')"
></v-checkbox>
</v-col>
<!-- --------------------------------- -->
<v-col v-if="form().showMe(this, 'Notes')" cols="12">
<v-textarea