This commit is contained in:
@@ -90,7 +90,7 @@ CURRENTLY WORKING ON: Customer notes migration
|
|||||||
OUTSTANDING
|
OUTSTANDING
|
||||||
|
|
||||||
Customer notes
|
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:
|
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
|
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 setting coords from phone
|
||||||
Test the customer form as read only user
|
Test the customer form as read only user
|
||||||
make sure can't use action menu for address etc
|
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'
|
NEXT UP: misc items above before next object because of the 'implication'
|
||||||
|
|||||||
@@ -35,6 +35,19 @@
|
|||||||
@input="fieldValueChanged('tags')"
|
@input="fieldValueChanged('tags')"
|
||||||
></gz-tag-picker>
|
></gz-tag-picker>
|
||||||
</v-col>
|
</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-row>
|
||||||
</v-form>
|
</v-form>
|
||||||
|
|
||||||
|
|||||||
@@ -1620,7 +1620,8 @@ async function fetchTranslatedText(vm) {
|
|||||||
"Contact",
|
"Contact",
|
||||||
"LastLogin",
|
"LastLogin",
|
||||||
"CustomerNoteList",
|
"CustomerNoteList",
|
||||||
"CustomerNoteNotes"
|
"CustomerNoteNotes",
|
||||||
|
"CustomerNoteNoteDate"
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user