change - 湿混机统计时间显示错误

wangsr
wangsr 1 year ago
parent 2e8dde6a35
commit ce5cc9974b

@ -229,7 +229,7 @@ namespace Mesnac.Action.ChemicalWeighing.LjReport
private string TimeConvert(int t)
{
int h = t / 3600;
int m = t / 60;
int m = (t / 60) % 60;
int s = t % 60;
if (h != 0)
{

Loading…
Cancel
Save