This commit is contained in:
@@ -102,11 +102,8 @@ TODO: IMPLEMENT and stub out entire nav layout, don't hae to open actual form, c
|
|||||||
- ADMINISTRATION
|
- ADMINISTRATION
|
||||||
- GLOBAL SETTINGS
|
- GLOBAL SETTINGS
|
||||||
- LICENSE RELATED
|
- LICENSE RELATED
|
||||||
- USERS
|
- USERS
|
||||||
- CUSTOMIZE
|
- LOCALIZED TEXT DESIGN
|
||||||
- CUSTOM FIELD DESIGN
|
|
||||||
- LOCALIZED TEXT DESIGN
|
|
||||||
- NOTIFICATION DELIVERIES (LAST 7 DAYS)
|
|
||||||
- REPORT TEMPLATES
|
- REPORT TEMPLATES
|
||||||
- FILES IN DATABASE
|
- FILES IN DATABASE
|
||||||
- SCHEDULE MARKERS (wtf forgot about this what's it for again?)
|
- SCHEDULE MARKERS (wtf forgot about this what's it for again?)
|
||||||
@@ -117,7 +114,7 @@ TODO: IMPLEMENT and stub out entire nav layout, don't hae to open actual form, c
|
|||||||
- RESTORE
|
- RESTORE
|
||||||
- LOGS
|
- LOGS
|
||||||
- METRICS
|
- METRICS
|
||||||
- NOTIFICATION
|
- NOTIFICATION CONFIG AND CHECK DELIVERIES
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -379,6 +379,86 @@ export default function initialize() {
|
|||||||
key++
|
key++
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// - ADMINISTRATION
|
||||||
|
// - GLOBAL SETTINGS
|
||||||
|
// - LICENSE RELATED
|
||||||
|
// - USERS
|
||||||
|
// - CUSTOM FIELD DESIGN
|
||||||
|
// - LOCALIZED TEXT DESIGN
|
||||||
|
// - NOTIFICATION DELIVERIES (LAST 7 DAYS)
|
||||||
|
// - REPORT TEMPLATES
|
||||||
|
// - FILES IN DATABASE
|
||||||
|
// - SCHEDULE MARKERS (wtf forgot about this what's it for again?)
|
||||||
|
// - OBJECT / CHANGE LOG whatever it's called, view the whole thing here to see what activity is happening in general
|
||||||
|
// - KPI WIDGETS AND GRAPHS AND SHIT FOR BIZ ADMIN
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//****************** ADMINISTRATION
|
||||||
|
//clear sublevel arrays
|
||||||
|
subSub = [];
|
||||||
|
sub = [];
|
||||||
|
|
||||||
|
// GLOBAL SETTINGS
|
||||||
|
sub.push({
|
||||||
|
title: window.$gz.locale.get("AdministrationGlobalSettings"),
|
||||||
|
icon: "cogs",
|
||||||
|
route: "/globalsettings",
|
||||||
|
key: key++
|
||||||
|
});
|
||||||
|
|
||||||
|
// LICENSE
|
||||||
|
sub.push({
|
||||||
|
title: window.$gz.locale.get("HelpLicense"),
|
||||||
|
icon: "ticket-alt",
|
||||||
|
route: "/license",
|
||||||
|
key: key++
|
||||||
|
});
|
||||||
|
|
||||||
|
// USERS
|
||||||
|
sub.push({
|
||||||
|
title: window.$gz.locale.get("UserList"),
|
||||||
|
icon: "users",
|
||||||
|
route: "/users",
|
||||||
|
key: key++
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// CUSTOM FIELD DESIGNER NOT REQUIRED, OPENS FROM INDIVIDUAL FORMS
|
||||||
|
|
||||||
|
//LOCALIZED TEXT DESIGNER
|
||||||
|
sub.push({
|
||||||
|
title: window.$gz.locale.get("LocalizedTextDesign"),
|
||||||
|
icon: "language",
|
||||||
|
route: "/locale",
|
||||||
|
key: key++
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
//REPORT TEMPLATES
|
||||||
|
sub.push({
|
||||||
|
title: window.$gz.locale.get("ReportList"),
|
||||||
|
icon: "language",
|
||||||
|
route: "/locale",
|
||||||
|
key: key++
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// ** ACCOUNTING (TOP)
|
||||||
|
addNavItem(
|
||||||
|
window.$gz.locale.get("Accounting"),
|
||||||
|
"file-invoice-dollar",
|
||||||
|
undefined,
|
||||||
|
sub,
|
||||||
|
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 (
|
||||||
|
|||||||
@@ -77,6 +77,11 @@ export default {
|
|||||||
"InventoryPartInventoryAdjustments",
|
"InventoryPartInventoryAdjustments",
|
||||||
"WidgetList",
|
"WidgetList",
|
||||||
"VendorList",
|
"VendorList",
|
||||||
|
"AdministrationGlobalSettings",
|
||||||
|
"HelpLicense",
|
||||||
|
"UserList",
|
||||||
|
"LocalizedTextDesign",
|
||||||
|
"ReportList",
|
||||||
//"Dispatch",
|
//"Dispatch",
|
||||||
"Inventory",
|
"Inventory",
|
||||||
"Accounting",
|
"Accounting",
|
||||||
|
|||||||
Reference in New Issue
Block a user