This commit is contained in:
@@ -5,6 +5,10 @@
|
|||||||
todo: SEEDER
|
todo: SEEDER
|
||||||
Seed sample customers from v7 specifically in addition to random ones?
|
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
|
todo: picklist empty null vs zero
|
||||||
test with customer and headofficeid
|
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?
|
should have the empty selection pre-selected or maybe I need to do away with that since the clear button does the same thing?
|
||||||
|
|||||||
@@ -494,6 +494,26 @@
|
|||||||
@input="fieldValueChanged('contractExpires')"
|
@input="fieldValueChanged('contractExpires')"
|
||||||
></gz-date-time-picker>
|
></gz-date-time-picker>
|
||||||
</v-col>
|
</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-col v-if="form().showMe(this, 'Notes')" cols="12">
|
||||||
<v-textarea
|
<v-textarea
|
||||||
|
|||||||
Reference in New Issue
Block a user