lightingRateService.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package service
  2. import (
  3. "iot_manager_service/app/operation/dao"
  4. "iot_manager_service/app/operation/edge_service"
  5. "iot_manager_service/app/operation/model"
  6. "iot_manager_service/util/common"
  7. )
  8. var LightingRateService = new(lightingRateService)
  9. type lightingRateService struct{}
  10. func (s lightingRateService) GetDayList(tenantId string, req model.RequestLightingRateFilter) ([]model.ResponseLightingRate, error) {
  11. return s.getData("day", tenantId, req)
  12. }
  13. func (s lightingRateService) GetMonthList(tenantId string, req model.RequestLightingRateFilter) ([]model.ResponseLightingRate, error) {
  14. return s.getData("month", tenantId, req)
  15. }
  16. // 公用请求边缘端数据,月和日
  17. func (s lightingRateService) getData(method string, tenantId string, req model.RequestLightingRateFilter) ([]model.ResponseLightingRate, error) {
  18. lightControl := dao.Operation{
  19. TenantId: tenantId,
  20. }
  21. codes, err := lightControl.GetSnList()
  22. if err != nil {
  23. return nil, err
  24. }
  25. flag := 1 //能耗请求类型:按天
  26. flag2 := 0 //亮灯率请求类型:按天
  27. if method == "month" {
  28. flag = 2 //能耗请求类型:按天
  29. flag2 = 1 //亮灯率请求类型:按月
  30. }
  31. //能耗
  32. forLightEnergy := edge_service.ForLightEnergy{}
  33. lightEnergys, err := forLightEnergy.GetLightEnergy(edge_service.ForLightEnergyReq{
  34. Codes: codes,
  35. Start: req.StartTime,
  36. End: req.EndTime,
  37. Flag: flag,
  38. })
  39. if err != nil {
  40. return nil, err
  41. }
  42. //亮灯率
  43. forLightRate := edge_service.ForLightRate{}
  44. lightRates, err := forLightRate.GetLightRate(edge_service.ForLightRateReq{
  45. Tenant: tenantId,
  46. Start: req.StartTime,
  47. End: req.EndTime,
  48. Flag: flag2,
  49. })
  50. if err != nil {
  51. return nil, err
  52. }
  53. var list []model.ResponseLightingRate
  54. //fmt.Printf("LightEnergys = %v", LightEnergys)
  55. var months []string
  56. if method == "month" {
  57. months = common.GetTimeMonths(req.StartTime, req.EndTime) //时间范围 月
  58. } else {
  59. months = common.GetTimeDays(req.StartTime, req.EndTime) //时间范围 天
  60. }
  61. //fmt.Printf("months = %v \n", months)
  62. for _, month := range months {
  63. // 能耗数据汇总
  64. var monthEnergyNum float64 //能耗
  65. for _, LightEnergy := range lightEnergys {
  66. for _, data := range LightEnergy {
  67. if month == data.Date {
  68. monthEnergyNum += data.Difference
  69. }
  70. }
  71. }
  72. //亮灯率
  73. var lightingRate float64
  74. var lightControlNum, lightingNum int
  75. for _, rate := range lightRates {
  76. date := rate.Date
  77. if method == "month" {
  78. date = rate.Month + "-01"
  79. }
  80. if date == month {
  81. lightingRate += rate.Rate //亮灯率
  82. lightControlNum += rate.Total //灯数
  83. lightingNum += rate.Number //亮灯数
  84. }
  85. }
  86. //组合数据到前端接口展示
  87. list = append(list, model.ResponseLightingRate{
  88. CountTime: month,
  89. EnergyNum: common.Decimal(monthEnergyNum),
  90. LightingRate: common.Decimal(lightingRate),
  91. LightControlNum: lightControlNum,
  92. LightingNum: lightingNum,
  93. })
  94. }
  95. return list, nil
  96. }