diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index c3214249..c02e0045 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -47,7 +47,9 @@ todo: Test server down while polling in release mode, does it recover when serve - +todo: pick lists in forms should be sortable alphabetically + for example the event types and object types in notification subscription + todo: does Duplicate code really duplicate the tags? i.e. duplicate a widget with tags, do the tags come over? if not then need to modify the copy object code to handle tags as well diff --git a/ayanova/src/views/home-notify-subscription.vue b/ayanova/src/views/home-notify-subscription.vue index 20334635..da706c1c 100644 --- a/ayanova/src/views/home-notify-subscription.vue +++ b/ayanova/src/views/home-notify-subscription.vue @@ -5,6 +5,24 @@ + + + + + + + + @@ -534,7 +555,43 @@ async function initForm(vm) { // Ensures UI translated text is available // async function fetchTranslatedText(vm) { - await window.$gz.translation.cacheTranslations(["NotifySubscription"]); + await window.$gz.translation.cacheTranslations([ + "NotifySubscription", + "NotifyDeliveryMethod", + "NotifyEventType", + "NotifyDeliveryAddress", + "InTags", + "OutTags", + "NotifyEventObjectDeleted", + "NotifyEventObjectCreated", + "NotifyEventObjectModified", + "NotifyEventWorkorderStatusChange", + "NotifyEventContractExpiring", + "NotifyEventCSRAccepted", + "NotifyEventCSRRejected", + "NotifyEventWorkorderClosed", + "NotifyEventQuoteStatusChange", + "NotifyEventWorkorderFollowUp", + "NotifyEventServiceBankDepleted", + "NotifyEventReminderImminent", + "NotifyEventScheduledOnWorkorder", + "NotifyEventScheduledOnWorkorderImminent", + "NotifyEventWorkorderCloseByPassed", + "NotifyEventOutsideServiceOverdue", + "NotifyEventOutsideServiceReceived", + "NotifyEventPartRequestReceived", + "NotifyEventNotifyHealthCheck", + "NotifyEventBackupStatus", + "NotifyEventCustomerServiceImminent", + "NotifyEventPartRequested", + "NotifyEventWorkorderTotalExceedsThreshold", + "NotifyEventWorkorderStatusAge", + "NotifyEventUnitWarrantyExpiry", + "NotifyEventUnitMeterReadingMultipleExceeded", + "NotifyEventDefaultNotification", + "NotifyDeliveryMethodApp", + "NotifyDeliveryMethodSMTP" + ]); } //////////////////////