|
@@ -15,10 +15,14 @@ public class TaskComponent : Component
|
|
|
|
|
|
public SJAllTotalTaskPerformanceComponent SJAllTotalTaskPerformance = new SJAllTotalTaskPerformanceComponent();
|
|
|
public Dictionary<string, Dictionary<string, List<string>>> alltotalReport = new();
|
|
|
+ // <sheet,<指标名,值列表>>
|
|
|
+ public Dictionary<string, Dictionary<string, List<string>>> totalReport = new();
|
|
|
|
|
|
private int currentExecuteCount = 1;
|
|
|
public int ExecutionContext = 0;
|
|
|
|
|
|
+ public int successCount = 0;
|
|
|
+
|
|
|
public void Start()
|
|
|
{
|
|
|
MHRescueMissions?.ForEach(r => r.Reset());
|
|
@@ -81,6 +85,17 @@ public class TaskComponent : Component
|
|
|
|
|
|
string totalPath = $"{path}/{"海上搜救任务总体指标报告"}.xls";
|
|
|
DataTableExtensions.SaveToExcel(totalPath, alltotalReport, true);
|
|
|
+
|
|
|
+
|
|
|
+ string totalPath1 = $"{path}/{"搜救任务总体指标报告"}.xls";
|
|
|
+ DataTableExtensions.SaveToExcel(totalPath1, totalReport);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void SaveTotalMH()
|
|
|
+ {
|
|
|
+ if (!totalReport.ContainsKey("总任务表现")) totalReport["总任务表现"] = new Dictionary<string, List<string>>();
|
|
|
+ if (!totalReport["总任务表现"].ContainsKey("任务成功率")) totalReport["总任务表现"]["任务成功率"] = new List<string>();
|
|
|
+ totalReport["总任务表现"]["任务成功率"].Add((successCount * 1f / ExecutionContext).ToString());
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -109,8 +124,11 @@ public class TaskComponentUpdateSystem : UpdateSystem<TaskComponent>
|
|
|
{
|
|
|
self.SJAllTotalTaskPerformance.FillData(self.SeaSJRescueMissions);
|
|
|
var report = self.SJAllTotalTaskPerformance.GetReport();
|
|
|
+ if (report["总任务表现"]["任务是否成功"] == "1")
|
|
|
+ self.successCount++;
|
|
|
self.SaveSJ(report);
|
|
|
}
|
|
|
+ self.SaveTotalMH();
|
|
|
self.ReportAllSJ();
|
|
|
self.SeaSJRescueMissions.Clear();
|
|
|
}
|