Commit cabfe10c by 朱海

[add]有效顾客规则修改:店内停留超过3分钟,并且被接待或者看过车

1 parent 897a5e82
...@@ -200,8 +200,8 @@ public class PersonRecordServiceImpl implements PersonRecordService { ...@@ -200,8 +200,8 @@ public class PersonRecordServiceImpl implements PersonRecordService {
if (dPersonRecord.getLeaveTime() != null && dPersonRecord.getVisitDuration() < excludePersonTime * 60 * 1000) { if (dPersonRecord.getLeaveTime() != null && dPersonRecord.getVisitDuration() < excludePersonTime * 60 * 1000) {
continue; continue;
} }
//判断是否看车 //没有被接待,并且没有看车的排除掉
if (filterAttention == 1 && dPersonRecord.getAttentionCount() == 0) { if (dPersonRecord.getReceptionCount() == 0 && filterAttention == 1 && dPersonRecord.getAttentionCount() == 0) {
continue; continue;
} }
personRecordList.add(dPersonRecord); personRecordList.add(dPersonRecord);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!