Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
U
unify_api2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chaonan
unify_api2
Commits
7e380ceb
Commit
7e380ceb
authored
May 29, 2023
by
ZZH
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove es 2023-5-29
parent
95140e9a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
127 additions
and
487 deletions
+127
-487
alarm_cps.py
unify_api/modules/common/procedures/alarm_cps.py
+1
-26
power_cps.py
unify_api/modules/common/procedures/power_cps.py
+7
-37
elec_charge_dao.py
unify_api/modules/elec_charge/dao/elec_charge_dao.py
+5
-81
elec_charge_pds.py
unify_api/modules/elec_charge/procedures/elec_charge_pds.py
+10
-206
elec_charge_service.py
unify_api/modules/elec_charge/service/elec_charge_service.py
+5
-5
elec_charge.py
unify_api/modules/elec_charge/views/elec_charge.py
+26
-27
optimization_pds.py
...ules/electric_optimization/procedures/optimization_pds.py
+2
-28
proxy_optimization_pds.py
...lectric_optimization/procedures/proxy_optimization_pds.py
+57
-40
power_index.py
..._api/modules/electric_optimization/service/power_index.py
+3
-4
count_info_service.py
unify_api/modules/home_page/service/count_info_service.py
+2
-24
count_info_proxy.py
unify_api/modules/home_page/views/count_info_proxy.py
+9
-9
No files found.
unify_api/modules/common/procedures/alarm_cps.py
View file @
7e380ceb
...
@@ -36,35 +36,10 @@ async def alarm_count(company_ids):
...
@@ -36,35 +36,10 @@ async def alarm_count(company_ids):
return
total_alarm_cnt
return
total_alarm_cnt
async
def
alarm_count_sdu_new15
(
cids
):
async
def
load_alarm_cnt_sdu
(
cids
):
sql
=
f
"select count(1) doc_count from point_1min_event "
\
sql
=
f
"select count(1) doc_count from point_1min_event "
\
f
"where cid in
%
s and importance in (1, 2, 3) "
\
f
"where cid in
%
s and importance in (1, 2, 3) "
\
f
"and event_type in {tuple(SDU_ALARM_LIST)}"
f
"and event_type in {tuple(SDU_ALARM_LIST)}"
async
with
MysqlUtil
()
as
conn
:
async
with
MysqlUtil
()
as
conn
:
data
=
await
conn
.
fetchone
(
sql
,
args
=
(
cids
,))
data
=
await
conn
.
fetchone
(
sql
,
args
=
(
cids
,))
return
data
[
"doc_count"
]
or
0
return
data
[
"doc_count"
]
or
0
async
def
alarm_count_sdu_new
(
company_ids
):
"""新版识电u报警类型只包含3种"""
query_body
=
{
"query"
:
{
"bool"
:
{
"filter"
:
[
{
"terms"
:
{
"cid"
:
company_ids
}},
{
"terms"
:
{
"type.keyword"
:
SDU_ALARM_LIST
}}
]
}
},
"size"
:
0
,
"aggs"
:
{
"cid_alarm_aggs"
:
{
"terms"
:
{
"field"
:
"cid"
,
"size"
:
10000
}}},
}
async
with
EsUtil
()
as
es
:
es_result
=
await
es
.
search_origin
(
body
=
query_body
,
index
=
constants
.
POINT_1MIN_EVENT
)
cid_alarm_buckets
=
(
es_result
.
get
(
"aggregations"
,
{})
.
get
(
"cid_alarm_aggs"
,
{})
.
get
(
"buckets"
,
[])
)
total_alarm_cnt
=
sum
([
i
[
"doc_count"
]
for
i
in
cid_alarm_buckets
])
return
total_alarm_cnt
unify_api/modules/common/procedures/power_cps.py
View file @
7e380ceb
...
@@ -5,19 +5,21 @@ from unify_api import constants
...
@@ -5,19 +5,21 @@ from unify_api import constants
async
def
power_use_count
(
company_ids
):
async
def
power_use_count
(
company_ids
):
query_body
=
{
query_body
=
{
"query"
:
{
"bool"
:
{
"filter"
:
[{
"terms"
:
{
"cid"
:
company_ids
}},]}},
"query"
:
{
"bool"
:
{
"filter"
:
[{
"terms"
:
{
"cid"
:
company_ids
}},
]}},
"size"
:
0
,
"size"
:
0
,
"aggs"
:
{
"kwh"
:
{
"sum"
:
{
"field"
:
"kwh"
}}},
"aggs"
:
{
"kwh"
:
{
"sum"
:
{
"field"
:
"kwh"
}}},
}
}
async
with
EsUtil
()
as
es
:
async
with
EsUtil
()
as
es
:
es_result
=
await
es
.
search_origin
(
body
=
query_body
,
index
=
constants
.
COMPANY_15MIN_POWER
)
es_result
=
await
es
.
search_origin
(
body
=
query_body
,
index
=
constants
.
COMPANY_15MIN_POWER
)
total_power
=
round
(
es_result
.
get
(
"aggregations"
,
{})
.
get
(
"kwh"
,
{})
.
get
(
"value"
)
or
0
,
2
)
total_power
=
round
(
es_result
.
get
(
"aggregations"
,
{})
.
get
(
"kwh"
,
{})
.
get
(
"value"
)
or
0
,
2
)
return
total_power
return
total_power
async
def
power_use_count_new15
(
cids
):
async
def
load_cmpy_power
(
cids
):
sql
=
"SELECT COUNT(kwh) kwh FROM `company_1day_power` where cid in
%
s"
sql
=
"SELECT COUNT(kwh) kwh FROM `company_1day_power` where cid in
%
s"
async
with
MysqlUtil
()
as
conn
:
async
with
MysqlUtil
()
as
conn
:
data
=
await
conn
.
fetchone
(
sql
,
args
=
(
cids
,))
data
=
await
conn
.
fetchone
(
sql
,
args
=
(
cids
,))
...
@@ -26,43 +28,11 @@ async def power_use_count_new15(cids):
...
@@ -26,43 +28,11 @@ async def power_use_count_new15(cids):
async
def
inline_power_use_info
(
inline_ids
,
month_str
):
async
def
inline_power_use_info
(
inline_ids
,
month_str
):
"""
获取进线用电信息
:param inline_id:
:param es_start_time:
:param es_end_time:
:return:
"""
async
with
EsUtil
()
as
es
:
filters
=
[
{
"terms"
:
{
"inlid"
:
inline_ids
}},
{
"term"
:
{
"month"
:
f
"{month_str}-01T00:00:00+08:00"
}},
]
query_body
=
{
"query"
:
{
"bool"
:
{
"filter"
:
filters
}},
"size"
:
10000
,
}
es_result
=
await
es
.
search_origin
(
body
=
query_body
,
index
=
constants
.
INLINE_1MONTH_POWER
)
power_infos
=
es_result
[
"hits"
][
"hits"
]
inline_power_info_map
=
{
i
[
"_source"
][
"inlid"
]:
{
"kwh"
:
i
[
"_source"
][
"kwh"
],
"charge"
:
i
[
"_source"
][
"charge"
],
"p"
:
i
[
"_source"
][
"p"
],
}
for
i
in
power_infos
}
return
inline_power_info_map
async
def
inline_power_use_info_new15
(
inline_ids
,
month_str
):
sql
=
"SELECT inlid, sum(kwh) kwh, sum(charge) charge, sum(p) p FROM "
\
sql
=
"SELECT inlid, sum(kwh) kwh, sum(charge) charge, sum(p) p FROM "
\
"`inline_1day_power` where inlid in
%
s and "
\
"`inline_1day_power` where inlid in
%
s and "
\
f
"DATE_FORMAT(create_time, '
%%
Y-
%%
m')='{month_str}' GROUP BY inlid"
f
"DATE_FORMAT(create_time, '
%%
Y-
%%
m')='{month_str}' GROUP BY inlid"
async
with
MysqlUtil
()
as
conn
:
async
with
MysqlUtil
()
as
conn
:
datas
=
await
conn
.
fetchall
(
sql
,
args
=
(
inline_ids
,
))
datas
=
await
conn
.
fetchall
(
sql
,
args
=
(
inline_ids
,))
inline_power_info_map
=
{
inline_power_info_map
=
{
i
[
"inlid"
]:
{
i
[
"inlid"
]:
{
"kwh"
:
i
[
"kwh"
],
"kwh"
:
i
[
"kwh"
],
...
...
unify_api/modules/elec_charge/dao/elec_charge_dao.py
View file @
7e380ceb
...
@@ -73,7 +73,7 @@ async def query_charge_aggs(date_start, date_end, cid_list):
...
@@ -73,7 +73,7 @@ async def query_charge_aggs(date_start, date_end, cid_list):
"""
"""
start_es
=
convert_es_str
(
date_start
)
start_es
=
convert_es_str
(
date_start
)
end_es
=
convert_es_str
(
date_end
)
end_es
=
convert_es_str
(
date_end
)
query_body
=
{
query_body
=
{
"size"
:
0
,
"size"
:
0
,
"query"
:
{
"query"
:
{
...
@@ -180,83 +180,7 @@ async def power_charge_p_cid_aggs(date_start, date_end, cid_list, interval):
...
@@ -180,83 +180,7 @@ async def power_charge_p_cid_aggs(date_start, date_end, cid_list, interval):
return
results
or
[]
return
results
or
[]
async
def
query_charge_aggs_points
(
date_start
,
date_end
,
point_list
):
async
def
query_charge_aggs_points
(
start
,
end
,
point_list
):
"""
返回: [
{
"key" : 32,
"doc_count" : 44,
"charge" : {
"value" : 8658.496337890625
},
"kwh" : {
"value" : 25314.447940826416
}
},
{
"key" : 44,
"doc_count" : 43,
"charge" : {
"value" : 13868.499267578125
},
"kwh" : {
"value" : 31743.359497070312
}
}
]
"""
start_es
=
convert_es_str
(
date_start
)
end_es
=
convert_es_str
(
date_end
)
query_body
=
{
"size"
:
0
,
"query"
:
{
"bool"
:
{
"must"
:
[
{
"terms"
:
{
"pid"
:
point_list
}
},
{
"range"
:
{
"quarter_time"
:
{
"gte"
:
start_es
,
"lte"
:
end_es
}
}
}
]
}
},
"aggs"
:
{
"points"
:
{
"terms"
:
{
"field"
:
"pid"
,
"size"
:
10000
},
"aggs"
:
{
"kwh"
:
{
"sum"
:
{
"field"
:
"kwh"
}
},
"charge"
:
{
"sum"
:
{
"field"
:
"charge"
}
}
}
}
}
}
log
.
info
(
query_body
)
async
with
EsUtil
()
as
es
:
es_re
=
await
es
.
search_origin
(
body
=
query_body
,
index
=
index_point
)
return
es_re
[
"aggregations"
][
"points"
][
"buckets"
]
async
def
query_charge_aggs_points_new15
(
start
,
end
,
point_list
):
sql
=
f
"SELECT pid,sum(kwh) kwh,SUM(charge) charge "
\
sql
=
f
"SELECT pid,sum(kwh) kwh,SUM(charge) charge "
\
f
"FROM `point_15min_power` "
\
f
"FROM `point_15min_power` "
\
f
"where pid in
%
s and create_time BETWEEN '{start}' and '{end}' "
\
f
"where pid in
%
s and create_time BETWEEN '{start}' and '{end}' "
\
...
@@ -270,7 +194,7 @@ async def histogram_aggs_points(date_start, date_end, point_list, interval):
...
@@ -270,7 +194,7 @@ async def histogram_aggs_points(date_start, date_end, point_list, interval):
"""date_histogram"""
"""date_histogram"""
start_es
=
convert_es_str
(
date_start
)
start_es
=
convert_es_str
(
date_start
)
end_es
=
convert_es_str
(
date_end
)
end_es
=
convert_es_str
(
date_end
)
query_body
=
{
query_body
=
{
"size"
:
0
,
"size"
:
0
,
"query"
:
{
"query"
:
{
...
@@ -332,7 +256,7 @@ async def power_charge_p_point_aggs(date_start, date_end, pid_list, interval):
...
@@ -332,7 +256,7 @@ async def power_charge_p_point_aggs(date_start, date_end, pid_list, interval):
"""
"""
start_es
=
convert_es_str
(
date_start
)
start_es
=
convert_es_str
(
date_start
)
end_es
=
convert_es_str
(
date_end
)
end_es
=
convert_es_str
(
date_end
)
query_body
=
{
query_body
=
{
"size"
:
0
,
"size"
:
0
,
"query"
:
{
"query"
:
{
...
@@ -429,7 +353,7 @@ async def extended_bounds_agg(date_start, date_end, cid_list, interval):
...
@@ -429,7 +353,7 @@ async def extended_bounds_agg(date_start, date_end, cid_list, interval):
"""
"""
start_es
=
convert_es_str
(
date_start
)
start_es
=
convert_es_str
(
date_start
)
end_es
=
convert_es_str
(
date_end
)
end_es
=
convert_es_str
(
date_end
)
query_body
=
{
query_body
=
{
"size"
:
0
,
"size"
:
0
,
"query"
:
{
"query"
:
{
...
...
unify_api/modules/elec_charge/procedures/elec_charge_pds.py
View file @
7e380ceb
This diff is collapsed.
Click to expand it.
unify_api/modules/elec_charge/service/elec_charge_service.py
View file @
7e380ceb
...
@@ -5,7 +5,7 @@ from unify_api.modules.common.components.common_cps import LevelResp
...
@@ -5,7 +5,7 @@ from unify_api.modules.common.components.common_cps import LevelResp
from
unify_api.modules.common.procedures.points
import
points_by_storeys
from
unify_api.modules.common.procedures.points
import
points_by_storeys
from
unify_api.modules.elec_charge.components.elec_charge_cps
import
KpResp
from
unify_api.modules.elec_charge.components.elec_charge_cps
import
KpResp
from
unify_api.modules.elec_charge.dao.elec_charge_dao
import
\
from
unify_api.modules.elec_charge.dao.elec_charge_dao
import
\
query_charge_aggs_points
,
query_charge_aggs_points_new15
query_charge_aggs_points
from
unify_api.modules.electric.dao.electric_dao
import
\
from
unify_api.modules.electric.dao.electric_dao
import
\
monitor_point_join_by_points
monitor_point_join_by_points
from
unify_api.modules.home_page.procedures.count_info_pds
import
current_load
,
\
from
unify_api.modules.home_page.procedures.count_info_pds
import
current_load
,
\
...
@@ -20,7 +20,7 @@ async def kwh_points_service(cid, start, end, storeys):
...
@@ -20,7 +20,7 @@ async def kwh_points_service(cid, start, end, storeys):
# 获取point_id列表
# 获取point_id列表
points
=
[
i
.
get
(
"point_id"
)
for
i
in
point_list
]
points
=
[
i
.
get
(
"point_id"
)
for
i
in
point_list
]
# 2. es查询数据
# 2. es查询数据
es_res
=
await
query_charge_aggs_points
_new15
(
start
,
end
,
points
)
es_res
=
await
query_charge_aggs_points
(
start
,
end
,
points
)
es_res
=
{
i
[
"pid"
]:
i
for
i
in
es_res
if
es_res
}
es_res
=
{
i
[
"pid"
]:
i
for
i
in
es_res
if
es_res
}
# 3. 构造返回
# 3. 构造返回
kwh_data
=
{}
kwh_data
=
{}
...
@@ -64,7 +64,7 @@ async def kwh_card_level_service(cid, point_list, start, end):
...
@@ -64,7 +64,7 @@ async def kwh_card_level_service(cid, point_list, start, end):
# 1. 获取每个point_id的详细信息
# 1. 获取每个point_id的详细信息
monitor_point_list
=
await
monitor_point_join_by_points
(
point_list
)
monitor_point_list
=
await
monitor_point_join_by_points
(
point_list
)
# 2. es查询数据
# 2. es查询数据
es_res
=
await
query_charge_aggs_points
_new15
(
start
,
end
,
point_list
)
es_res
=
await
query_charge_aggs_points
(
start
,
end
,
point_list
)
es_res
=
{
i
[
"pid"
]:
i
for
i
in
es_res
if
es_res
}
es_res
=
{
i
[
"pid"
]:
i
for
i
in
es_res
if
es_res
}
# 3. 返回数据
# 3. 返回数据
ret_data
=
{
ret_data
=
{
...
@@ -90,11 +90,11 @@ async def kwh_card_level_service(cid, point_list, start, end):
...
@@ -90,11 +90,11 @@ async def kwh_card_level_service(cid, point_list, start, end):
kwh
=
round_2
(
es_res
[
point_id
][
"kwh"
])
kwh
=
round_2
(
es_res
[
point_id
][
"kwh"
])
charge
=
round_2
(
es_res
[
point_id
][
"charge"
])
charge
=
round_2
(
es_res
[
point_id
][
"charge"
])
price
=
round_2
(
division_two
(
charge
,
kwh
))
price
=
round_2
(
division_two
(
charge
,
kwh
))
res_dic
[
"kwh"
]
=
kwh
res_dic
[
"kwh"
]
=
kwh
res_dic
[
"charge"
]
=
charge
res_dic
[
"charge"
]
=
charge
res_dic
[
"price"
]
=
price
res_dic
[
"price"
]
=
price
ret_data
[
m_type
]
.
append
(
res_dic
)
ret_data
[
m_type
]
.
append
(
res_dic
)
return
LevelResp
(
return
LevelResp
(
inline
=
ret_data
[
"inline"
],
inline
=
ret_data
[
"inline"
],
...
...
unify_api/modules/elec_charge/views/elec_charge.py
View file @
7e380ceb
...
@@ -18,11 +18,10 @@ from unify_api.modules.elec_charge.components.elec_charge_cps import \
...
@@ -18,11 +18,10 @@ from unify_api.modules.elec_charge.components.elec_charge_cps import \
IndexChargeReq
,
IndexChargeResp
,
PopReq
,
PopResp
,
MtpResp
,
PspResp
,
\
IndexChargeReq
,
IndexChargeResp
,
PopReq
,
PopResp
,
MtpResp
,
PspResp
,
\
IpspResp
,
KpReq
,
KpResp
,
KclReq
,
ProductProxyReq
,
LoadInfoReq
,
LoadInfoResp
IpspResp
,
KpReq
,
KpResp
,
KclReq
,
ProductProxyReq
,
LoadInfoReq
,
LoadInfoResp
from
unify_api.modules.elec_charge.dao.elec_charge_dao
import
\
from
unify_api.modules.elec_charge.dao.elec_charge_dao
import
\
query_charge_aggs_points
,
get_kwh_charge
,
query_charge_aggs_points_new15
get_kwh_charge
,
query_charge_aggs_points
from
unify_api.modules.elec_charge.procedures.elec_charge_pds
import
\
from
unify_api.modules.elec_charge.procedures.elec_charge_pds
import
\
quarters_trans
,
power_overview_proxy
,
total_value
,
\
quarters_trans
,
total_value
,
\
power_aggs_cid_proxy_new15
,
\
power_aggs_cid_proxy
,
power_index_cid_proxy
,
power_overview_proxy
power_index_cid_proxy_new15
,
power_overview_proxy15
from
unify_api.modules.elec_charge.service.elec_charge_service
import
\
from
unify_api.modules.elec_charge.service.elec_charge_service
import
\
kwh_points_service
,
kwh_card_level_service
,
load_info_service
kwh_points_service
,
kwh_card_level_service
,
load_info_service
from
unify_api.modules.users.procedures.jwt_user
import
jwt_user
from
unify_api.modules.users.procedures.jwt_user
import
jwt_user
...
@@ -153,7 +152,7 @@ async def post_price_policy(req, body: PricePolicyReq) -> PricePolicyResp:
...
@@ -153,7 +152,7 @@ async def post_price_policy(req, body: PricePolicyReq) -> PricePolicyResp:
quarters
=
price
.
get
(
"quarters"
)
quarters
=
price
.
get
(
"quarters"
)
price_info_dic
=
price
price_info_dic
=
price
break
break
if
len
(
quarters
)
!=
96
:
if
len
(
quarters
)
!=
96
:
log
.
error
(
"quarters config fail"
)
log
.
error
(
"quarters config fail"
)
return
PricePolicyResp
(
price_info
=
[])
return
PricePolicyResp
(
price_info
=
[])
...
@@ -315,15 +314,15 @@ async def post_power_overview_proxy(req, body: PopReq) -> PopResp:
...
@@ -315,15 +314,15 @@ async def post_power_overview_proxy(req, body: PopReq) -> PopResp:
end
=
now_date
end
=
now_date
# 获取上一周期开始结束时间
# 获取上一周期开始结束时间
start_last
,
end_last
=
last_time_str
(
start
,
end
,
date_type
)
start_last
,
end_last
=
last_time_str
(
start
,
end
,
date_type
)
power
,
charge
=
await
power_overview_proxy
15
(
start
,
end
,
cid_list
)
power
,
charge
=
await
power_overview_proxy
(
start
,
end
,
cid_list
)
power_last
,
charge_last
=
await
power_overview_proxy
15
(
start_last
,
power_last
,
charge_last
=
await
power_overview_proxy
(
start_last
,
end_last
,
end_last
,
cid_list
)
cid_list
)
if
not
all
([
power
,
charge
,
power_last
,
charge_last
]):
if
not
all
([
power
,
charge
,
power_last
,
charge_last
]):
return
PopResp
(
power
=
Spvf
(),
charge
=
Spvf
())
return
PopResp
(
power
=
Spvf
(),
charge
=
Spvf
())
total_power
=
total_value
(
power
)
total_power
=
total_value
(
power
)
total_charge
=
total_value
(
charge
)
total_charge
=
total_value
(
charge
)
total_power_last
=
total_value
(
power_last
)
total_power_last
=
total_value
(
power_last
)
total_charge_last
=
total_value
(
charge_last
)
total_charge_last
=
total_value
(
charge_last
)
# 增长率
# 增长率
...
@@ -368,30 +367,30 @@ async def post_month_today_proxy(req, body: ProductProxyReq) -> MtpResp:
...
@@ -368,30 +367,30 @@ async def post_month_today_proxy(req, body: ProductProxyReq) -> MtpResp:
# 2. 本月/上月数据
# 2. 本月/上月数据
last_month_start
,
last_month_end
=
last_time_str
(
month_start
,
month_end
,
last_month_start
,
last_month_end
=
last_time_str
(
month_start
,
month_end
,
"month"
,
True
)
"month"
,
True
)
this_month_p
,
this_month_charge
=
await
power_overview_proxy
15
(
this_month_p
,
this_month_charge
=
await
power_overview_proxy
(
month_start
,
month_end
,
cid_list
)
month_start
,
month_end
,
cid_list
)
last_month_p
,
last_month_charge
=
await
power_overview_proxy
15
(
last_month_p
,
last_month_charge
=
await
power_overview_proxy
(
last_month_start
,
last_month_end
,
cid_list
)
last_month_start
,
last_month_end
,
cid_list
)
if
not
all
([
this_month_p
,
this_month_charge
,
last_month_p
,
if
not
all
([
this_month_p
,
this_month_charge
,
last_month_p
,
last_month_charge
]):
last_month_charge
]):
return
MtpResp
()
return
MtpResp
()
this_month_total_power
=
total_value
(
this_month_p
)
this_month_total_power
=
total_value
(
this_month_p
)
last_month_total_power
=
total_value
(
last_month_p
)
last_month_total_power
=
total_value
(
last_month_p
)
month_power_rate
=
(
this_month_total_power
-
month_power_rate
=
(
this_month_total_power
-
last_month_total_power
)
/
last_month_total_power
last_month_total_power
)
/
last_month_total_power
# 2. 今日/昨日数据
# 2. 今日/昨日数据
last_day_start
,
last_day_end
=
last_time_str
(
today_start
,
today_end
,
"day"
)
last_day_start
,
last_day_end
=
last_time_str
(
today_start
,
today_end
,
"day"
)
this_day_p
,
this_day_charge
=
await
power_overview_proxy
15
(
today_start
,
this_day_p
,
this_day_charge
=
await
power_overview_proxy
(
today_start
,
today_end
,
today_end
,
cid_list
)
cid_list
)
last_day_p
,
last_day_charge
=
await
power_overview_proxy
15
(
last_day_p
,
last_day_charge
=
await
power_overview_proxy
(
last_day_start
,
last_day_end
,
cid_list
)
last_day_start
,
last_day_end
,
cid_list
)
if
not
all
([
this_day_p
,
this_day_charge
,
last_day_p
,
last_day_charge
]):
if
not
all
([
this_day_p
,
this_day_charge
,
last_day_p
,
last_day_charge
]):
return
MtpResp
()
return
MtpResp
()
this_day_total_power
=
total_value
(
this_day_p
)
this_day_total_power
=
total_value
(
this_day_p
)
last_day_total_power
=
total_value
(
last_day_p
)
last_day_total_power
=
total_value
(
last_day_p
)
day_power_rate
=
\
day_power_rate
=
\
...
@@ -415,7 +414,7 @@ async def post_power_sort_proxy(req, body: PopReq) -> PspResp:
...
@@ -415,7 +414,7 @@ async def post_power_sort_proxy(req, body: PopReq) -> PspResp:
date_type
=
body
.
date_type
date_type
=
body
.
date_type
if
date_type
==
"range"
:
if
date_type
==
"range"
:
date_type
=
"month"
date_type
=
"month"
# 如果end是今天, 则end=当前时间, 避免增长率错误
# 如果end是今天, 则end=当前时间, 避免增长率错误
end_tmp
=
end
.
split
(
" "
)[
0
]
end_tmp
=
end
.
split
(
" "
)[
0
]
now_date
,
timestamp
=
srv_time
()
now_date
,
timestamp
=
srv_time
()
...
@@ -427,9 +426,9 @@ async def post_power_sort_proxy(req, body: PopReq) -> PspResp:
...
@@ -427,9 +426,9 @@ async def post_power_sort_proxy(req, body: PopReq) -> PspResp:
month_end
=
str
(
now
.
end_of
(
'month'
)
.
format
(
"YYYY-MM-DD HH:mm:ss"
))
month_end
=
str
(
now
.
end_of
(
'month'
)
.
format
(
"YYYY-MM-DD HH:mm:ss"
))
if
date_type
==
"month"
and
end
==
month_end
:
if
date_type
==
"month"
and
end
==
month_end
:
end
=
now_date
end
=
now_date
# 2. 查询工厂电量电费信息
# 2. 查询工厂电量电费信息
kwh_list
,
charge_list
,
price_list
=
await
power_aggs_cid_proxy
_new15
(
kwh_list
,
charge_list
,
price_list
=
await
power_aggs_cid_proxy
(
start
,
end
,
cid_list
,
date_type
)
start
,
end
,
cid_list
,
date_type
)
kwh_list_st
=
sorted
(
kwh_list
,
key
=
lambda
i
:
i
[
'value'
],
reverse
=
True
)
kwh_list_st
=
sorted
(
kwh_list
,
key
=
lambda
i
:
i
[
'value'
],
reverse
=
True
)
charge_list_st
=
sorted
(
charge_list
,
key
=
lambda
i
:
i
[
'value'
],
charge_list_st
=
sorted
(
charge_list
,
key
=
lambda
i
:
i
[
'value'
],
...
@@ -453,7 +452,7 @@ async def post_index_power_sort_proxy(req) -> IpspResp:
...
@@ -453,7 +452,7 @@ async def post_index_power_sort_proxy(req) -> IpspResp:
return
IpspResp
()
return
IpspResp
()
today_start
,
today_end
,
month_start
,
month_end
=
today_month_date
()
today_start
,
today_end
,
month_start
,
month_end
=
today_month_date
()
# 2. 获取今日数据
# 2. 获取今日数据
kwh_list_d
,
charge_list_d
,
price_list_d
=
await
power_index_cid_proxy
_new15
(
kwh_list_d
,
charge_list_d
,
price_list_d
=
await
power_index_cid_proxy
(
today_start
,
today_end
,
cid_list
,
"day"
)
today_start
,
today_end
,
cid_list
,
"day"
)
kwh_list_d_st
=
sorted
(
kwh_list_d
,
key
=
lambda
i
:
i
[
'value'
],
kwh_list_d_st
=
sorted
(
kwh_list_d
,
key
=
lambda
i
:
i
[
'value'
],
reverse
=
True
)[:
5
]
reverse
=
True
)[:
5
]
...
@@ -462,7 +461,7 @@ async def post_index_power_sort_proxy(req) -> IpspResp:
...
@@ -462,7 +461,7 @@ async def post_index_power_sort_proxy(req) -> IpspResp:
price_list_d_st
=
sorted
(
price_list_d
,
key
=
lambda
i
:
i
[
'value'
],
price_list_d_st
=
sorted
(
price_list_d
,
key
=
lambda
i
:
i
[
'value'
],
reverse
=
True
)[:
5
]
reverse
=
True
)[:
5
]
# 2. 获取本月数据
# 2. 获取本月数据
kwh_list_m
,
charge_list_m
,
price_list_m
=
await
power_index_cid_proxy
_new15
(
kwh_list_m
,
charge_list_m
,
price_list_m
=
await
power_index_cid_proxy
(
month_start
,
month_end
,
cid_list
,
"month"
)
month_start
,
month_end
,
cid_list
,
"month"
)
kwh_list_m_st
=
sorted
(
kwh_list_m
,
key
=
lambda
i
:
i
[
'value'
],
kwh_list_m_st
=
sorted
(
kwh_list_m
,
key
=
lambda
i
:
i
[
'value'
],
reverse
=
True
)[:
5
]
reverse
=
True
)[:
5
]
...
@@ -501,7 +500,7 @@ async def get_kwh_points_download(req):
...
@@ -501,7 +500,7 @@ async def get_kwh_points_download(req):
# 获取point_id列表
# 获取point_id列表
points
=
[
i
.
get
(
"point_id"
)
for
i
in
point_list
]
points
=
[
i
.
get
(
"point_id"
)
for
i
in
point_list
]
# 3. es查询数据
# 3. es查询数据
es_res
=
await
query_charge_aggs_points
_new15
(
start
,
end
,
points
)
es_res
=
await
query_charge_aggs_points
(
start
,
end
,
points
)
es_res
=
{
i
[
"pid"
]:
i
for
i
in
es_res
if
es_res
}
es_res
=
{
i
[
"pid"
]:
i
for
i
in
es_res
if
es_res
}
# 4.返回数据
# 4.返回数据
storey_name_list
=
[]
storey_name_list
=
[]
...
@@ -566,7 +565,7 @@ async def post_load_info(request, body: LoadInfoReq) -> LoadInfoResp:
...
@@ -566,7 +565,7 @@ async def post_load_info(request, body: LoadInfoReq) -> LoadInfoResp:
except
Exception
as
e
:
except
Exception
as
e
:
log
.
exception
(
e
)
log
.
exception
(
e
)
return
LoadInfoResp
()
.
server_error
()
return
LoadInfoResp
()
.
server_error
()
return
LoadInfoResp
(
return
LoadInfoResp
(
current_load
=
current_load
,
current_load
=
current_load
,
yesterday_load
=
yesterday_load
,
yesterday_load
=
yesterday_load
,
...
...
unify_api/modules/electric_optimization/procedures/optimization_pds.py
View file @
7e380ceb
...
@@ -48,33 +48,7 @@ async def month_power_loadrate(inline_id: int, month_list: list):
...
@@ -48,33 +48,7 @@ async def month_power_loadrate(inline_id: int, month_list: list):
return
power_loadrate
return
power_loadrate
async
def
inline_power_use_info
(
inline_id
,
es_start_time
,
es_end_time
):
async
def
load_inline_power
(
inline_id
,
start
,
end
):
"""
获取进线用电信息
:param inline_id:
:param es_start_time:
:param es_end_time:
:return:
"""
async
with
EsUtil
()
as
es
:
filters
=
[
{
"term"
:
{
"inlid"
:
inline_id
}},
{
"range"
:
{
"quarter_time"
:
{
"gte"
:
es_start_time
,
"lt"
:
es_end_time
,}}},
]
query_body
=
{
"query"
:
{
"bool"
:
{
"filter"
:
filters
}},
"size"
:
0
,
"aggs"
:
{
"kwh"
:
{
"sum"
:
{
"field"
:
"kwh"
}},
"charge"
:
{
"sum"
:
{
"field"
:
"charge"
}},},
}
es_result
=
await
es
.
search_origin
(
body
=
query_body
,
index
=
constants
.
INLINE_15MIN_POWER
)
return
{
"charge"
:
es_result
[
"aggregations"
][
"charge"
][
"value"
],
"kwh"
:
es_result
[
"aggregations"
][
"kwh"
][
"value"
],
}
async
def
inline_power_use_info_new15
(
inline_id
,
start
,
end
):
"""
"""
1.5版本获取进线用电信息
1.5版本获取进线用电信息
:param inline_id:
:param inline_id:
...
@@ -85,5 +59,5 @@ async def inline_power_use_info_new15(inline_id, start, end):
...
@@ -85,5 +59,5 @@ async def inline_power_use_info_new15(inline_id, start, end):
sql
=
f
"SELECT sum(kwh) kwh, sum(charge) charge FROM inline_15min_power"
\
sql
=
f
"SELECT sum(kwh) kwh, sum(charge) charge FROM inline_15min_power"
\
f
" where inlid=
%
s and create_time BETWEEN '{start}' and '{end}'"
f
" where inlid=
%
s and create_time BETWEEN '{start}' and '{end}'"
async
with
MysqlUtil
()
as
conn
:
async
with
MysqlUtil
()
as
conn
:
datas
=
await
conn
.
fetchone
(
sql
,
args
=
(
inline_id
,
))
datas
=
await
conn
.
fetchone
(
sql
,
args
=
(
inline_id
,))
return
datas
return
datas
unify_api/modules/electric_optimization/procedures/proxy_optimization_pds.py
View file @
7e380ceb
This diff is collapsed.
Click to expand it.
unify_api/modules/electric_optimization/service/power_index.py
View file @
7e380ceb
...
@@ -9,8 +9,8 @@ from unify_api.modules.electric_optimization.procedures.optimization_pds import
...
@@ -9,8 +9,8 @@ from unify_api.modules.electric_optimization.procedures.optimization_pds import
month_md_space
month_md_space
)
)
from
unify_api.modules.electric_optimization.procedures.optimization_pds
import
(
from
unify_api.modules.electric_optimization.procedures.optimization_pds
import
(
inline_power_use_info
,
month_power_pcvf
,
month_power_factors
,
month_power_pcvf
,
month_power_factors
,
month_power_loadrate
,
month_power_loadrate
,
inline_power_use_info_new15
load_inline_power
)
)
from
unify_api.constants
import
ADD_ELE_PRICE
from
unify_api.constants
import
ADD_ELE_PRICE
from
unify_api.modules.elec_charge.dao.elec_charge_dao
import
(
from
unify_api.modules.elec_charge.dao.elec_charge_dao
import
(
...
@@ -142,8 +142,7 @@ async def power_peakcut_service(inline_id):
...
@@ -142,8 +142,7 @@ async def power_peakcut_service(inline_id):
)
)
end_time
=
pendulum
.
datetime
(
now
.
year
,
now
.
month
,
1
)
.
strftime
(
end_time
=
pendulum
.
datetime
(
now
.
year
,
now
.
month
,
1
)
.
strftime
(
"
%
Y-
%
m-
%
d
%
H:
%
M:
%
S"
)
"
%
Y-
%
m-
%
d
%
H:
%
M:
%
S"
)
power_use_info
=
await
inline_power_use_info_new15
(
inline_id
,
start_time
,
power_use_info
=
await
load_inline_power
(
inline_id
,
start_time
,
end_time
)
end_time
)
month_kwh
=
power_use_info
.
get
(
"kwh"
)
or
0
month_kwh
=
power_use_info
.
get
(
"kwh"
)
or
0
month_charge
=
power_use_info
.
get
(
"charge"
)
or
0
month_charge
=
power_use_info
.
get
(
"charge"
)
or
0
avg_price
=
month_kwh
/
month_charge
if
month_charge
else
""
avg_price
=
month_kwh
/
month_charge
if
month_charge
else
""
...
...
unify_api/modules/home_page/service/count_info_service.py
View file @
7e380ceb
...
@@ -13,7 +13,7 @@ from unify_api.modules.common.procedures.points import proxy_points, list_point
...
@@ -13,7 +13,7 @@ from unify_api.modules.common.procedures.points import proxy_points, list_point
from
unify_api.modules.elec_charge.dao.elec_charge_dao
import
\
from
unify_api.modules.elec_charge.dao.elec_charge_dao
import
\
query_charge_aggs_points
,
point_aggs_kwh
query_charge_aggs_points
,
point_aggs_kwh
from
unify_api.modules.elec_charge.procedures.elec_charge_pds
import
\
from
unify_api.modules.elec_charge.procedures.elec_charge_pds
import
\
proxy_power
,
proxy_power15
load_proxy_power
from
unify_api.modules.home_page.components.count_info_proxy_cps
import
\
from
unify_api.modules.home_page.components.count_info_proxy_cps
import
\
IycResp
,
IycmResp
,
RtrResp
,
AlarmLevelCnt
,
AlarmContentCnt
,
CmResp
,
\
IycResp
,
IycmResp
,
RtrResp
,
AlarmLevelCnt
,
AlarmContentCnt
,
CmResp
,
\
ApcResp
,
AsiResp
,
HsiResp
,
AiiResp
ApcResp
,
AsiResp
,
HsiResp
,
AiiResp
...
@@ -51,7 +51,7 @@ async def post_zd_info_factory_service(cid_list):
...
@@ -51,7 +51,7 @@ async def post_zd_info_factory_service(cid_list):
safe_operation_days
+=
safe_run_days
safe_operation_days
+=
safe_run_days
total_alarm
+=
alarm_count
total_alarm
+=
alarm_count
# 4. 累计监测用电
# 4. 累计监测用电
total_power
=
await
proxy_power15
(
cid_list
)
total_power
=
await
load_proxy_power
(
cid_list
)
# 5. 日均碳排放 = 累计用电 * 0.754 / 总运行天数
# 5. 日均碳排放 = 累计用电 * 0.754 / 总运行天数
# 运行天数
# 运行天数
sql
=
"select create_time from company where cid =
%
s"
sql
=
"select create_time from company where cid =
%
s"
...
@@ -127,28 +127,6 @@ async def risk_cost_service(cid):
...
@@ -127,28 +127,6 @@ async def risk_cost_service(cid):
async
def
safe_run_sdu
(
cid
,
total_tenant
):
async
def
safe_run_sdu
(
cid
,
total_tenant
):
"""sdu安全运行天数"""
# 1. 每一个point总安装天数
# 安装时间create_time
async
with
MysqlUtil
()
as
conn
:
company_sql
=
"select create_time from company where cid =
%
s"
company
=
await
conn
.
fetchone
(
company_sql
,
(
cid
,))
create_time_timestamp
=
company
[
"create_time"
]
create_time
=
datetime
.
fromtimestamp
(
create_time_timestamp
)
now_time
=
datetime
.
now
()
# +2表示包过其实日期
total_days
=
(
now_time
-
create_time
)
.
days
+
2
# 2. 根据每日聚合结果
es_res
=
await
sdu_alarm_aggs_date
(
cid
)
for
buckets
in
es_res
:
doc_count
=
buckets
[
"doc_count"
]
# 当工厂某天I级、II级报警总数小于总户数 * 5 % 时,即为安全运行
if
doc_count
>
total_tenant
*
0.05
:
total_days
-=
1
return
total_days
async
def
safe_run_sdu_new15
(
cid
,
total_tenant
):
# 1. 每一个point总安装天数
# 1. 每一个point总安装天数
# 安装时间create_time
# 安装时间create_time
company_sql
=
"select create_time from company where cid =
%
s"
company_sql
=
"select create_time from company where cid =
%
s"
...
...
unify_api/modules/home_page/views/count_info_proxy.py
View file @
7e380ceb
...
@@ -5,15 +5,15 @@ from pot_libs.sanic_api import summary
...
@@ -5,15 +5,15 @@ from pot_libs.sanic_api import summary
from
unify_api.constants
import
Product
,
PRODUCT
from
unify_api.constants
import
Product
,
PRODUCT
from
unify_api.modules.common.dao.common_dao
import
monitor_by_cid
from
unify_api.modules.common.dao.common_dao
import
monitor_by_cid
from
unify_api.modules.common.procedures.alarm_cps
import
alarm_count
,
\
from
unify_api.modules.common.procedures.alarm_cps
import
alarm_count
,
\
alarm_count_sdu_new
,
alarm_count_sdu_new15
load_alarm_cnt_sdu
from
unify_api.modules.common.procedures.cids
import
get_cids
,
get_cid_info
,
\
from
unify_api.modules.common.procedures.cids
import
get_cids
,
get_cid_info
,
\
get_proxy_cids
get_proxy_cids
from
unify_api.modules.common.procedures.common_cps
import
proxy_safe_run_info
from
unify_api.modules.common.procedures.common_cps
import
proxy_safe_run_info
from
unify_api.modules.common.procedures.points
import
proxy_points
,
get_points
from
unify_api.modules.common.procedures.points
import
proxy_points
,
get_points
from
unify_api.modules.common.procedures.power_cps
import
power_use_count
,
\
from
unify_api.modules.common.procedures.power_cps
import
power_use_count
,
\
power_use_count_new15
load_cmpy_power
from
unify_api.modules.elec_charge.procedures.elec_charge_pds
import
\
from
unify_api.modules.elec_charge.procedures.elec_charge_pds
import
\
proxy_power
,
proxy_power15
load_proxy_power
from
unify_api.modules.home_page.components.count_info_proxy_cps
import
(
from
unify_api.modules.home_page.components.count_info_proxy_cps
import
(
CountInfoProxyResp
,
CountInfoProxyResp
,
ProxySecurityLevelCntResp
,
ProxySecurityLevelCntResp
,
...
@@ -45,7 +45,7 @@ from unify_api.modules.home_page.procedures.count_info_proxy_pds import (
...
@@ -45,7 +45,7 @@ from unify_api.modules.home_page.procedures.count_info_proxy_pds import (
from
unify_api.modules.home_page.procedures.security_info_pds
import
\
from
unify_api.modules.home_page.procedures.security_info_pds
import
\
alarm_count_info_new15
alarm_count_info_new15
from
unify_api.modules.home_page.service.count_info_service
import
\
from
unify_api.modules.home_page.service.count_info_service
import
\
safe_run_sdu
,
safe_run_sdu_new15
safe_run_sdu
from
unify_api.modules.elec_charge.components.elec_charge_cps
import
\
from
unify_api.modules.elec_charge.components.elec_charge_cps
import
\
ProductProxyReq
ProductProxyReq
from
unify_api.modules.users.procedures.jwt_user
import
jwt_user
from
unify_api.modules.users.procedures.jwt_user
import
jwt_user
...
@@ -79,7 +79,7 @@ async def post_count_info_proxy(req) -> CountInfoProxyResp:
...
@@ -79,7 +79,7 @@ async def post_count_info_proxy(req) -> CountInfoProxyResp:
safe_operation_days
+=
safe_run_days
safe_operation_days
+=
safe_run_days
total_alarm
+=
alarm_count
total_alarm
+=
alarm_count
# 4. 累计监测用电
# 4. 累计监测用电
total_power
=
await
proxy_power15
(
cid_list
)
total_power
=
await
load_proxy_power
(
cid_list
)
return
CountInfoProxyResp
(
return
CountInfoProxyResp
(
total_cid
=
total_cid
,
total_cid
=
total_cid
,
total_monitor
=
total_monitor
,
total_monitor
=
total_monitor
,
...
@@ -278,7 +278,7 @@ async def post_zhidian_info_proxy(req, body: ProductProxyReq) -> AipResp:
...
@@ -278,7 +278,7 @@ async def post_zhidian_info_proxy(req, body: ProductProxyReq) -> AipResp:
# 2. 监测点位
# 2. 监测点位
total_monitor
=
await
proxy_points
(
cid_list
)
total_monitor
=
await
proxy_points
(
cid_list
)
# 3. 累计监测用电
# 3. 累计监测用电
total_power
=
await
proxy_power15
(
cid_list
)
total_power
=
await
load_proxy_power
(
cid_list
)
# 4. 用户接入总时长, 每个工厂接入时长总和
# 4. 用户接入总时长, 每个工厂接入时长总和
total_run_day
=
await
total_run_day_proxy
(
cid_list
)
total_run_day
=
await
total_run_day_proxy
(
cid_list
)
return
AipResp
(
return
AipResp
(
...
@@ -298,13 +298,13 @@ async def post_count_info_sdu_new(req, body: CisReq) -> CisResp:
...
@@ -298,13 +298,13 @@ async def post_count_info_sdu_new(req, body: CisReq) -> CisResp:
total_tenant
=
len
(
monitor_list
)
total_tenant
=
len
(
monitor_list
)
# 2. 安全运行天数: 以天计,当工厂某天I级、II级报警总数小于总户数*5%时,即为安全运行,
# 2. 安全运行天数: 以天计,当工厂某天I级、II级报警总数小于总户数*5%时,即为安全运行,
# 展示自接入累加安全运行天数
# 展示自接入累加安全运行天数
safe_day
=
await
safe_run_sdu
_new15
(
cid
,
total_tenant
)
safe_day
=
await
safe_run_sdu
(
cid
,
total_tenant
)
# 3. 在线率
# 3. 在线率
online_rate
=
88
+
random
.
choice
([
1
,
1.5
,
2
,
2.5
,
3
,
3.5
,
4
])
online_rate
=
88
+
random
.
choice
([
1
,
1.5
,
2
,
2.5
,
3
,
3.5
,
4
])
# 4.累计用电
# 4.累计用电
total_power
=
await
power_use_count_new15
(
cids
)
total_power
=
await
load_cmpy_power
(
cids
)
# 5. 累计报警
# 5. 累计报警
total_alarm
=
await
alarm_count_sdu_new15
(
cids
)
total_alarm
=
await
load_alarm_cnt_sdu
(
cids
)
return
CisResp
(
return
CisResp
(
total_tenant
=
total_tenant
,
total_tenant
=
total_tenant
,
online_rate
=
online_rate
,
online_rate
=
online_rate
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment