This commit is contained in:
2021-10-01 18:09:00 +00:00
parent 99210c8403
commit 5e423767bf
5 changed files with 1187 additions and 46 deletions

View File

@@ -13,16 +13,19 @@
# Schedule form # Schedule form
SVC-SCHEDULE
todo: #1 client / server items below Needs backing route
present techs desired and order to fetch
todo: svc-schedule once had time to test out personal schedule (give it a few days then move on to this) show each in own category
SVC-SCHEDULE CASES categories filled in from user setttings
3766 - view schedule filtered by customer so can see at a glance all past and future for a single customer (more data table filter similarity) display as name but backed by id in case name changes
"show all " but on a schedule to view that way instead of a data table category key in return data == user id / name
3697 - arbitrarily order schedule by user instead of built in by lastname 3697 - arbitrarily order schedule by user instead of built in by lastname
schedule settings keyed by form re-use
3698 - hide unassigned tech slot (or case 3697 above would take care of that too) 3698 - hide unassigned tech slot (or case 3697 above would take care of that too)
3766 - view schedule filtered by customer so can see at a glance all past and future for a single customer (more data table filter similarity)
"show all " but on a schedule to view that way instead of a data table
Customer work order form / view / open??? Customer work order form / view / open???
Customer CSR form has a bunch of todo in the template, WTF? Customer CSR form has a bunch of todo in the template, WTF?
Dashboard / widgets Dashboard / widgets
@@ -745,26 +748,6 @@ MID CENTURY MODERN TUNES - https://www.allmusic.com/album/ultra-lounge-vol-14-bo
BUILD 132 CHANGES OF NOTE BUILD 133 CHANGES OF NOTE
- major refactor and cleanup of all client end source code
- grid filter clicking on "delete" for whole filter now enables save button
- fixed issue when grid is on last page then filter added it wasn't automaticaly going back to page one so it looked like there were no results
- changed format of serials on parts list report data to be a single string of comma separated rather than a JSON array of strings
- Fixed bug where form overlay not clearing when error returned from delete on any form
- Workorderitempriority, woitemstatus and wostatus edit forms missing NEW menu option, also fixed error on save about leaving unsaved
- Reminder data list fixed default columns so start date is before stop date also changed to sort by start date descending
- fixed Help->About tech support should not show for a customer login
- fixed Help->About tech support translation key not fetched
- Added boot message and server version to console output so version is visible in OS terminal window when starting AyaNova
- Added code to prevent login for a Contact customer type user's head office or customer that is inactive
- Added code to delete all Review objects if their parent biz object is deleted
- case 3977 this might still be an issue / potential bug or I'm misreading what you wrote
- case 3987
- case 3988
- case 3993
- case 3991
- case 3989
- case 3994 (Unit and Customer lists both)
-

View File

@@ -1,4 +1,4 @@
export default { export default {
version: "8.0.0-alpha.132", version: "8.0.0-alpha.133",
copyright: "© 1999-2021, Ground Zero Tech-Works Inc." copyright: "© 1999-2021, Ground Zero Tech-Works Inc."
}; };

View File

@@ -1100,7 +1100,6 @@ async function populateSelectionLists(vm) {
if (res.error) { if (res.error) {
vm.formState.serverError = res.error; vm.formState.serverError = res.error;
window.$gz.form.setErrorBoxErrors(vm); window.$gz.form.setErrorBoxErrors(vm);
//window.$gz.errorHandler.handleFormError(res.error, vm);
} else { } else {
vm.selectLists.translations = res.data; vm.selectLists.translations = res.data;
} }

View File

@@ -272,7 +272,7 @@ function generateMenu(vm) {
// //
async function initForm(vm) { async function initForm(vm) {
await fetchTranslatedText(vm); await fetchTranslatedText(vm);
await populateSelectionLists(vm); populateSelectionLists(vm);
} }
////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////

File diff suppressed because it is too large Load Diff