Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
朱海
/
VVAS-PicGroup
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit cabfe10c
authored
Sep 11, 2024
by
朱海
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[add]有效顾客规则修改:店内停留超过3分钟,并且被接待或者看过车
1 parent
897a5e82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/viontech/keliu/service/impl/PersonRecordServiceImpl.java
src/main/java/com/viontech/keliu/service/impl/PersonRecordServiceImpl.java
View file @
cabfe10
...
@@ -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
);
...
...
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