This commit is contained in:
2021-07-08 13:45:12 +00:00
parent 8638bbd076
commit 3c93ac9506
2 changed files with 10 additions and 2 deletions

2
.vscode/launch.json vendored
View File

@@ -53,7 +53,7 @@
"AYANOVA_FOLDER_USER_FILES": "c:\\temp\\RavenTestData\\userfiles",
"AYANOVA_FOLDER_BACKUP_FILES": "c:\\temp\\RavenTestData\\backupfiles",
"AYANOVA_FOLDER_TEMPORARY_SERVER_FILES": "c:\\temp\\RavenTestData\\tempfiles",
"AYANOVA_SERVER_TEST_MODE": "false",
"AYANOVA_SERVER_TEST_MODE": "true",
"AYANOVA_SERVER_TEST_MODE_SEEDLEVEL": "small",
"AYANOVA_SERVER_TEST_MODE_TZ_OFFSET": "-7",
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\data\\code\\postgres_13\\bin\\"

View File

@@ -10,7 +10,7 @@ namespace AyaNova.DataList
SQLFrom = "from aReport";
var RoleSet = BizRoles.GetRoleSet(DefaultListAType);
AllowedRoles = RoleSet.ReadFullRecord | RoleSet.Change;
DefaultColumns = new List<string>() { "name", "aType", "active" };
DefaultColumns = new List<string>() { "name", "aType", "ReportNotes", "active" };
DefaultSortBy = new Dictionary<string, string>() { { "name", "+" } };
FieldDefinitions = new List<DataListFieldDefinition>();
@@ -34,6 +34,14 @@ namespace AyaNova.DataList
SqlValueColumnName = "areport.AType"
});
FieldDefinitions.Add(new DataListFieldDefinition
{
TKey = "ReportNotes",
FieldKey = "ReportNotes",
UiFieldDataType = (int)UiFieldDataType.Text,
SqlValueColumnName = "areport.notes"
});
FieldDefinitions.Add(new DataListFieldDefinition
{
TKey = "Active",