|
@@ -91,6 +91,7 @@ public class CmBehaviorRecordServiceImpl implements CmBehaviorRecordService {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// 页面标签
|
|
// 页面标签
|
|
|
|
+ cmBehaviorRecordPo.setPageLabel(" ");
|
|
if (str.startsWith("pageLabel") && str.contains("=")) {
|
|
if (str.startsWith("pageLabel") && str.contains("=")) {
|
|
String[] split1 = str.split("=");
|
|
String[] split1 = str.split("=");
|
|
cmBehaviorRecordPo.setPageLabel("");
|
|
cmBehaviorRecordPo.setPageLabel("");
|
|
@@ -455,6 +456,11 @@ public class CmBehaviorRecordServiceImpl implements CmBehaviorRecordService {
|
|
for (CmBehaviorRecordPo data : todayData) {
|
|
for (CmBehaviorRecordPo data : todayData) {
|
|
ArrayList<String> item = new ArrayList();
|
|
ArrayList<String> item = new ArrayList();
|
|
ArrayList<String> shopNames = new ArrayList();
|
|
ArrayList<String> shopNames = new ArrayList();
|
|
|
|
+ // 当ip过长,有多个ip时已第一个IP为准
|
|
|
|
+ if (data.getIP().contains(",")) {
|
|
|
|
+ String[] split = data.getIP().split(",");
|
|
|
|
+ data.setIP(split[0].trim());
|
|
|
|
+ }
|
|
int num = 0;
|
|
int num = 0;
|
|
data.setRecordID(id);
|
|
data.setRecordID(id);
|
|
id++;
|
|
id++;
|