This commit is contained in:
@@ -187,4 +187,8 @@ In addition to the [common edit form menu options](ay-start-edit-forms.md#common
|
||||
|
||||
#### Who will be notified
|
||||
|
||||
This menu option will list all Customers who will be potentially notified based on the current subscription.
|
||||
This menu option will list all Customers who will be potentially notified based on the current subscription Customer tag settings.
|
||||
|
||||

|
||||
|
||||
The total number of Customers is displayed in a badge in the top corner above the title. Any Customers without an email address will display in bold italic warning color text. Not having an email address is ok, it just means that Customer will not receive a notification.
|
||||
|
||||
BIN
docs/8.0/ayanova/docs/img/customer-notify-who-list.png
Normal file
BIN
docs/8.0/ayanova/docs/img/customer-notify-who-list.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 71 KiB |
@@ -150,7 +150,7 @@ namespace AyaNova.Api.Controllers
|
||||
using (var cmd = ct.Database.GetDbConnection().CreateCommand())
|
||||
{
|
||||
await ct.Database.OpenConnectionAsync();
|
||||
cmd.CommandText = $"select id, name, emailaddress from acustomer where active=true {custTagsWhere} order by name";
|
||||
cmd.CommandText = $"select id, name, COALESCE(emailaddress,'') from acustomer where active=true {custTagsWhere} order by name";
|
||||
using (var dr = await cmd.ExecuteReaderAsync())
|
||||
{
|
||||
while (dr.Read())
|
||||
|
||||
Reference in New Issue
Block a user