85 lines
4.4 KiB
C#
85 lines
4.4 KiB
C#
using ReportingServices.Shared.Repositories;
|
|
using ReportingServices.Shared.Models.ProductionReport;
|
|
using ReportingServices.Shared.ViewModels.ProductionReport;
|
|
|
|
namespace ReportingServices.Shared.HelperClasses
|
|
{
|
|
public static class DailyReportHelper
|
|
{
|
|
private static readonly string _dailyRptFilePath = "wwwroot/Assets/DailyReportInfo.json";
|
|
private static readonly string _baseUrlFabtime = "https://localhost:7196/api/FabTime/";
|
|
private static readonly string _baseUrlScrapeDb = "https://localhost:7196/api/ScrapeDB/";
|
|
|
|
public async static Task<DailyReport> SetUpDailyReport()
|
|
{
|
|
List<Task<List<EquipmentStateByDay>>> tasksEQState = new();
|
|
List<Task<List<ToolStateCurrent>>> tasksState = new();
|
|
DailyReport report = new();
|
|
|
|
Task<YieldInformation> task1 = ApiCaller.GetApi<YieldInformation>(_baseUrlFabtime + "ReactorOuts?startDate=" + report.StartDate.ToString() + "&endDate=" + DateTime.Now.ToString());
|
|
Task<YieldInformation> task2 = ApiCaller.GetApi<YieldInformation>(_baseUrlFabtime + "ReactorOuts?startDate=" + report.StartDate.AddDays(-7).ToString() + "&endDate=" + report.StartDate.ToString());
|
|
|
|
tasksEQState.Add(ApiCaller.GetApi<List<EquipmentStateByDay>>(_baseUrlFabtime + "ToolStateTrend?toolType=ASM"));
|
|
tasksEQState.Add(ApiCaller.GetApi<List<EquipmentStateByDay>>(_baseUrlFabtime + "ToolStateTrend?toolType=EPP"));
|
|
tasksEQState.Add(ApiCaller.GetApi<List<EquipmentStateByDay>>(_baseUrlFabtime + "ToolStateTrend?toolType=HTR"));
|
|
tasksState.Add(ApiCaller.GetApi<List<ToolStateCurrent>>(_baseUrlFabtime + "ToolState?toolType=ASM"));
|
|
tasksState.Add(ApiCaller.GetApi<List<ToolStateCurrent>>(_baseUrlFabtime + "ToolState?toolType=EPP"));
|
|
tasksState.Add(ApiCaller.GetApi<List<ToolStateCurrent>>(_baseUrlFabtime + "ToolState?toolType=HTR"));
|
|
tasksState.Add(ApiCaller.GetApi<List<ToolStateCurrent>>(_baseUrlFabtime + "ToolState?toolType=Metrology"));
|
|
tasksState.Add(ApiCaller.GetApi<List<ToolStateCurrent>>(_baseUrlFabtime + "ToolState?toolType=Cleans"));
|
|
|
|
report.QuarterlyTargets = await ApiCaller.GetApi<QuarterlyTargets>(_baseUrlScrapeDb + "Targets");
|
|
|
|
Dictionary<string, List<ManualReportEntries>> entries = JsonFileHandler.LoadJSONFile<Dictionary<string, List<ManualReportEntries>>>(_dailyRptFilePath);
|
|
|
|
report.CurrentEntries = entries["Current Week"];
|
|
report.PreviousEntries = entries["Previous Week"];
|
|
|
|
report.AddToolAvailibilityByType("ASM", tasksEQState[0].Result);
|
|
report.AddToolAvailibilityByType("EPP", tasksEQState[1].Result);
|
|
report.AddToolAvailibilityByType("HTR", tasksEQState[2].Result);
|
|
|
|
report.AddToolStateByType("ASM", tasksState[0].Result);
|
|
report.AddToolStateByType("EPP", tasksState[1].Result);
|
|
report.AddToolStateByType("HTR", tasksState[2].Result);
|
|
report.AddToolStateByType("Metrology", tasksState[3].Result);
|
|
report.AddToolStateByType("Cleans", tasksState[4].Result);
|
|
|
|
report.SetRDSInfo(await ApiCaller.GetApi<List<RDS>>(_baseUrlScrapeDb + "RDS"));
|
|
report.SetReactorInfo(await ApiCaller.GetApi<List<Reactor>>(_baseUrlScrapeDb + "Reactors"), GetUnscheduledReactors(report));
|
|
|
|
report.CurrentWeek.SetYieldInformation(task1.Result);
|
|
report.PreviousWeek.SetYieldInformation(task2.Result);
|
|
|
|
report.ReverseLists();
|
|
|
|
entries["Current Week"] = report.CurrentEntries;
|
|
|
|
JsonFileHandler.SaveJSONFile(entries, _dailyRptFilePath);
|
|
|
|
return report;
|
|
}
|
|
|
|
public static List<int> GetUnscheduledReactors(DailyReport report)
|
|
{
|
|
List<int> reactors = new();
|
|
|
|
foreach (KeyValuePair<string, ToolStateByType> keyValuePairs in report.ToolStateByType)
|
|
{
|
|
if (keyValuePairs.Key != "Metrology" && keyValuePairs.Key != "Cleans")
|
|
{
|
|
foreach (ToolStateCurrent tool in keyValuePairs.Value.ToolStateCurrents)
|
|
{
|
|
if (tool.BasicStateDescription != "Productive" && tool.ReactorStatus != "Out of Service")
|
|
{
|
|
reactors.Add(int.Parse(tool.Tool.Substring(1)));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return reactors;
|
|
}
|
|
}
|
|
}
|