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
2be949b0
Commit
2be949b0
authored
Jul 29, 2022
by
guojx
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/developer' into developer
parents
c19d3ddb
48e28745
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
HmLinkApiServiceImpl.java
...age/service/service/out/impl/hm/HmLinkApiServiceImpl.java
+6
-3
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/hm/HmLinkApiServiceImpl.java
View file @
2be949b0
...
@@ -331,7 +331,7 @@ public class HmLinkApiServiceImpl implements HmLinkApiService {
...
@@ -331,7 +331,7 @@ public class HmLinkApiServiceImpl implements HmLinkApiService {
// 活码的门店
// 活码的门店
List
<
HmLinkStoreDTO
>
storeList
=
this
.
hmLinkStoreService
.
listByLinkId
(
wxEnterpriseId
,
enterpriseId
,
List
<
HmLinkStoreDTO
>
storeList
=
this
.
hmLinkStoreService
.
listByLinkId
(
wxEnterpriseId
,
enterpriseId
,
linkId
);
linkId
);
this
.
setStoreAddress
(
enterpriseId
,
storeList
);
this
.
setStoreAddress
(
wxEnterpriseId
,
enterpriseId
,
storeList
);
log
.
info
(
"门店规则={},推荐门店列表={}"
,
storeType
,
JSON
.
toJSONString
(
storeList
));
log
.
info
(
"门店规则={},推荐门店列表={}"
,
storeType
,
JSON
.
toJSONString
(
storeList
));
HmLinkStoreSettingDTO
cityStore
=
storeRuleObj
.
getObject
(
"city_store"
,
HmLinkStoreSettingDTO
.
class
);
HmLinkStoreSettingDTO
cityStore
=
storeRuleObj
.
getObject
(
"city_store"
,
HmLinkStoreSettingDTO
.
class
);
// 是否开启省市区门店查询
// 是否开启省市区门店查询
...
@@ -411,9 +411,12 @@ public class HmLinkApiServiceImpl implements HmLinkApiService {
...
@@ -411,9 +411,12 @@ public class HmLinkApiServiceImpl implements HmLinkApiService {
return
ServiceResponse
.
success
(
retDTO
);
return
ServiceResponse
.
success
(
retDTO
);
}
}
private
void
setStoreAddress
(
String
enterpriseId
,
List
<
HmLinkStoreDTO
>
storeList
)
{
private
void
setStoreAddress
(
String
wxEnterpriseId
,
String
enterpriseId
,
List
<
HmLinkStoreDTO
>
storeList
)
{
if
(
CollectionUtils
.
isNotEmpty
(
storeList
))
{
if
(
CollectionUtils
.
isNotEmpty
(
storeList
))
{
List
<
String
>
storeIdList
=
storeList
.
stream
().
map
(
dto
->
dto
.
getStoreId
()).
collect
(
Collectors
.
toList
());
// 过滤到达上线的门店
List
<
String
>
okStoreIdList
=
this
.
hmQrcodeService
.
getHmStoreForWxa
(
wxEnterpriseId
,
enterpriseId
)
;
log
.
info
(
"storeId={}"
,
okStoreIdList
);
List
<
String
>
storeIdList
=
storeList
.
stream
().
filter
(
dto
->
okStoreIdList
.
contains
(
dto
.
getStoreId
())).
map
(
dto
->
dto
.
getStoreId
()).
collect
(
Collectors
.
toList
());
String
[]
storeIds
=
new
String
[
storeIdList
.
size
()];
String
[]
storeIds
=
new
String
[
storeIdList
.
size
()];
for
(
int
i
=
0
;
i
<
storeIdList
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
storeIdList
.
size
();
i
++)
{
storeIds
[
i
]
=
storeIdList
.
get
(
i
);
storeIds
[
i
]
=
storeIdList
.
get
(
i
);
...
...
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