AB-AA: excel name fix

This commit is contained in:
Michał Zieliński
2024-04-03 13:29:13 +02:00
parent f85d14c31c
commit 0be7f3282e
3 changed files with 81 additions and 80 deletions

View File

@@ -253,11 +253,11 @@ namespace WebAPI.Controllers
string[] processTypes = new string[] {
"T3-SingleSource",
"T3-MultiSourceSummary",
"T3-SourceYearSummary",
"T3-MultiSourceYearSummary",
"T3-MultiSourceCopySelectedCodes",
"T3-MultiSourceCopySelectedCodesYearSummary"
//"T3-MultiSourceSummary",
//"T3-SourceYearSummary",
//"T3-MultiSourceYearSummary",
//"T3-MultiSourceCopySelectedCodes",
//"T3-MultiSourceCopySelectedCodesYearSummary"
};
foreach (string type in processTypes)
@@ -278,6 +278,7 @@ namespace WebAPI.Controllers
x.Records!.Any(x => x.Code == "Type" && x.Desc1 == "ProcessWorker") &&
x.Records!.Any(x => x.Code == "IsEnabled" && x.Desc1 == "True") &&
x.Records!.Any(x => x.Code == "ProcessType" && x.Desc1 == type)
&& x.Number == 984
)
.OrderBy(x => x.CreatedAt)
.ToList();