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
042ec0e5
Commit
042ec0e5
authored
Jul 06, 2023
by
lcn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修复
parent
0c29e639
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
count_info_pds.py
unify_api/modules/home_page/procedures/count_info_pds.py
+5
-4
No files found.
unify_api/modules/home_page/procedures/count_info_pds.py
View file @
042ec0e5
...
@@ -85,15 +85,16 @@ async def electric_use_info(cid):
...
@@ -85,15 +85,16 @@ async def electric_use_info(cid):
'overResidualCurrent'
,
'unbalanceU'
,
'overI'
]
'overResidualCurrent'
,
'unbalanceU'
,
'overI'
]
score_sql
=
f
"select importance, count(importance) doc_count from "
\
score_sql
=
f
"select importance, count(importance) doc_count from "
\
f
"point_1min_event where cid=
%
s and event_datetime BETWEEN"
\
f
"point_1min_event where cid=
%
s and event_datetime BETWEEN"
\
f
"'{start}' and '{now}' GROUP BY importance"
f
"'{start}' and '{now}' and event_type in
%
s "
\
f
"GROUP BY importance"
alarm_sql
=
f
"select importance, count(importance) doc_count from "
\
alarm_sql
=
f
"select importance, count(importance) doc_count from "
\
f
"point_1min_event where cid=
%
s and event_datetime BETWEEN"
\
f
"point_1min_event where cid=
%
s and event_datetime BETWEEN"
\
f
"'{start}' and '{now}'
and event_type in
%
s
"
\
f
"'{start}' and '{now}' "
\
f
"GROUP BY importance"
f
"GROUP BY importance"
first_score
,
second_score
,
third_score
=
0
,
0
,
0
first_score
,
second_score
,
third_score
=
0
,
0
,
0
async
with
MysqlUtil
()
as
conn
:
async
with
MysqlUtil
()
as
conn
:
score_datas
=
await
conn
.
fetchall
(
score_sql
,
args
=
(
cid
,))
score_datas
=
await
conn
.
fetchall
(
score_sql
,
args
=
(
cid
,
score_events
))
alarm_datas
=
await
conn
.
fetchall
(
alarm_sql
,
args
=
(
cid
,
score_events
))
alarm_datas
=
await
conn
.
fetchall
(
alarm_sql
,
args
=
(
cid
,))
for
data
in
score_datas
:
for
data
in
score_datas
:
if
data
[
"importance"
]
==
Importance
.
First
.
value
:
if
data
[
"importance"
]
==
Importance
.
First
.
value
:
first_score
+=
data
[
"doc_count"
]
first_score
+=
data
[
"doc_count"
]
...
...
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