fix selezione approvazione

This commit is contained in:
Samuele E. Locatelli
2021-01-23 09:45:08 +01:00
parent 1521ee7376
commit 8bfbe7b2f5
5 changed files with 198 additions and 171 deletions
+9
View File
@@ -174,6 +174,15 @@ namespace MP_ADM
return answ;
}
public string min2hour(object minutes)
{
string answ = "";
double minDbl = 0;
double.TryParse($"{minutes}", out minDbl);
answ = $"{minDbl / 60:N2}";
return answ;
}
/// <summary>
/// formatta in minuti/sec partendo da min.cent
/// </summary>