This commit is contained in:
2022-12-26 19:15:19 +00:00
parent 9604a3863e
commit d3ae5ff3ee
5 changed files with 650 additions and 17 deletions

View File

@@ -67,7 +67,7 @@ caseid BIGINT GENERATED BY DEFAULT AS IDENTITY NOT NULL, "
FieldDefinitions.Add(new DataListFieldDefinition
{
TKey = "Tags",
FieldKey = "gzcasetags",
FieldKey = "Tags",
UiFieldDataType = (int)UiFieldDataType.Tags,
SqlValueColumnName = "agzcase.tags"
});

View File

@@ -372,7 +372,7 @@ namespace Sockeye.Biz
}
#endregion
#region Purchase
#region Purchase
{
List<FormField> l = new List<FormField>();
l.Add(new FormField { TKey = "PurchaseExpireDate", FieldKey = "PurchaseExpireDate" });
@@ -391,7 +391,7 @@ namespace Sockeye.Biz
}
#endregion
#region SubscriptionServer
#region SubscriptionServer
{
List<FormField> l = new List<FormField>();
l.Add(new FormField { TKey = "SubServerNotes", FieldKey = "SubServerNotes" });
@@ -411,6 +411,19 @@ namespace Sockeye.Biz
}
#endregion
#region GZCase
{
List<FormField> l = new List<FormField>();
l.Add(new FormField { TKey = "Tags", FieldKey = "Tags" });
l.Add(new FormField { TKey = "Wiki", FieldKey = "Wiki" });
l.Add(new FormField { TKey = "Attachments", FieldKey = "Attachments", Requireable = false });
_formFields.Add(SockType.GZCase.ToString(), l);
}
#endregion
//******************************************************
}