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

@@ -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"
]);
}