diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 16f4d446..1a8729c0 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -18,20 +18,8 @@ # Schedule form SVC-SCHEDULE OUTSTANDING ITEMS - - need ability to drag to another tech in category view - bug issue: https://github.com/vuetifyjs/vuetify/issues/11616 - works in chrome but not ff - - - + - docs notes - unassigned slot and how it works - visible if there are any that day in team view otherwise doesn't show - team view vs day view - how to use the controls etc - small screen view vs larger Drill down to schedule by user so can click through user to schedule for *that* user alone, (brings up home-schedule maybe or I guess a copy would be easiest) @@ -46,6 +34,15 @@ CUST-SCHEDULE + schedule docs notes + unassigned slot and how it works + visible if there are any that day in team view otherwise doesn't show + team view vs day view + how to use the controls etc + small screen view vs larger + + + Customer work order form / view / open??? Customer CSR form has a bunch of todo in the template, WTF? Dashboard / widgets diff --git a/ayanova/src/router.js b/ayanova/src/router.js index bac945b2..b79b1c17 100644 --- a/ayanova/src/router.js +++ b/ayanova/src/router.js @@ -283,6 +283,12 @@ export default new Router({ component: () => import(/* webpackChunkName: "svc" */ "./views/svc-schedule.vue") }, + { + path: "/svc-schedule-user/:recordid/:name", + name: "svc-schedule-user", + component: () => + import(/* webpackChunkName: "svc" */ "./views/svc-schedule-user.vue") + }, { path: "/svc-workorders", name: "svc-workorders", diff --git a/ayanova/src/views/svc-schedule-user.vue b/ayanova/src/views/svc-schedule-user.vue new file mode 100644 index 00000000..7bf16b3a --- /dev/null +++ b/ayanova/src/views/svc-schedule-user.vue @@ -0,0 +1,1149 @@ + + + diff --git a/ayanova/src/views/svc-schedule.vue b/ayanova/src/views/svc-schedule.vue index a12c693d..7d8224f7 100644 --- a/ayanova/src/views/svc-schedule.vue +++ b/ayanova/src/views/svc-schedule.vue @@ -1,9 +1,6 @@