lightingRateService.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. var LightingRateService = new(lightingRateService)
  10. type lightingRateService struct{}
  11. func (s lightingRateService) GetDayList(tenantId int, req model.RequestLightingRateFilter) ([]model.ResponseLightingRate, error) {
  12. return s.getData("day", tenantId, req)
  13. }
  14. func (s lightingRateService) GetMonthList(tenantId int, req model.RequestLightingRateFilter) ([]model.ResponseLightingRate, error) {
  15. return s.getData("month", tenantId, req)
  16. }
  17. // 公用请求边缘端数据,月和日
  18. func (s lightingRateService) getData(method string, tenantId int, req model.RequestLightingRateFilter) ([]model.ResponseLightingRate, error) {
  19. lightControl := dao.LightControl{
  20. TenantId: tenantId,
  21. }
  22. codes, err := lightControl.GetSnList()
  23. if err != nil {
  24. return nil, err
  25. }
  26. flag := 1 //按天
  27. flag2 := 0
  28. if method == "month" {
  29. flag = 2 //按月
  30. flag2 = 1
  31. }
  32. //能耗
  33. forLightEnergy := edge_service.ForLightEnergy{}
  34. lightEnergys, err := forLightEnergy.GetLightEnergy(edge_service.ForLightEnergyReq{
  35. Codes: codes,
  36. Start: req.StartTime,
  37. End: req.EndTime,
  38. Flag: flag,
  39. })
  40. if err != nil {
  41. return nil, err
  42. }
  43. //亮灯率
  44. forLightRate := edge_service.ForLightRate{}
  45. lightRates, err := forLightRate.GetLightRate(edge_service.ForLightRateReq{
  46. Tenant: strconv.Itoa(tenantId),
  47. Start: req.StartTime,
  48. End: req.EndTime,
  49. Flag: flag2,
  50. })
  51. if err != nil {
  52. return nil, err
  53. }
  54. var list []model.ResponseLightingRate
  55. //fmt.Printf("LightEnergys = %v", LightEnergys)
  56. var months []string
  57. if method == "month" {
  58. months = common.GetTimeMonths(req.StartTime, req.EndTime) //按月
  59. } else {
  60. months = common.GetTimeDays(req.StartTime, req.EndTime) //按天
  61. }
  62. //fmt.Printf("months = %v \n", months)
  63. for _, month := range months {
  64. // 能耗数据汇总
  65. var monthEnergyNum float64 //能耗
  66. for _, LightEnergy := range lightEnergys {
  67. for _, data := range LightEnergy {
  68. if month == data.Date {
  69. monthEnergyNum += data.Difference
  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. list = append(list, model.ResponseLightingRate{
  87. CountTime: month,
  88. EnergyNum: common.Decimal(monthEnergyNum),
  89. LightingRate: common.Decimal(lightingRate),
  90. LightControlNum: lightControlNum,
  91. LightingNum: lightingNum,
  92. })
  93. }
  94. return list, nil
  95. }