Commit 4511847f by zhuht

[chg]增加调用排队明细统计,潜在顾客统计;

1 parent bf2f84f7
......@@ -299,5 +299,21 @@ public class MallDataStatisticsConsumer {
} catch (Exception 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);
}
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!