Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
d0b2a2d7
Commit
d0b2a2d7
authored
Jul 29, 2022
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
过滤门店
parent
48e28745
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
HmLinkApiServiceImpl.java
...age/service/service/out/impl/hm/HmLinkApiServiceImpl.java
+5
-2
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/hm/HmLinkApiServiceImpl.java
View file @
d0b2a2d7
...
...
@@ -328,7 +328,7 @@ public class HmLinkApiServiceImpl implements HmLinkApiService {
// 活码的门店
List
<
HmLinkStoreDTO
>
storeList
=
this
.
hmLinkStoreService
.
listByLinkId
(
wxEnterpriseId
,
enterpriseId
,
linkId
);
this
.
setStoreAddress
(
wxEnterpriseId
,
enterpriseId
,
storeList
);
storeList
=
this
.
setStoreAddress
(
wxEnterpriseId
,
enterpriseId
,
storeList
);
log
.
info
(
"门店规则={},推荐门店列表={}"
,
storeType
,
JSON
.
toJSONString
(
storeList
));
HmLinkStoreSettingDTO
cityStore
=
storeRuleObj
.
getObject
(
"city_store"
,
HmLinkStoreSettingDTO
.
class
);
// 是否开启省市区门店查询
...
...
@@ -390,7 +390,7 @@ public class HmLinkApiServiceImpl implements HmLinkApiService {
return
ServiceResponse
.
success
(
retDTO
);
}
private
void
setStoreAddress
(
String
wxEnterpriseId
,
String
enterpriseId
,
List
<
HmLinkStoreDTO
>
storeList
)
{
private
List
<
HmLinkStoreDTO
>
setStoreAddress
(
String
wxEnterpriseId
,
String
enterpriseId
,
List
<
HmLinkStoreDTO
>
storeList
)
{
if
(
CollectionUtils
.
isNotEmpty
(
storeList
))
{
// 过滤到达上线的门店
List
<
String
>
okStoreIdList
=
this
.
hmQrcodeService
.
getHmStoreForWxa
(
wxEnterpriseId
,
enterpriseId
)
;
...
...
@@ -408,7 +408,10 @@ public class HmLinkApiServiceImpl implements HmLinkApiService {
item
.
setStoreAddress
(
map
.
get
(
item
.
getStoreId
()).
getStoreAddress
());
}
});
storeList
=
storeList
.
stream
().
filter
(
dto
->
okStoreIdList
.
contains
(
dto
.
getStoreId
())).
collect
(
Collectors
.
toList
())
;
}
return
storeList
;
}
private
List
<
MemberStoreClerkDataDTO
>
sortMemberClerk
(
String
enterpriseId
,
String
memberId
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment