|
@@ -885,6 +885,7 @@ public class ClubServiceImpl implements ClubService {
|
|
|
if (newRemarks) {
|
|
|
// 新增备注
|
|
|
clubMapper.insertRemarks(clubRemarksPo);
|
|
|
+ clubMapper.updateClubNewDeal(clubId);
|
|
|
} else {
|
|
|
// 修改备注
|
|
|
clubMapper.updateRemarks(clubRemarksPo);
|
|
@@ -2097,8 +2098,10 @@ public class ClubServiceImpl implements ClubService {
|
|
|
if (region.size() != 0) {
|
|
|
for (BehaviorRecodeVo behaviorRecord : region) {
|
|
|
format = simpleDateFormat.format(behaviorRecord.getAccessTime());
|
|
|
- if (record.getPageType().equals(behaviorRecord.getPageType()) && s.equals(format)) {
|
|
|
- record.setAccessSource(behaviorRecord.getAccessSource());
|
|
|
+ if (StringUtils.isNotBlank(record.getPageType()) && StringUtils.isNotBlank(behaviorRecord.getPageType())) {
|
|
|
+ if (record.getPageType().equals(behaviorRecord.getPageType()) && s.equals(format)) {
|
|
|
+ record.setAccessSource(behaviorRecord.getAccessSource());
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|