T5 processor
This commit is contained in:
@@ -280,6 +280,7 @@ public class LayersController : Controller
|
||||
x.Name != null && x.Name.Contains(nameFilter) &&
|
||||
x.Records!.Any(y => y.Code == "Type" && y.Desc1 == "ImportWorker") &&
|
||||
x.Records!.Any(y => y.Code == "IsEnabled" && y.Desc1 == "True")
|
||||
|
||||
)
|
||||
.OrderByDescending(x => x.CreatedAt)
|
||||
.ToList();
|
||||
@@ -456,6 +457,7 @@ public class LayersController : Controller
|
||||
"T3-MultiSourceSummary", // AA
|
||||
"T3-MultiSourceYearSummary", // AA/13
|
||||
"T4-SingleSource",
|
||||
"T5-LastValues",
|
||||
"T1-R1_OLD",
|
||||
"T1-R1",
|
||||
"T4-R2",
|
||||
@@ -662,6 +664,12 @@ public class LayersController : Controller
|
||||
t4SingleSource.Process(processWorker);
|
||||
break;
|
||||
}
|
||||
case "T5-LastValues":
|
||||
{
|
||||
var t5LastValues = new T5LastValuesProcessor(_db, this);
|
||||
t5LastValues.Process(processWorker);
|
||||
break;
|
||||
}
|
||||
case "T3-MultiSourceSummary":
|
||||
{
|
||||
var t3MultiSourceSummary =
|
||||
|
||||
Reference in New Issue
Block a user