This commit is contained in:
2019-12-17 19:47:08 +00:00
parent 23505254ed
commit ef2c8a87b6
2 changed files with 24 additions and 21 deletions

View File

@@ -315,9 +315,9 @@ export default function initialize() {
//PURCHASE ORDERS
sub.push({
title: window.$gz.locale.get("Schedule"),
icon: "calendar-alt",
route: "/schedule/all",
title: window.$gz.locale.get("InventoryPurchaseOrders"),
icon: "boxes",
route: "/pos",
key: key++
});
@@ -325,9 +325,9 @@ export default function initialize() {
//PURCHASE ORDER RECEIPTS
sub.push({
title: window.$gz.locale.get("Schedule"),
icon: "calendar-alt",
route: "/schedule/all",
title: window.$gz.locale.get("InventoryPurchaseOrderReceipts"),
icon: "dolly-flatbed",
route: "/poreceipts",
key: key++
});
@@ -335,31 +335,30 @@ export default function initialize() {
//ADJUSTMENTS
sub.push({
title: window.$gz.locale.get("Schedule"),
icon: "calendar-alt",
route: "/schedule/all",
title: window.$gz.locale.get("InventoryPartInventoryAdjustments"),
icon: "dolly",
route: "/adjustments",
key: key++
});
//WIDGETS
sub.push({
title: window.$gz.locale.get("Schedule"),
icon: "calendar-alt",
route: "/schedule/all",
key: key++
});
//**** INVENTORY (TOP GROUP)
addNavItem(
window.$gz.locale.get("Service"),
"toolbox",
window.$gz.locale.get("Inventory"),
"box",
undefined,
sub,
key++
);
//**** WIDGETS (TOP GROUP)
addNavItem(
window.$gz.locale.get("WidgetList"),
"splotch",
"/inventory",
[],
key++
);
//NOTE: If a user has read full record or better then they should have access to that area
// if (

View File

@@ -72,6 +72,10 @@ export default {
"PartList",
"PartByWarehouseInventoryList",
"WorkorderItemPartRequestList",
"InventoryPurchaseOrders",
"InventoryPurchaseOrderReceipts",
"InventoryPartInventoryAdjustments",
"WidgetList",
//"Dispatch",
"Inventory",
"Accounting",