This commit is contained in:
@@ -137,6 +137,15 @@ namespace Sockeye.DataList
|
||||
});
|
||||
|
||||
|
||||
FieldDefinitions.Add(new DataListFieldDefinition
|
||||
{
|
||||
TKey = "DatabaseID",
|
||||
FieldKey = "DatabaseID",
|
||||
UiFieldDataType = (int)UiFieldDataType.Text,
|
||||
SqlValueColumnName = "apurchase.dbid"
|
||||
});
|
||||
|
||||
|
||||
FieldDefinitions.Add(new DataListFieldDefinition
|
||||
{
|
||||
TKey = "Tags",
|
||||
|
||||
@@ -12,10 +12,21 @@ namespace Sockeye.DataList
|
||||
|
||||
var RoleSet = BizRoles.GetRoleSet(DefaultListAType);
|
||||
AllowedRoles = RoleSet.ReadFullRecord | RoleSet.Change;
|
||||
DefaultColumns = new List<string>() { "VendorNotificationCreated", "VendorNotificationProcessed" };
|
||||
DefaultSortBy = new Dictionary<string, string>() { { "VendorNotificationCreated", "-" } };
|
||||
DefaultColumns = new List<string>() { "VendorNotification", "VendorNotificationCreated", "VendorNotificationProcessed" };
|
||||
DefaultSortBy = new Dictionary<string, string>() { { "VendorNotification", "-" } };
|
||||
FieldDefinitions = new List<DataListFieldDefinition>();
|
||||
|
||||
FieldDefinitions.Add(new DataListFieldDefinition
|
||||
{
|
||||
TKey = "VendorNotification",
|
||||
FieldKey = "VendorNotification",
|
||||
SockType = (int)SockType.VendorNotification,
|
||||
UiFieldDataType = (int)UiFieldDataType.Integer,
|
||||
SqlIdColumnName = "avendornotification.id",
|
||||
SqlValueColumnName = "avendornotification.id",
|
||||
IsRowId = true
|
||||
});
|
||||
|
||||
FieldDefinitions.Add(new DataListFieldDefinition
|
||||
{
|
||||
TKey = "VendorNotificationCreated",
|
||||
@@ -23,8 +34,7 @@ namespace Sockeye.DataList
|
||||
SockType = (int)SockType.VendorNotification,
|
||||
UiFieldDataType = (int)UiFieldDataType.DateTime,
|
||||
SqlIdColumnName = "avendornotification.id",
|
||||
SqlValueColumnName = "avendornotification.created",
|
||||
IsRowId = true
|
||||
SqlValueColumnName = "avendornotification.created"
|
||||
});
|
||||
|
||||
FieldDefinitions.Add(new DataListFieldDefinition
|
||||
|
||||
Reference in New Issue
Block a user