66 lines
2.8 KiB
C#
66 lines
2.8 KiB
C#
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 |