captureReportService.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. // types := []int{14, 26, 17, 10, 33, 25, 146, 8, 9}
  49. for _, countTime := range countTimes {
  50. list = append(list, model.ResponseCaptureReport{
  51. CountTime: countTime,
  52. Value1: nlist[countTime+"14"],
  53. Value2: nlist[countTime+"26"],
  54. Value3: nlist[countTime+"17"],
  55. Value4: nlist[countTime+"10"],
  56. Value5: nlist[countTime+"33"],
  57. Value6: nlist[countTime+"25"],
  58. Value7: nlist[countTime+"146"],
  59. Value8: value8Total[countTime],
  60. Value9: nlist[countTime+"8"],
  61. Value10: nlist[countTime+"9"],
  62. AllTotal: allTotal[countTime],
  63. })
  64. }
  65. return list, err
  66. }
  67. // 得到边缘接口 时间范围数据
  68. func (s captureReportService) getData(tenantId string, req model.RequestCaptureReportFilter) (int, []edge_service.ForCaptureItsData, error) {
  69. //区分按月或按日
  70. flag := 1 //月
  71. if req.QueryType == 1 {
  72. flag = 2 //时
  73. }
  74. if req.QueryType == 2 {
  75. flag = 0 //日
  76. }
  77. //查出抓拍单元sn
  78. unit := dao.CaptureUnit{
  79. TenantId: tenantId,
  80. ID: req.CaptureId,
  81. }
  82. unit.GetDevice()
  83. var codes []string
  84. codes = append(codes, unit.CaptureSn)
  85. forCaptureIts := edge_service.ForCaptureIts{}
  86. var forData []edge_service.ForCaptureItsData
  87. var err error
  88. forData, err = forCaptureIts.Vehicletypeex(edge_service.ForCaptureItsReq{
  89. Codes: codes,
  90. Start: req.StartTime,
  91. End: req.EndTime,
  92. Flag: flag,
  93. })
  94. return flag, forData, err
  95. }