-
-
-
-
-
-
-
- - TDB Info 5
- - TDB Info 6
- - TDB Info 7
- - TDB Info 8
- - TDB Info 9
-
-
-
-
-
-
-
-
- @if (DevInfo != null && DevInfo.Count > 0)
- {
-
- //
- // @foreach (var item in DevInfo)
- // {
- // -
- //
- // @item.Key
- //
- //
- // @item.Value
- //
- //
- // }
- //
- }
- else
- {
-
No Info Present
- }
-
-
-
+
diff --git a/LiMan.UI/Components/InstAppPareto.razor.cs b/LiMan.UI/Components/InstAppPareto.razor.cs
index 7aed64b..94b1e51 100644
--- a/LiMan.UI/Components/InstAppPareto.razor.cs
+++ b/LiMan.UI/Components/InstAppPareto.razor.cs
@@ -223,6 +223,8 @@ namespace LiMan.UI.Components
private bool showDetail = false;
private Dictionary
DevInfo = new Dictionary();
+ private Dictionary RunStats = new Dictionary();
+ private Dictionary LicInfo = new Dictionary();
#region Private Properties
@@ -460,17 +462,42 @@ namespace LiMan.UI.Components
private void ReloadTaskResults()
{
DevInfo = new Dictionary();
+ RunStats = new Dictionary();
+ LicInfo = new Dictionary();
if (TaskDone != null && TaskDone.Count > 0)
{
- if (TaskDone.ContainsKey($"{EgwAccTask.DeviceInfoGet}"))
+ // cerco Device Info specifiche
+ string devInfoKey = $"{EgwAccTask.DeviceInfoGet}";
+ if (TaskDone.ContainsKey(devInfoKey))
{
- string rawData = TaskDone[$"{EgwAccTask.DeviceInfoGet}"];
+ string rawData = TaskDone[devInfoKey];
if (!string.IsNullOrEmpty(rawData) && rawData.Count() > 2)
{
DevInfo = JsonConvert.DeserializeObject>(rawData);
}
}
+
+ // cerco Info Stats
+ if (TaskDone.ContainsKey("RunStats"))
+ {
+ string rawData = TaskDone["RunStats"];
+ if (!string.IsNullOrEmpty(rawData) && rawData.Count() > 2)
+ {
+
+ RunStats = JsonConvert.DeserializeObject>(rawData);
+ }
+ }
+ // cerco Info License
+ if (TaskDone.ContainsKey("LicInfo"))
+ {
+ string rawData = TaskDone["LicInfo"];
+ if (!string.IsNullOrEmpty(rawData) && rawData.Count() > 2)
+ {
+
+ LicInfo = JsonConvert.DeserializeObject>(rawData);
+ }
+ }
}
}
diff --git a/LiMan.UI/Components/InstallInfoStats.razor b/LiMan.UI/Components/InstallInfoStats.razor
index 1dc6cc6..08b3ac7 100644
--- a/LiMan.UI/Components/InstallInfoStats.razor
+++ b/LiMan.UI/Components/InstallInfoStats.razor
@@ -119,7 +119,7 @@
-
+
diff --git a/LiMan.UI/Components/ListAppShort.razor b/LiMan.UI/Components/ListAppShort.razor
index ad3fef8..33a867b 100644
--- a/LiMan.UI/Components/ListAppShort.razor
+++ b/LiMan.UI/Components/ListAppShort.razor
@@ -1,4 +1,7 @@
+
diff --git a/LiMan.UI/Components/ListInfoShort.razor b/LiMan.UI/Components/ListInfoShort.razor
index 2f51172..f916f53 100644
--- a/LiMan.UI/Components/ListInfoShort.razor
+++ b/LiMan.UI/Components/ListInfoShort.razor
@@ -1,28 +1,38 @@
+
-
-
-
- |
- Key
-
- |
-
- Value
-
- |
-
-
-
- @foreach (var item in ListRecord)
- {
+ @if (DetailInfo == null && totalCount == 0)
+ {
+ No Info Present
+ }
+ else
+ {
+
+
- | @item.Key |
- @item.Value |
+
+ Key
+
+ |
+
+ Value
+
+ |
- }
-
-
+
+
+ @foreach (var item in ListRecord)
+ {
+
+ | @item.Key |
+ @item.Value |
+
+ }
+
+
+ }