This commit is contained in:
2020-01-06 19:22:49 +00:00
parent 8955a56149
commit 3202692593
3 changed files with 48 additions and 5 deletions

View File

@@ -46,10 +46,7 @@ CURRENT TODOs
=-=-=-=-=-=-=
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
@@ -57,10 +54,14 @@ TODO: Client login UI
- Own top level area just like Service or Accounting
- See RI client login manual for full list of functionality
- Client CSRS
- Client Units
- 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)
- I guess this is a LT feature really
- Once start then make sure documented in manual

View 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>

View 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>