This commit is contained in:
2021-09-08 15:11:38 +00:00
parent ec31899940
commit 3cc64146dc
3 changed files with 3 additions and 4 deletions

1
.vscode/launch.json vendored
View File

@@ -46,7 +46,6 @@
// "AYANOVA_LOG_LEVEL": "Debug",
// "AYANOVA_LOG_LEVEL": "Trace",
"AYANOVA_DEFAULT_TRANSLATION": "en",
//TRANSLATION MUST BE en for Integration TESTING
//"AYANOVA_PERMANENTLY_ERASE_DATABASE": "true",
"AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=raven;Database=AyaNova;CommandTimeout=120;",
"AYANOVA_USE_URLS": "http://*:7575;",

View File

@@ -23,8 +23,8 @@ SERVER
- BUMP AyaNova.csproj version number
- BUILD RELEASE Run buildrelease.bat in server project folder
https://www.ayanova.com/Downloads/v8/ayanova8.alpha.129-win-x64.7z
https://www.ayanova.com/Downloads/v8/migrate129.7z
https://www.ayanova.com/Downloads/v8/ayanova8.alpha.130-win-x64.7z
https://www.ayanova.com/Downloads/v8/migrate130.7z
**ARCHIVE IT, otherwise it could be false positived
- COPY TO DEVOPS SERVER

View File

@@ -15,7 +15,7 @@ namespace AyaNova.DataList
"left join aworkorder as w on (wi.workorderid=w.id)";
var RoleSet = BizRoles.GetRoleSet(DefaultListAType);
AllowedRoles = RoleSet.ReadFullRecord | RoleSet.Change;
DefaultColumns = new List<string>() { "Created", "Customer", "CustomerServiceRequestTitle", "CustomerServiceRequestPriority", "CustomerServiceRequestStatus" };
DefaultColumns = new List<string>() { "Created", "Customer", "CustomerServiceRequestTitle", "CustomerServiceRequestPriority", "CustomerServiceRequestStatus", "WorkOrder" };
DefaultSortBy = new Dictionary<string, string>() { { "Created", "-" } };
FieldDefinitions = new List<DataListFieldDefinition>();