tangxu
2024-03-27 5b1f9ec7474f1c2a9f3c0c8e90e8e1d6961a430e
WebApi/众毅调度/ZyProjectHelper.cs
@@ -54,11 +54,11 @@
            dto_prj.Day = currentViewPrj.StartTime.ToString("yyyy-MM-dd");
            dto_prj.StartTime  = currentViewPrj.StartTime.ToString("yyyy-MM-dd HH:mm:ss");
            dto_prj.EndTime = currentViewPrj.StartTime.ToString("yyyy-MM-dd HH:mm:ss");
            dto_prj.EndTime = currentViewPrj.EndTime.ToString("yyyy-MM-dd HH:mm:ss");
            dto_prj.FlowTotal = currentViewPrj.SumFlow;
            dto_prj.PowerTotal = currentViewPrj.SumPower;
            dto_prj.MoneyTotal = currentViewPrj.SumMoney;
            dto_prj.FlowTotal = Math.Round(currentViewPrj.SumFlow, 0);
            dto_prj.PowerTotal = Math.Round(currentViewPrj.SumPower, 0);
            dto_prj.MoneyTotal = Math.Round(currentViewPrj.SumMoney, 0);
            dto_prj.Items = new List<ZyDto.SubmitPrjItem>();
            foreach (var bt in currentViewPrj.BlockTimes)