This commit is contained in:
2022-03-06 23:49:54 +00:00
parent 0065e71501
commit 3bf22e1e07
3 changed files with 6 additions and 2 deletions

View File

@@ -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.
![customer notify who list](img/customer-notify-who-list.png)
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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

View File

@@ -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())