Ancora fix gestione parametri

This commit is contained in:
Samuele Locatelli
2024-05-09 09:16:02 +02:00
parent 94dbb30df6
commit c3dc2ca57a
10 changed files with 24 additions and 13 deletions
+6 -6
View File
@@ -1,7 +1,7 @@
<ShowProcessing Message="Caricamento" IsProcessing="@isProcessing"></ShowProcessing>
<div class="cardObj p-2 mt-2">
<div class="text-center">
<div class="d-flex justify-content-between">
<div class="d-flex justify-content-between px-1">
<div class="fs-3">
Gestione Parametri Macchina
</div>
@@ -10,7 +10,7 @@
</div>
</div>
</div>
<div class="p-1">
<div class="px-0 py-1">
<table class="table table-sm table-dark table-striped mb-0">
<thead>
<tr>
@@ -47,7 +47,7 @@
<div class="fw-bold text-uppercase">
@item.description
</div>
<div class="small smaller">
<div class="smaller lh-sm">
@item.name
</div>
</div>
@@ -75,7 +75,7 @@
<div class="col-12">
<div class="fw-bold text-primary small text-nowrap">
<i class="fa fa-hand-o-right" aria-hidden="true"></i>
@item.reqValue &nbsp;
@item.reqValue
</div>
</div>
</div>
@@ -109,7 +109,7 @@
</div>
}
</td>
<td class="text-center">
<td class="text-end">
@if (item.writable)
{
@if (isSelected(item.uid))
@@ -123,7 +123,7 @@
}
else
{
<button class="btn btn-sm btn-primary" @onclick="() => SelRecord(item)"><i class="fa fa-pencil" aria-hidden="true"></i></button>
<button class="btn btn-primary" @onclick="() => SelRecord(item)"><i class="fa fa-pencil" aria-hidden="true"></i></button>
}
}
</td>
+3
View File
@@ -0,0 +1,3 @@
.smaller {
font-size: 0.7rem;
}
+3
View File
@@ -0,0 +1,3 @@
.smaller {
font-size: 0.7rem;
}
+1
View File
@@ -0,0 +1 @@
.smaller{font-size:.7rem;}
+1 -1
View File
@@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<Version>6.16.2405.819</Version>
<Version>6.16.2405.909</Version>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>MP_TAB3</RootNamespace>
</PropertyGroup>
+1 -1
View File
@@ -1,6 +1,6 @@
<body>
<i>Modulo MAPOSPEC </i>
<h4>Versione: 6.16.2405.819</h4>
<h4>Versione: 6.16.2405.909</h4>
<br /> Note di rilascio:
<ul>
<li>
+1 -1
View File
@@ -1 +1 @@
6.16.2405.819
6.16.2405.909
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>6.16.2405.819</version>
<version>6.16.2405.909</version>
<url>https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/MP-TAB3.zip</url>
<changelog>https://nexus.steamware.net/repository/SWS/MP-TAB3/stable/LAST/ChangeLog.html</changelog>
<mandatory>false</mandatory>
+4
View File
@@ -50,5 +50,9 @@
{
"outputFile": "Pages/RegNewDevice.razor.css",
"inputFile": "Pages/RegNewDevice.razor.less"
},
{
"outputFile": "Components/ParamsMan.razor.css",
"inputFile": "Components/ParamsMan.razor.less"
}
]
+3 -3
View File
@@ -124,7 +124,7 @@ namespace MP.Data.Services
currTask.Add($"{taskKey}", taskVal);
}
answ = redisHashDictSet(currHash, currTask);
Log.Info($"Task ADD - idxMacchina: {idxMacchina} | taskKey: {taskKey} | taskVal: {taskVal}");
Log.Info($"Task ADD | hash: {currHash} | - idxMacchina: {idxMacchina} | taskKey: {taskKey} | taskVal: {taskVal}");
}
catch { }
// verifico in base al tipo di task se fare backup...
@@ -3320,7 +3320,7 @@ namespace MP.Data.Services
/// <returns></returns>
private string exeTaskHash(string idxMacchina)
{
return redHash($"ExeTask:{idxMacchina}");
return redHashMpIO($"ExeTask:{idxMacchina}");
}
/// <summary>
@@ -3498,7 +3498,7 @@ namespace MP.Data.Services
/// <returns></returns>
private string savedTaskHash(string idxMacchina)
{
return redHash($"SavedTask:{idxMacchina}");
return redHashMpIO($"SavedTask:{idxMacchina}");
}
#endregion Private Methods