Filtraggio OPeratori e scarti da anagrafica

This commit is contained in:
Samuele Locatelli
2024-02-26 14:17:08 +01:00
parent fc134abf0c
commit d8d3078f2f
16 changed files with 63 additions and 51 deletions
+33 -33
View File
@@ -41,39 +41,6 @@ namespace MP.Mon.Components
aTimer.Dispose();
}
/// <summary>
/// CSS Class x overlay (effetto spento x macchina spenta/ sGr)
/// </summary>
protected string overlayCss
{
get
{
string answ = "";
if (CurrRecord != null)
{
answ = CurrRecord.Semaforo == "sGr" ? "bg-light opacity-25" : "";
}
return answ;
}
}
protected string textDescrCss = "";
///// <summary>
///// CSS calss x testo (se descr lunga scorre...)
///// </summary>
//protected string textDescrCss
//{
// get
// {
// string answ = "text-nowrap";
// if (CurrRecord != null && CurrRecord.DescrizioneStato.Length > 7)
// {
// answ = " scroll-left";
// }
// return answ;
// }
//}
public void ElapsedTimer(object? source, System.Timers.ElapsedEventArgs e)
{
var pUpd = Task.Run(async () =>
@@ -108,6 +75,21 @@ namespace MP.Mon.Components
pUpd.Wait();
}
///// <summary>
///// CSS class x testo (se descr lunga scorre...)
///// </summary>
//protected string textDescrCss
//{
// get
// {
// string answ = "text-nowrap";
// if (CurrRecord != null && CurrRecord.DescrizioneStato.Length > 7)
// {
// answ = " scroll-left";
// }
// return answ;
// }
//}
public void StartTimer()
{
int tOutPeriod = 1000;
@@ -126,6 +108,8 @@ namespace MP.Mon.Components
protected int kaFactor = 60 / 2;
protected string textDescrCss = "";
#endregion Protected Fields
#region Protected Properties
@@ -145,6 +129,22 @@ namespace MP.Mon.Components
protected bool dataLoaded { get; set; } = false;
/// <summary>
/// CSS Class x overlay (effetto spento x macchina spenta/ sGr)
/// </summary>
protected string overlayCss
{
get
{
string answ = "";
if (CurrRecord != null)
{
answ = CurrRecord.Semaforo == "sGr" ? "bg-light opacity-25" : "";
}
return answ;
}
}
#endregion Protected Properties
#region Protected Methods