This commit is contained in:
2020-10-05 23:29:24 +00:00
parent f896c6ef65
commit d7ac6a3bf7
14 changed files with 107 additions and 27 deletions

View File

@@ -278,7 +278,7 @@ function initNavPanel() {
//Customer / Headoffice Users subitem
sub.push({
title: "UserList",
icon: "fa-users",
icon: "$ayiUsers",
route: "/cust-users",
key: key++
});
@@ -286,7 +286,7 @@ function initNavPanel() {
// ** CUSTOMER (TOP)
addNavItem(
"CustomerList",
"fa-address-book",
"$ayiAddressBook",
undefined,
sub,
key++,
@@ -322,7 +322,7 @@ function initNavPanel() {
) {
sub.push({
title: "Schedule",
icon: "fa-calendar-alt",
icon: "$ayiCalendarAlt",
route: "/svc-schedule",
key: key++
});
@@ -362,7 +362,7 @@ function initNavPanel() {
//so there is no separate role check here as the service group role check supersedes this
sub.push({
title: "QuoteList",
icon: "fa-pencil-alt",
icon: "$ayiPencilAlt",
route: "/svc-quotes",
key: key++
});
@@ -380,7 +380,7 @@ function initNavPanel() {
) {
sub.push({
title: "PMList",
icon: "fa-business-time",
icon: "$ayiBusinessTime",
route: "/svc-pm-list",
key: key++
});
@@ -399,7 +399,7 @@ function initNavPanel() {
) {
sub.push({
title: "UnitList",
icon: "fa-fan",
icon: "$ayiFan",
route: "/svc-units",
key: key++
});
@@ -407,7 +407,7 @@ function initNavPanel() {
//UNIT MODELS subitem
sub.push({
title: "UnitModels",
icon: "fa-dice-d20",
icon: "$ayiDiceD20",
route: "/svc-unit-models",
key: key++
});
@@ -425,7 +425,7 @@ function initNavPanel() {
) {
sub.push({
title: "LoanUnitList",
icon: "fa-plug",
icon: "$ayiPlug",
route: "/svc-loaners",
key: key++
});
@@ -444,7 +444,7 @@ function initNavPanel() {
) {
sub.push({
title: "ContractList",
icon: "fa-file-contract",
icon: "$ayiFileContract",
route: "/svc-contracts",
key: key++
});
@@ -470,7 +470,7 @@ function initNavPanel() {
}
//**** Service (TOP GROUP)
addNavItem("Service", "fa-toolbox", undefined, sub, key++, "service");
addNavItem("Service", "$ayiToolbox", undefined, sub, key++, "service");
}
//****************** INVENTORY
@@ -611,7 +611,7 @@ function initNavPanel() {
// USERS
sub.push({
title: "UserList",
icon: "fa-users",
icon: "$ayiUsers",
route: "/adm-users",
key: key++
});