This commit is contained in:
2019-12-17 18:26:28 +00:00
parent 76752fedf7
commit db42ddf2db
3 changed files with 32 additions and 1 deletions

View File

@@ -7,7 +7,7 @@
v-if="isAuthenticated"
v-model="drawer"
app
width="300"
width="350"
>
<!-- <v-card class="mx-auto" width="300"> -->
<v-list dense>

View File

@@ -204,6 +204,35 @@ export default function initialize() {
key: key++
});
//PM GROUP SUBITEMS
subSub = [];
//PM LIST
subSub.push({
title: window.$gz.locale.get("WorkorderPreventiveMaintenanceList"),
icon: "business-time",
route: "/pmlist",
key: key++
});
//PM TEMPLATES LIST
subSub.push({
title: window.$gz.locale.get(
"WorkorderPreventiveMaintenanceTemplate"
),
icon: "stamp",
route: "/pmtemplates",
key: key++
});
//PM GROUP
sub.push({
title: window.$gz.locale.get("WorkorderPreventiveMaintenanceList"),
icon: "business-time",
route: undefined,
navItems: subSub,
key: key++
});
//Service (TOP GROUP)
addNavItem(
window.$gz.locale.get("Service"),

View File

@@ -62,6 +62,8 @@ export default {
"WorkorderServiceTemplate",
"WorkorderQuoteList",
"WorkorderQuoteTemplate",
"WorkorderPreventiveMaintenanceList",
"WorkorderPreventiveMaintenanceTemplate",
//"Dispatch",
"Inventory",
"Accounting",