| | |
| | | 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) |