lightingRateService.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. var months []string
  55. if method == "month" {
  56. months = common.GetTimeMonths(req.StartTime, req.EndTime) //时间范围 月
  57. } else {
  58. months = common.GetTimeDays(req.StartTime, req.EndTime) //时间范围 天
  59. }
  60. for _, month := range months {
  61. // 能耗数据汇总
  62. var monthEnergyNum float64 //能耗
  63. for _, LightEnergy := range lightEnergys {
  64. for _, data := range LightEnergy {
  65. if month == data.Date {
  66. monthEnergyNum += data.Difference
  67. }
  68. }
  69. }
  70. //亮灯率
  71. var lightingRate float64
  72. var lightControlNum, lightingNum int
  73. for _, rate := range lightRates {
  74. date := rate.Date
  75. if method == "month" {
  76. date = rate.Month + "-01"
  77. }
  78. if date == month {
  79. lightingRate += rate.Rate //亮灯率
  80. lightControlNum += rate.Total //灯数
  81. lightingNum += rate.Number //亮灯数
  82. }
  83. }
  84. //组合数据到前端接口展示
  85. list = append(list, model.ResponseLightingRate{
  86. CountTime: month,
  87. EnergyNum: common.Decimal(monthEnergyNum),
  88. LightingRate: common.Decimal(lightingRate),
  89. LightControlNum: lightControlNum,
  90. LightingNum: lightingNum,
  91. })
  92. }
  93. return list, nil
  94. }