This commit is contained in:
@@ -5,6 +5,30 @@
|
||||
|
||||
MISC ITEMS THAT CAME UP
|
||||
|
||||
todo: many customer service request translations keys are not translated:
|
||||
"CustomerServiceRequestDetails": "Details",
|
||||
"CustomerServiceRequestEventCreated": "Customer service request - New",
|
||||
"CustomerServiceRequestEventCreatedUpdated": "Solicitud de servicio del cliente - nuevo / actualizado",
|
||||
"CustomerServiceRequestList": "Solicitudes de servicio al cliente",
|
||||
"CustomerServiceRequestOnsite": "En el lugar",
|
||||
"CustomerServiceRequestParts": "Piezas",
|
||||
"CustomerServiceRequestPreferredTechs": "Usuarios programables solicitados",
|
||||
"CustomerServiceRequestPriority": "Prioridad",
|
||||
"CustomerServiceRequestReject": "Reject service request",
|
||||
"CustomerServiceRequestRequestedBy": "Requested by",
|
||||
"CustomerServiceRequestStatus": "Status",
|
||||
"CustomerServiceRequestTitle": "Title",
|
||||
"CustomerServiceRequestWorkOrderItems": "Elementos del servicio solicitado",
|
||||
"CustomerServiceRequestItemServiceToBePerformed": "Resumen del servicio a realizar",
|
||||
"CustomerServiceRequestItemUnitID": "Unidad",
|
||||
"CustomerServiceRequestPriorityASAP": "ASAP",
|
||||
"CustomerServiceRequestPriorityEmergency": "Emergency",
|
||||
"CustomerServiceRequestPriorityNotUrgent": "Not urgent",
|
||||
"CustomerServiceRequestStatusAccepted": "Accepted",
|
||||
"CustomerServiceRequestStatusClosed": "Closed",
|
||||
"CustomerServiceRequestStatusDeclined": "Declined",
|
||||
"CustomerServiceRequestStatusOpen": "Open",
|
||||
|
||||
todo: test errors on widget form for all controls
|
||||
Have a way of telling the server on an update to return all the errors for all the fields possible as well as server generalerror
|
||||
this way can see at a glance that all the controls are properly displaying their errrors
|
||||
@@ -53,7 +77,8 @@ todo: Attachments button should indicate attachments:
|
||||
todo: actual customer reports so can figure out datalist for bringing other names in
|
||||
I'm thinking an alternate mode for reporting where there are more defined links in the list to fetch names?
|
||||
|
||||
todo: Why are your mailing-lists and your website in english?
|
||||
todo: DOC ENTRY (or is this defensive for no reason?)
|
||||
Why are your mailing-lists and your website in english?
|
||||
"VideoLAN's developers come from all around the world and english is the only language they can use to communicate together. Although great care is given to the translation of VLC in various languages, maintaining translations of our website costs too much more time than we"
|
||||
|
||||
............................................................
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<div>
|
||||
{{ formState.serverError }}
|
||||
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
||||
<div v-if="formState.ready">
|
||||
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
||||
@@ -677,29 +676,28 @@ function generateMenu(vm) {
|
||||
|
||||
menuOptions.menuItems.push({ divider: true, inset: false });
|
||||
|
||||
//---- SHOW ALL ---
|
||||
//MIGRATE_OUTSTANDING show all: workorderlist, quotelist, pmlist
|
||||
menuOptions.menuItems.push({
|
||||
title: "WorkOrderList",
|
||||
icon: "$ayiTools",
|
||||
key: FORM_KEY + ":WorkOrderList",
|
||||
vm: vm
|
||||
});
|
||||
if (vm.obj.status == 0) {
|
||||
menuOptions.menuItems.push({
|
||||
title: "CustomerServiceRequestAcceptToNew",
|
||||
icon: null,
|
||||
key: FORM_KEY + ":acceptssssnew",
|
||||
vm: vm
|
||||
});
|
||||
|
||||
menuOptions.menuItems.push({
|
||||
title: "QuoteList",
|
||||
icon: "$ayiPencilAlt",
|
||||
key: FORM_KEY + ":QuoteList",
|
||||
vm: vm
|
||||
});
|
||||
menuOptions.menuItems.push({
|
||||
title: "CustomerServiceRequestAcceptToExisting",
|
||||
icon: null,
|
||||
key: FORM_KEY + ":acceptexisting",
|
||||
vm: vm
|
||||
});
|
||||
|
||||
menuOptions.menuItems.push({
|
||||
title: "PMList",
|
||||
icon: "$ayiBusinessTime",
|
||||
key: FORM_KEY + ":PMList",
|
||||
vm: vm
|
||||
});
|
||||
//--- /show all ---
|
||||
menuOptions.menuItems.push({
|
||||
title: "CustomerServiceRequestReject",
|
||||
icon: null,
|
||||
key: FORM_KEY + ":reject",
|
||||
vm: vm
|
||||
});
|
||||
}
|
||||
|
||||
menuOptions.menuItems.push({ divider: true, inset: false });
|
||||
|
||||
@@ -723,6 +721,9 @@ async function initForm(vm) {
|
||||
async function fetchTranslatedText(vm) {
|
||||
await window.$gz.translation.cacheTranslations([
|
||||
"CustomerServiceRequest",
|
||||
"CustomerServiceRequestAcceptToNew",
|
||||
"CustomerServiceRequestAcceptToExisting",
|
||||
"CustomerServiceRequestReject",
|
||||
"CustomerServiceRequestTitle",
|
||||
"CustomerServiceRequestDetails",
|
||||
"Created",
|
||||
|
||||
Reference in New Issue
Block a user