This commit is contained in:
2020-10-05 23:34:20 +00:00
parent d7ac6a3bf7
commit a6d7ddf66e
6 changed files with 40 additions and 8 deletions

View File

@@ -488,7 +488,7 @@ function initNavPanel() {
//PARTS (part list)
sub.push({
title: "PartList",
icon: "fa-boxes",
icon: "$ayiBoxes",
route: "/inv-parts",
key: key++
});
@@ -496,7 +496,7 @@ function initNavPanel() {
//INVENTORY
sub.push({
title: "PartByWarehouseInventoryList",
icon: "fa-pallet",
icon: "$ayiPallet",
route: "/inv-part-inventory",
key: key++
});
@@ -504,7 +504,7 @@ function initNavPanel() {
//PART REQUESTS
sub.push({
title: "WorkOrderItemPartRequestList",
icon: "fa-paper-plane",
icon: "$ayiPaperPlane",
route: "/inv-part-requests",
key: key++
});
@@ -512,7 +512,7 @@ function initNavPanel() {
//PURCHASE ORDERS
sub.push({
title: "InventoryPurchaseOrders",
icon: "fa-shipping-fast",
icon: "$ayiShippingFast",
route: "/inv-purchase-orders",
key: key++
});

View File

@@ -16,6 +16,7 @@ import {
faAddressCard,
faBars,
faBell,
faBoxes,
faBullhorn,
faBusinessTime,
faCalendarAlt,
@@ -35,10 +36,13 @@ import {
faInbox,
faInfoCircle,
faKey,
faPallet,
faPaperPlane,
faPencilAlt,
faPlug,
faQuestionCircle,
faSearch,
faShippingFast,
faSignInAlt,
faSignOutAlt,
faSitemap,
@@ -60,6 +64,7 @@ library.add(
faAddressCard,
faBars,
faBell,
faBoxes,
faBullhorn,
faBusinessTime,
faCalendarAlt,
@@ -79,10 +84,13 @@ library.add(
faInbox,
faInfoCircle,
faKey,
faPallet,
faPaperPlane,
faPencilAlt,
faPlug,
faQuestionCircle,
faSearch,
faShippingFast,
faSignInAlt,
faSignOutAlt,
faSitemap,
@@ -116,6 +124,12 @@ const CUSTOM_ICONS = {
icon: ["fas", "bell"]
}
},
ayiBoxes: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "boxes"]
}
},
ayiBullhorn: {
component: FontAwesomeIcon,
props: {
@@ -224,6 +238,18 @@ const CUSTOM_ICONS = {
icon: ["fas", "key"]
}
},
ayiPallet: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "pallet"]
}
},
ayiPaperPlane: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "paper-plane"]
}
},
ayiPencilAlt: {
component: FontAwesomeIcon,
props: {
@@ -248,6 +274,12 @@ const CUSTOM_ICONS = {
icon: ["fas", "search"]
}
},
ayiShippingFast: {
component: FontAwesomeIcon,
props: {
icon: ["fas", "shipping-fast"]
}
},
ayiSignIn: {
component: FontAwesomeIcon,
props: {

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-pallet",
icon: "$ayiPallet",
title: "PartByWarehouseInventoryList",
helpUrl: "form-inv-part-inventory"
});

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-paper-plane",
icon: "$ayiPaperPlane",
title: "WorkOrderItemPartRequestList",
helpUrl: "form-inv-part-requests"
});

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-boxes",
icon: "$ayiBoxes",
title: "PartList",
helpUrl: "form-inv-parts"
});

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-shipping-fast",
icon: "$ayiShippingFast",
title: "InventoryPurchaseOrders",
helpUrl: "form-inv-purchase-orders"
});