Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
毛树良
/
VVAS-DataCenter-DBWriter
Go to a project
Project
Repository
Merge Requests
0
Pipelines
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 4511847f
authored
Jan 29, 2026
by
zhuht
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[chg]增加调用排队明细统计,潜在顾客统计;
1 parent
bf2f84f7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
src/main/java/com/viontech/keliu/consumer/MallDataStatisticsConsumer.java
src/main/java/com/viontech/keliu/consumer/MallDataStatisticsConsumer.java
View file @
4511847
...
@@ -299,5 +299,21 @@ public class MallDataStatisticsConsumer {
...
@@ -299,5 +299,21 @@ public class MallDataStatisticsConsumer {
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
log
.
error
(
"多次进店顾客人数/人次统计异常:{}"
,
url
,
e
);
log
.
error
(
"多次进店顾客人数/人次统计异常:{}"
,
url
,
e
);
}
}
url
=
reidUrl
+
"/reid/tool/queue/rerun?mallIds="
+
mallDataStatisticsInfo
.
getMallId
()
+
"&startDate="
+
date
+
"&endDate="
+
date
;
try
{
String
result
=
HttpUtil
.
get
(
url
);
log
.
info
(
"调用mallId:{} 排队明细统计 执行结果:{}"
,
mallDataStatisticsInfo
.
getMallId
(),
result
);
}
catch
(
Exception
e
)
{
log
.
error
(
"排队明细统计异常:{}"
,
url
,
e
);
}
url
=
reidUrl
+
"/reid/tool/potentialVisitors?mallIds="
+
mallDataStatisticsInfo
.
getMallId
()
+
"&startDate="
+
date
+
"&endDate="
+
date
;
try
{
String
result
=
HttpUtil
.
get
(
url
);
log
.
info
(
"调用mallId:{} 潜在顾客统计 执行结果:{}"
,
mallDataStatisticsInfo
.
getMallId
(),
result
);
}
catch
(
Exception
e
)
{
log
.
error
(
"潜在顾客统计异常:{}"
,
url
,
e
);
}
}
}
}
}
Write
Preview
Markdown
is supported
Attach a file
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 post a comment