This commit is contained in:
@@ -46,10 +46,7 @@ CURRENT TODOs
|
|||||||
=-=-=-=-=-=-=
|
=-=-=-=-=-=-=
|
||||||
|
|
||||||
SHELL / NAV / MENUS / LAYOUT
|
SHELL / NAV / MENUS / LAYOUT
|
||||||
|
|
||||||
TODO: Ops login has no dashboard change where it directs them on login
|
|
||||||
- Go to Backup for now
|
|
||||||
- Maybe there should be a dashboard for ops where it just shows some metrics and that the server is up or something
|
|
||||||
|
|
||||||
TODO: Client login has no dashboard change where it directs them on login
|
TODO: Client login has no dashboard change where it directs them on login
|
||||||
|
|
||||||
@@ -57,10 +54,14 @@ TODO: Client login UI
|
|||||||
- Own top level area just like Service or Accounting
|
- Own top level area just like Service or Accounting
|
||||||
- See RI client login manual for full list of functionality
|
- See RI client login manual for full list of functionality
|
||||||
- Client CSRS
|
- Client CSRS
|
||||||
- Client Units
|
|
||||||
- Client workorders
|
- Client workorders
|
||||||
|
- Naming scheme:
|
||||||
|
- home
|
||||||
|
- customer-csr
|
||||||
|
- customer-workorders
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
TODO: Errors - make sure all user displayed errors have an error number if they might be something tech support needs to know (case 1854)
|
TODO: Errors - make sure all user displayed errors have an error number if they might be something tech support needs to know (case 1854)
|
||||||
- I guess this is a LT feature really
|
- I guess this is a LT feature really
|
||||||
- Once start then make sure documented in manual
|
- Once start then make sure documented in manual
|
||||||
|
|||||||
21
ayanova/src/views/customer-csr-list.vue
Normal file
21
ayanova/src/views/customer-csr-list.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "child",
|
||||||
|
title: window.$gz.locale.get("ClientServiceRequestList"),
|
||||||
|
helpUrl: "form-customer-csr-list"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/customer-workorders.vue
Normal file
21
ayanova/src/views/customer-workorders.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "tools",
|
||||||
|
title: window.$gz.locale.get("WorkorderServiceList"),
|
||||||
|
helpUrl: "form-customer-workorders"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user