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
|
||||
Reference in New Issue
Block a user