This commit is contained in:
@@ -62,6 +62,9 @@ todo: workorders - need to set billing and service address from customers on mig
|
|||||||
|
|
||||||
## CLIENT MISC ITEMS
|
## CLIENT MISC ITEMS
|
||||||
|
|
||||||
|
bugbug: direct notification errors out
|
||||||
|
user->direct notification
|
||||||
|
|
||||||
todo: notifications screen add delete all menu item that will just remove all the notifications present
|
todo: notifications screen add delete all menu item that will just remove all the notifications present
|
||||||
Maybe a checkbox and delete selected and select all?? That way can also be a dual useful feature
|
Maybe a checkbox and delete selected and select all?? That way can also be a dual useful feature
|
||||||
also should delete *from* the client so that it deletes only what it has in view so user doesn't accidentally delete unseen yet to be delivered ones?
|
also should delete *from* the client so that it deletes only what it has in view so user doesn't accidentally delete unseen yet to be delivered ones?
|
||||||
|
|||||||
@@ -390,7 +390,10 @@ async function initDataObject(vm) {
|
|||||||
//if they *are* cached then this is a pretty fast operation and no trip is made to the server
|
//if they *are* cached then this is a pretty fast operation and no trip is made to the server
|
||||||
let requiredTranslations = [];
|
let requiredTranslations = [];
|
||||||
for (let i = 0; i < res.data.length; i++) {
|
for (let i = 0; i < res.data.length; i++) {
|
||||||
if (requiredTranslations.indexOf(res.data[i].tKey) === -1) {
|
if (
|
||||||
|
requiredTranslations.indexOf(res.data[i].tKey) === -1 &&
|
||||||
|
res.data[i].tKey != "Wiki"
|
||||||
|
) {
|
||||||
requiredTranslations.push(res.data[i].tKey);
|
requiredTranslations.push(res.data[i].tKey);
|
||||||
}
|
}
|
||||||
//sections
|
//sections
|
||||||
|
|||||||
@@ -759,7 +759,7 @@ async function fetchTranslatedText(vm) {
|
|||||||
"NotifyDeliveryMethod",
|
"NotifyDeliveryMethod",
|
||||||
"NotifyEventType",
|
"NotifyEventType",
|
||||||
"NotifyDeliveryAddress",
|
"NotifyDeliveryAddress",
|
||||||
"tags",
|
"Tags",
|
||||||
"Duration",
|
"Duration",
|
||||||
"TaggedWith",
|
"TaggedWith",
|
||||||
"WorkOrderStatus",
|
"WorkOrderStatus",
|
||||||
|
|||||||
Reference in New Issue
Block a user