This commit is contained in:
@@ -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++
|
||||
});
|
||||
|
||||
@@ -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: {
|
||||
|
||||
@@ -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"
|
||||
});
|
||||
|
||||
@@ -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"
|
||||
});
|
||||
|
||||
@@ -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"
|
||||
});
|
||||
|
||||
@@ -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"
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user