From d02cb84f82ef2f7d707d1985a46fd5062e6f2bc8 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Sat, 9 May 2020 00:33:54 +0000 Subject: [PATCH] ltkey stuff --- ayanova/src/api/initialize.js | 14 +++++++------- ayanova/src/api/translation.js | 10 +++++----- ayanova/src/views/customer-workorders.vue | 2 +- ayanova/src/views/svc-loaners.vue | 2 +- ayanova/src/views/svc-pm-list.vue | 2 +- ayanova/src/views/svc-pm-templates.vue | 2 +- ayanova/src/views/svc-quotes.vue | 2 +- ayanova/src/views/svc-workorders.vue | 2 +- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/ayanova/src/api/initialize.js b/ayanova/src/api/initialize.js index bf333f58..f3e91f41 100644 --- a/ayanova/src/api/initialize.js +++ b/ayanova/src/api/initialize.js @@ -251,7 +251,7 @@ export default function initialize() { ]) ) { sub.push({ - title: t("WorkOrderServiceList"), + title: t("WorkOrderList"), icon: "fa-tools", route: "/svc-workorders", key: key++ @@ -272,7 +272,7 @@ export default function initialize() { //NOTE: this is the only item in this service level area that is visible to Sales //so there is no separate role check here as the service group role check supersedes this sub.push({ - title: t("WorkOrderQuoteList"), + title: t("QuoteList"), icon: "fa-pencil-alt", route: "/svc-quotes", key: key++ @@ -290,7 +290,7 @@ export default function initialize() { ]) ) { sub.push({ - title: t("WorkOrderPreventiveMaintenanceList"), + title: t("PMList"), icon: "fa-business-time", route: "/svc-pm-list", key: key++ @@ -335,7 +335,7 @@ export default function initialize() { ]) ) { sub.push({ - title: t("LoanItemList"), + title: t("LoanUnitList"), icon: "fa-plug", route: "/svc-loaners", key: key++ @@ -373,7 +373,7 @@ export default function initialize() { ]) ) { sub.push({ - title: t("ClientServiceRequestList"), + title: t("CustomerServiceRequestList"), icon: "fa-child", route: "/svc-csr-list", key: key++ @@ -712,7 +712,7 @@ export default function initialize() { //CSR LIST subitem sub.push({ - title: t("ClientServiceRequestList"), + title: t("CustomerServiceRequestList"), icon: "fa-child", route: "/customer-csr-list", key: key++ @@ -720,7 +720,7 @@ export default function initialize() { //WORKORDERS subitem sub.push({ - title: t("WorkOrderServiceList"), + title: t("WorkOrderList"), icon: "fa-tools", route: "/customer-workorders", key: key++ diff --git a/ayanova/src/api/translation.js b/ayanova/src/api/translation.js index c7c65c95..6359283b 100644 --- a/ayanova/src/api/translation.js +++ b/ayanova/src/api/translation.js @@ -64,17 +64,17 @@ export default { "Service", "CustomerList", "HeadOfficeList", - "WorkOrderServiceList", + "WorkOrderList", "WorkOrderServiceTemplate", - "WorkOrderQuoteList", + "QuoteList", "WorkOrderQuoteTemplate", - "WorkOrderPreventiveMaintenanceList", - "WorkOrderPreventiveMaintenanceTemplate", + "PMList", + "PMTemplate", "UnitList", "UnitModels", "ContractList", "CUstomerServiceRequestList", - "LoanItemList", + "LoanUnitList", "PartList", "PartByWarehouseInventoryList", "WorkOrderItemPartRequestList", diff --git a/ayanova/src/views/customer-workorders.vue b/ayanova/src/views/customer-workorders.vue index 403d4c10..99c183fe 100644 --- a/ayanova/src/views/customer-workorders.vue +++ b/ayanova/src/views/customer-workorders.vue @@ -13,7 +13,7 @@ export default { window.$gz.eventBus.$emit("menu-change", { isMain: true, icon: "fa-tools", - title: this.$ay.t("WorkOrderServiceList"), + title: this.$ay.t("WorkOrderList"), helpUrl: "form-customer-workorders" }); } diff --git a/ayanova/src/views/svc-loaners.vue b/ayanova/src/views/svc-loaners.vue index 790cc16f..5c408e1d 100644 --- a/ayanova/src/views/svc-loaners.vue +++ b/ayanova/src/views/svc-loaners.vue @@ -13,7 +13,7 @@ export default { window.$gz.eventBus.$emit("menu-change", { isMain: true, icon: "fa-plug", - title: this.$ay.t("LoanItemList"), + title: this.$ay.t("LoanUnitList"), helpUrl: "form-svc-loaners" }); } diff --git a/ayanova/src/views/svc-pm-list.vue b/ayanova/src/views/svc-pm-list.vue index 216a7be9..e7be0d2f 100644 --- a/ayanova/src/views/svc-pm-list.vue +++ b/ayanova/src/views/svc-pm-list.vue @@ -13,7 +13,7 @@ export default { window.$gz.eventBus.$emit("menu-change", { isMain: true, icon: "fa-business-time", - title: this.$ay.t("WorkOrderPreventiveMaintenanceList"), + title: this.$ay.t("PMList"), helpUrl: "form-svc-pm-list" }); } diff --git a/ayanova/src/views/svc-pm-templates.vue b/ayanova/src/views/svc-pm-templates.vue index a795bb47..167fa2d8 100644 --- a/ayanova/src/views/svc-pm-templates.vue +++ b/ayanova/src/views/svc-pm-templates.vue @@ -13,7 +13,7 @@ export default { window.$gz.eventBus.$emit("menu-change", { isMain: true, icon: "fa-stamp", - title: this.$ay.t("WorkOrderPreventiveMaintenanceTemplate"), + title: this.$ay.t("PMTemplate"), helpUrl: "form-svc-pm-templates" }); } diff --git a/ayanova/src/views/svc-quotes.vue b/ayanova/src/views/svc-quotes.vue index af40f448..b2541974 100644 --- a/ayanova/src/views/svc-quotes.vue +++ b/ayanova/src/views/svc-quotes.vue @@ -13,7 +13,7 @@ export default { window.$gz.eventBus.$emit("menu-change", { isMain: true, icon: "fa-pencil-alt", - title: this.$ay.t("WorkOrderQuoteList"), + title: this.$ay.t("QuoteList"), helpUrl: "form-svc-quotes" }); } diff --git a/ayanova/src/views/svc-workorders.vue b/ayanova/src/views/svc-workorders.vue index 5dfe9971..72f60710 100644 --- a/ayanova/src/views/svc-workorders.vue +++ b/ayanova/src/views/svc-workorders.vue @@ -13,7 +13,7 @@ export default { window.$gz.eventBus.$emit("menu-change", { isMain: true, icon: "fa-tools", - title: this.$ay.t("WorkOrderServiceList"), + title: this.$ay.t("WorkOrderList"), helpUrl: "form-svc-workorders" }); }