This commit is contained in:
2022-03-09 00:43:33 +00:00
parent 8736474ef1
commit 190fbb8442
5 changed files with 75 additions and 1 deletions

View File

@@ -0,0 +1,66 @@
using System.Collections.Generic;
using AyaNova.Biz;
namespace AyaNova.DataList
{
internal class NotificationDeliveryLogDataList : DataListProcessingBase
{
public NotificationDeliveryLogDataList(long translationId)
{
DefaultListAType = AyaType.Project;
SQLFrom = @"select anotifydeliverylog.processed, anotifysubscription.id as subscriptionid, auser.name as username from anotifydeliverylog
left join anotifysubscription on anotifysubscription.id = anotifydeliverylog.notifysubscriptionid
left join auser on anotifysubscription.userid=auser.id";
var RoleSet = BizRoles.GetRoleSet(DefaultListAType);
AllowedRoles = RoleSet.ReadFullRecord | RoleSet.Change;
DefaultColumns = new List<string>() { "NotifySubscription", "Processed","User", "Failed", "Errors" };
DefaultSortBy = new Dictionary<string, string>() { { "Processed", "-" } };
FieldDefinitions = new List<DataListFieldDefinition>();
FieldDefinitions.Add(new DataListFieldDefinition
{
TKey = "NotifySubscription",
FieldKey = "NotifySubscription",
AType = (int)AyaType.NotifySubscription,
UiFieldDataType = (int)UiFieldDataType.Text,
SqlIdColumnName = "anotifysubscription.id",
SqlValueColumnName = "anotifysubscription.id",
IsRowId = true
});
FieldDefinitions.Add(new DataListFieldDefinition
{
TKey = "Processed",
FieldKey = "Processed",
UiFieldDataType = (int)UiFieldDataType.DateTime,
SqlValueColumnName = "anotifydeliverylog.processed"
});
FieldDefinitions.Add(new DataListFieldDefinition
{
TKey = "Failed",
FieldKey = "Failed",
UiFieldDataType = (int)UiFieldDataType.Bool,
SqlValueColumnName = "anotifydeliverylog.fail"
});
FieldDefinitions.Add(new DataListFieldDefinition
{
TKey = "Errors",
FieldKey = "Errors",
UiFieldDataType = (int)UiFieldDataType.Text,
SqlValueColumnName = "anotifydeliverylog.error"
});
FieldDefinitions.Add(new DataListFieldDefinition
{
FieldKey = "User",
TKey = "User",
UiFieldDataType = (int)UiFieldDataType.Text,
AType = (int)AyaType.User,
SqlIdColumnName = "auser.id",
SqlValueColumnName = "auser.name"
});
}
}//eoc
}//eons

View File

@@ -602,6 +602,8 @@
"NoResults": "Keine Ergebnisse",
"Notification": "Benachrichtigung",
"Notifications": "Benachrichtigungen",
"NotificationDeliveryLog":"Benutzerbenachrichtigungen",
"NotificationCustomerDeliveryLog":"Kundenbenachrichtigungen",
"NotificationSettings": "Benachrichtigungseinstellungen",
"NotifyDeliveryAddress": "An Adresse liefern",
"NotifyDeliveryMethod": "Benachrichtigungsversandmethode",

View File

@@ -602,8 +602,10 @@
"NoResults": "No results",
"Notification": "Notification",
"Notifications": "Notifications",
"NotificationDeliveryLog":"User notifications log",
"NotificationCustomerDeliveryLog":"Customer notification log",
"NotificationSettings": "Notification settings",
"NotifyDeliveryAddress": "Deliver to address",
"NotifyDeliveryAddress": "Deliver to address",
"NotifyDeliveryMethod": "Notification delivery method",
"NotifyDeliveryMethodApp": "Deliver in application",
"NotifyDeliveryMethodSMTP": "Deliver to email address",

View File

@@ -602,6 +602,8 @@
"NoResults": "No hay resultados",
"Notification": "Notificación",
"Notifications": "Notificaciones",
"NotificationDeliveryLog":"Notificaciones de usuario",
"NotificationCustomerDeliveryLog":"Notificaciones de clientes",
"NotificationSettings": "Configuración de notificaciones",
"NotifyDeliveryAddress": "Entregar a la dirección de correo electrónico",
"NotifyDeliveryMethod": "Método de entrega de notificaciones",

View File

@@ -602,6 +602,8 @@
"NoResults": "Aucun résultat",
"Notification": "Notification",
"Notifications": "Notifications",
"NotificationDeliveryLog":"Notifications utilisateur",
"NotificationCustomerDeliveryLog":"Notifications aux clients",
"NotificationSettings": "Paramètres de notification",
"NotifyDeliveryAddress": "Livrer à l'adresse",
"NotifyDeliveryMethod": "Méthode de remise des notifications",