captureReportService.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/app/operation/edge_service"
  5. "iot_manager_service/app/operation/model"
  6. "iot_manager_service/util/common"
  7. "strconv"
  8. )
  9. // CaptureReportService 报表统计
  10. var CaptureReportService = new(captureReportService)
  11. type captureReportService struct{}
  12. func (s captureReportService) GetList(tenantId string, req model.RequestCaptureReportFilter) ([]model.ResponseCaptureReport, error) {
  13. var list []model.ResponseCaptureReport
  14. //按日期 或 时段把每个类型的汇总 展示 出来
  15. flag, record, err := s.getData(tenantId, req)
  16. nlist := make(map[string]int)
  17. allTypes := []int{14, 26, 17, 10, 33, 25, 146, 8, 9}
  18. qcTypes := []int{14, 26, 17, 10, 33, 25, 146}
  19. allTotal := make(map[string]int)
  20. value8Total := make(map[string]int)
  21. for _, data := range record {
  22. key := data.Time[:10]
  23. if flag == 2 {
  24. key = data.Time[11:13]
  25. }
  26. vtype := strconv.Itoa(data.Vtype)
  27. nlist[key+vtype] += data.Total
  28. if common.InIntArr(data.Vtype, qcTypes) {
  29. value8Total[key] += data.Total
  30. }
  31. if common.InIntArr(data.Vtype, allTypes) {
  32. allTotal[key] += data.Total
  33. }
  34. }
  35. var countTimes []string
  36. if flag == 0 {
  37. //日
  38. countTimes = common.GetTimeDays(req.StartTime, req.EndTime) //时间范围 天
  39. } else if flag == 2 {
  40. for i := 0; i < 24; i++ {
  41. ii := strconv.Itoa(i)
  42. if len(ii) < 2 {
  43. ii = "0" + ii
  44. }
  45. countTimes = append(countTimes, ii)
  46. }
  47. }
  48. //fmt.Printf("nlist = %v \n", nlist)
  49. //fmt.Printf("countTimes = %v \n", countTimes)
  50. // types := []int{14, 26, 17, 10, 33, 25, 146, 8, 9}
  51. for _, countTime := range countTimes {
  52. list = append(list, model.ResponseCaptureReport{
  53. CountTime: countTime,
  54. Value1: nlist[countTime+"14"],
  55. Value2: nlist[countTime+"26"],
  56. Value3: nlist[countTime+"17"],
  57. Value4: nlist[countTime+"10"],
  58. Value5: nlist[countTime+"33"],
  59. Value6: nlist[countTime+"25"],
  60. Value7: nlist[countTime+"146"],
  61. Value8: value8Total[countTime],
  62. Value9: nlist[countTime+"8"],
  63. Value10: nlist[countTime+"9"],
  64. AllTotal: allTotal[countTime],
  65. })
  66. }
  67. return list, err
  68. }
  69. //得到边缘接口 时间范围数据
  70. func (s captureReportService) getData(tenantId string, req model.RequestCaptureReportFilter) (int, []edge_service.ForCaptureItsData, error) {
  71. //区分按月或按日
  72. flag := 1 //月
  73. if req.QueryType == 1 {
  74. flag = 2 //时
  75. }
  76. if req.QueryType == 2 {
  77. flag = 0 //日
  78. }
  79. //查出抓拍单元sn
  80. unit := dao.CaptureUnit{
  81. TenantId: tenantId,
  82. ID: req.CaptureId,
  83. }
  84. unit.GetDevice()
  85. var codes []string
  86. codes = append(codes, unit.CaptureSn)
  87. forCaptureIts := edge_service.ForCaptureIts{}
  88. var forData []edge_service.ForCaptureItsData
  89. var err error
  90. forData, err = forCaptureIts.Vehicletypeex(edge_service.ForCaptureItsReq{
  91. Codes: codes,
  92. Start: req.StartTime,
  93. End: req.EndTime,
  94. Flag: flag,
  95. })
  96. return flag, forData, err
  97. }