Browse Source

1.修改生产看板的加班工时,无效工时保留2位

PTD
Marvin 2 years ago
parent
commit
8016abe7a8
  1. 4
      AMESCoreStudio.WebApi/Controllers/BLL/RPTController.cs

4
AMESCoreStudio.WebApi/Controllers/BLL/RPTController.cs

@ -384,8 +384,8 @@ namespace AMESCoreStudio.WebApi.Controllers.BLL
result.attendance = double.Parse(attendance.ToString("0.00"));
result.productiveForces = double.Parse(productivity.ToString("0.00"));
result.overtime = sumPI_OverTime;
result.invalidHours = sumPI_InvalidTIme;
result.overtime = double.Parse(sumPI_OverTime.ToString("0.00"));
result.invalidHours = double.Parse(sumPI_InvalidTIme.ToString("0.00"));
return result;
}

Loading…
Cancel
Save