This commit is contained in:
2020-11-26 16:12:25 +00:00
parent 69ad7aa3ab
commit 9848d5e289
3 changed files with 19 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ CURRENTLY WORKING ON: Customer notes migration
OUTSTANDING
Customer notes
v8 migrate
todo: show the notedate editable (same as v7) on the client note form
todo: Search for customer note results in error due to unfinished code:
2020-11-26 08:01:12.5541|ERROR|SERVER|Error=>Npgsql.PostgresException (0x80004005): 42703: column m.name does not exist
@@ -121,6 +121,9 @@ todo: TESTING After customer form is made
Test setting coords from phone
Test the customer form as read only user
make sure can't use action menu for address etc
check contacts
check contactnotes
NEXT UP: misc items above before next object because of the 'implication'

View File

@@ -35,6 +35,19 @@
@input="fieldValueChanged('tags')"
></gz-tag-picker>
</v-col>
<v-col cols="12">
<gz-date-time-picker
:label="$ay.t('CustomerNoteNoteDate')"
v-model="obj.noteDate"
:readonly="formState.readOnly"
:disabled="formState.readOnly"
ref="noteDate"
testId="noteDate"
:error-messages="form().serverErrors(this, 'noteDate')"
@input="fieldValueChanged('noteDate')"
></gz-date-time-picker>
</v-col>
</v-row>
</v-form>

View File

@@ -1620,7 +1620,8 @@ async function fetchTranslatedText(vm) {
"Contact",
"LastLogin",
"CustomerNoteList",
"CustomerNoteNotes"
"CustomerNoteNotes",
"CustomerNoteNoteDate"
]);
}