diff --git a/ayanova/src/api/gzutil.js b/ayanova/src/api/gzutil.js index 9e510211..6cefaa96 100644 --- a/ayanova/src/api/gzutil.js +++ b/ayanova/src/api/gzutil.js @@ -322,7 +322,7 @@ export default { case window.$gz.type.Metrics: return "fa-file-medical-alt"; case window.$gz.type.Translation: - return "fa-language"; + return "$ayiLanguage"; case window.$gz.type.UserOptions: return "$ayiUserCog"; case window.$gz.type.FileAttachment: diff --git a/ayanova/src/api/initialize.js b/ayanova/src/api/initialize.js index 37c06d54..84852f98 100644 --- a/ayanova/src/api/initialize.js +++ b/ayanova/src/api/initialize.js @@ -522,7 +522,7 @@ function initNavPanel() { //PURCHASE ORDER RECEIPTS sub.push({ title: "InventoryPurchaseOrderReceipts", - icon: "fa-dolly-flatbed", + icon: "$ayiDollyFlatbed", route: "/inv-purchase-order-receipts", key: key++ }); @@ -534,13 +534,13 @@ function initNavPanel() { //ADJUSTMENTS sub.push({ title: "InventoryPartInventoryAdjustments", - icon: "fa-dolly", + icon: "$ayiDolly", route: "/inv-adjustments", key: key++ }); //**** INVENTORY (TOP GROUP) - addNavItem("Inventory", "fa-box", undefined, sub, key++, "inventory"); + addNavItem("Inventory", "$ayiBox", undefined, sub, key++, "inventory"); } //**** VENDORS (TOP GROUP) @@ -555,7 +555,7 @@ function initNavPanel() { role.InventoryLimited ]) ) { - addNavItem("VendorList", "fa-store", "/vendors", [], key++, "vendor"); + addNavItem("VendorList", "$ayiStore", "/vendors", [], key++, "vendor"); } //****************** ACCOUNTING @@ -571,7 +571,7 @@ function initNavPanel() { //FAKE subitem as is still TBD sub.push({ title: "Accounting", - icon: "fa-calculator", + icon: "$ayiCalculator", route: "/acc-accounting", key: key++ }); @@ -579,7 +579,7 @@ function initNavPanel() { // ** ACCOUNTING (TOP) addNavItem( "Accounting", - "fa-calculator", + "$ayiCalculator", undefined, sub, key++, @@ -595,7 +595,7 @@ function initNavPanel() { // GLOBAL SETTINGS sub.push({ title: "AdministrationGlobalSettings", - icon: "fa-cogs", + icon: "$ayiCogs", route: "/adm-global-settings", key: key++ }); @@ -621,7 +621,7 @@ function initNavPanel() { //TRANSLATION sub.push({ title: "TranslationList", - icon: "fa-language", + icon: "$ayiLanguage", route: "/adm-translations", key: key++ }); @@ -629,7 +629,7 @@ function initNavPanel() { //REPORT TEMPLATES sub.push({ title: "ReportList", - icon: "fa-th-list", + icon: "$ayiThList", route: "/adm-report-templates", key: key++ }); @@ -637,7 +637,7 @@ function initNavPanel() { //FILES IN DATABASE sub.push({ title: "Attachments", - icon: "fa-folder", + icon: "$ayiFolder", route: "/adm-attachments", key: key++ }); @@ -653,7 +653,7 @@ function initNavPanel() { // ** ADMINISTRATION (TOP) addNavItem( "Administration", - "fa-user-tie", + "$ayiUserTie", undefined, sub, key++, diff --git a/ayanova/src/components/attachment-control.vue b/ayanova/src/components/attachment-control.vue index 98e602bc..1549a4b0 100644 --- a/ayanova/src/components/attachment-control.vue +++ b/ayanova/src/components/attachment-control.vue @@ -46,7 +46,7 @@