This commit is contained in:
2022-03-05 01:35:07 +00:00
parent 788c68cdf3
commit 6f9c1ce2c5
3 changed files with 9 additions and 16 deletions

View File

@@ -22,18 +22,6 @@ FIRST CLIENT SOURCE CODE COMMIT JAN 3rd 2019
# OUTSTANDING MAJOR AREAS TO BETA
cases,
investigate if possible to do notify reporting like before where send report as attachment to client without them logging in
I used to have some code for report id selection in the notification, but ....??
see if it's possible to just generate and send a report by email first then see about enabling it
use the existing test notification system wrap in debug block and use it to send a test workorder report for wo 1 to test address
This is sent to render a work order report:
POST http://localhost:7575/api/v8.0/report/render-job
{"AType":34,"selectedRowIds":[355],"ReportId":9,"ClientMeta":{"UserName":"AyaNova SuperUser","Authorization":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOiIxNjQ2NzgyNTc4IiwiaXNzIjoiYXlhbm92YS5jb20iLCJpZCI6IjEifQ.ad7Acq54JCRGitDWKDJFFnqKkidbdaKaFmj-RA_RG5E","DownloadToken":"NdoU8ca3LG4L39Tj2oi3UReeeM7FLevTgbgopTPhGbA","TimeZoneName":"America/Los_Angeles","LanguageName":"en-US","Hour12":true,"CurrencyName":"USD","DefaultLocale":"en","PDFDate":"3/3/22","PDFTime":"3:38 PM"}}
How to implement auto notifications if can report and send from server
In Customer nave section replicate the customer subscriptions form as a new automatic subscriptions list and form
@@ -43,7 +31,7 @@ How to implement auto notifications if can report and send from server
add text message, has templates like v7 did
Also in that same form be able to set the impersonation values like what time zone, what currency symbol what language id if not server default whatever is needed for reporting
defaults to local current user's settings, language setting etc and saves them
MUST HAVE feature would be to be able to click a button to see which current customers this would send to based on tags!!!
MUST HAVE feature click a button to see which current customers this would send to based on tags!!!
ideally it would display in the form live as any changes are made and if the customer has no email it would highl8ight that somehow
NICE TO HAVE FEATURE would also be available backwards from the Customer to view a list of things they will be notified about based on their tags and subscriptions set up
@@ -60,6 +48,8 @@ How to implement auto notifications if can report and send from server
Quote status changed (attach quote report), work order status changed (attach wo report) , wo follow up x days after closed (no report)
CASES
# OUTSTANDING BEFORE RELEASE

View File

@@ -1,8 +1,5 @@
<template>
<div>
<!-- <span v-if="!noLabel" class="text-caption">
{{ title }}
</span> -->
<v-autocomplete
:value="value"
:readonly="readonly"

View File

@@ -719,12 +719,18 @@ async function populateSelectionLists(vm) {
vm.selectLists.eventTypes = tempEventTypes.filter(z => {
//return true if it's a type allowed for customer
switch (z.id) {
case 4: //WorkorderStatusChange = 4
return true;
case 6: //notifyCSRAccepted;
return true;
case 7: //notifyCSRRejected;
return true;
case 9: //QuoteStatusChange = 9
return true;
case 21: //notifyServiceImminent;
return true;
case 24: //WorkorderStatusAge = 24 This is to replace the v7 wo follow up x days after closed notification to send message for follow up after closed
return true;
case 30: //notifyWOCompleted;
return true;
case 31: //notifyWOCreated;