diff --git a/ayanova/src/api/initialize.js b/ayanova/src/api/initialize.js index 8e1df240..37c06d54 100644 --- a/ayanova/src/api/initialize.js +++ b/ayanova/src/api/initialize.js @@ -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++ }); diff --git a/ayanova/src/plugins/vuetify.js b/ayanova/src/plugins/vuetify.js index 807e5f78..ba47dace 100644 --- a/ayanova/src/plugins/vuetify.js +++ b/ayanova/src/plugins/vuetify.js @@ -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: { diff --git a/ayanova/src/views/inv-part-inventory.vue b/ayanova/src/views/inv-part-inventory.vue index 3717ee17..08aa99e8 100644 --- a/ayanova/src/views/inv-part-inventory.vue +++ b/ayanova/src/views/inv-part-inventory.vue @@ -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" }); diff --git a/ayanova/src/views/inv-part-requests.vue b/ayanova/src/views/inv-part-requests.vue index 1f9321c5..f9d382a0 100644 --- a/ayanova/src/views/inv-part-requests.vue +++ b/ayanova/src/views/inv-part-requests.vue @@ -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" }); diff --git a/ayanova/src/views/inv-parts.vue b/ayanova/src/views/inv-parts.vue index 83612b7f..b3ccb887 100644 --- a/ayanova/src/views/inv-parts.vue +++ b/ayanova/src/views/inv-parts.vue @@ -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" }); diff --git a/ayanova/src/views/inv-purchase-orders.vue b/ayanova/src/views/inv-purchase-orders.vue index 5ca83f9d..de1892f5 100644 --- a/ayanova/src/views/inv-purchase-orders.vue +++ b/ayanova/src/views/inv-purchase-orders.vue @@ -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" });