This commit is contained in:
66
server/AyaNova/DataList/NotificationDeliveryLogDataList.cs
Normal file
66
server/AyaNova/DataList/NotificationDeliveryLogDataList.cs
Normal 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
|
||||
@@ -602,6 +602,8 @@
|
||||
"NoResults": "Keine Ergebnisse",
|
||||
"Notification": "Benachrichtigung",
|
||||
"Notifications": "Benachrichtigungen",
|
||||
"NotificationDeliveryLog":"Benutzerbenachrichtigungen",
|
||||
"NotificationCustomerDeliveryLog":"Kundenbenachrichtigungen",
|
||||
"NotificationSettings": "Benachrichtigungseinstellungen",
|
||||
"NotifyDeliveryAddress": "An Adresse liefern",
|
||||
"NotifyDeliveryMethod": "Benachrichtigungsversandmethode",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user