56 lines
1.9 KiB
C#
56 lines
1.9 KiB
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json.Linq;
|
|
using Sockeye.Biz;
|
|
namespace Sockeye.PickList
|
|
{
|
|
internal class VendorPickList : AyaPickList
|
|
{
|
|
public VendorPickList()
|
|
{
|
|
|
|
DefaultListAType = SockType.Vendor;
|
|
SQLFrom = "from avendor";
|
|
AllowedRoles = BizRoles.GetRoleSet(DefaultListAType).Select;
|
|
dynamic dTemplate = new JArray();
|
|
|
|
dynamic cm = new JObject();
|
|
cm.fld = "vendorname";
|
|
dTemplate.Add(cm);
|
|
|
|
cm = new JObject();
|
|
cm.fld = "vendortags";
|
|
dTemplate.Add(cm);
|
|
|
|
base.DefaultTemplate = dTemplate.ToString(Newtonsoft.Json.Formatting.None);
|
|
|
|
//NOTE: Due to the join, all the sql id and name fields that can conflict with the joined table need to be specified completely
|
|
ColumnDefinitions = new List<AyaPickListFieldDefinition>();
|
|
ColumnDefinitions.Add(new AyaPickListFieldDefinition
|
|
{
|
|
TKey = "Active",
|
|
FieldKey = "vendoractive",
|
|
ColumnDataType = UiFieldDataType.Bool,
|
|
SqlValueColumnName = "avendor.active",
|
|
IsActiveColumn = true
|
|
});
|
|
ColumnDefinitions.Add(new AyaPickListFieldDefinition
|
|
{
|
|
TKey = "Name",
|
|
FieldKey = "vendorname",
|
|
ColumnDataType = UiFieldDataType.Text,
|
|
SqlIdColumnName = "avendor.id",
|
|
SqlValueColumnName = "avendor.name",
|
|
IsRowId = true
|
|
});
|
|
|
|
ColumnDefinitions.Add(new AyaPickListFieldDefinition
|
|
{
|
|
TKey = "Tags",
|
|
FieldKey = "vendortags",
|
|
ColumnDataType = UiFieldDataType.Tags,
|
|
SqlValueColumnName = "avendor.tags"
|
|
});
|
|
|
|
}
|
|
}//eoc
|
|
}//eons |