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

View File

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