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

View File

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

View File

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

View File

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

View File

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

View File

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