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
bd11b04d
Commit
bd11b04d
authored
Mar 19, 2025
by
xiehongfei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: setMemberInfo 修正字段名
parent
c15fd0ec
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
EsMemberInfoUtils.java
...va/com/gic/haoban/manage/web/utils/EsMemberInfoUtils.java
+4
-4
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/utils/EsMemberInfoUtils.java
View file @
bd11b04d
...
@@ -52,8 +52,8 @@ public class EsMemberInfoUtils {
...
@@ -52,8 +52,8 @@ public class EsMemberInfoUtils {
boolean
isQueryStore
=
fieldName
.
contains
(
"storeName"
)
||
fieldName
.
contains
(
"storeCode"
);
boolean
isQueryStore
=
fieldName
.
contains
(
"storeName"
)
||
fieldName
.
contains
(
"storeCode"
);
if
(
isQueryStore
)
{
if
(
isQueryStore
)
{
List
<
String
>
mainStoreIdList
=
memberJson
.
stream
().
List
<
String
>
mainStoreIdList
=
memberJson
.
stream
().
filter
(
e
->
org
.
apache
.
commons
.
lang3
.
StringUtils
.
isNotBlank
(
e
.
getString
(
"
mainS
toreId"
)))
filter
(
e
->
org
.
apache
.
commons
.
lang3
.
StringUtils
.
isNotBlank
(
e
.
getString
(
"
s
toreId"
)))
.
map
(
e
->
e
.
getString
(
"
mainS
toreId"
)).
collect
(
Collectors
.
toList
());
.
map
(
e
->
e
.
getString
(
"
s
toreId"
)).
collect
(
Collectors
.
toList
());
if
(
CollectionUtils
.
isNotEmpty
(
mainStoreIdList
))
{
if
(
CollectionUtils
.
isNotEmpty
(
mainStoreIdList
))
{
List
<
StoreDTO
>
mainStoreList
=
storeService
.
queryStore
(
mainStoreIdList
);
List
<
StoreDTO
>
mainStoreList
=
storeService
.
queryStore
(
mainStoreIdList
);
if
(
CollectionUtils
.
isNotEmpty
(
mainStoreList
))
{
if
(
CollectionUtils
.
isNotEmpty
(
mainStoreList
))
{
...
@@ -65,8 +65,8 @@ public class EsMemberInfoUtils {
...
@@ -65,8 +65,8 @@ public class EsMemberInfoUtils {
boolean
isQueryClerk
=
fieldName
.
contains
(
"clerkCode"
)
||
fieldName
.
contains
(
"clerkName"
);
boolean
isQueryClerk
=
fieldName
.
contains
(
"clerkCode"
)
||
fieldName
.
contains
(
"clerkName"
);
if
(
isQueryClerk
)
{
if
(
isQueryClerk
)
{
Set
<
String
>
mainClerkIdList
=
memberJson
.
stream
().
Set
<
String
>
mainClerkIdList
=
memberJson
.
stream
().
filter
(
e
->
org
.
apache
.
commons
.
lang3
.
StringUtils
.
isNotBlank
(
e
.
getString
(
"
mainC
lerkId"
)))
filter
(
e
->
org
.
apache
.
commons
.
lang3
.
StringUtils
.
isNotBlank
(
e
.
getString
(
"
c
lerkId"
)))
.
map
(
e
->
e
.
getString
(
"
mainC
lerkId"
)).
collect
(
Collectors
.
toSet
());
.
map
(
e
->
e
.
getString
(
"
c
lerkId"
)).
collect
(
Collectors
.
toSet
());
if
(
CollectionUtils
.
isNotEmpty
(
mainClerkIdList
))
{
if
(
CollectionUtils
.
isNotEmpty
(
mainClerkIdList
))
{
List
<
ClerkDTO
>
mainClerkList
=
clerkService
.
getClerkByClerkIds
(
mainClerkIdList
);
List
<
ClerkDTO
>
mainClerkList
=
clerkService
.
getClerkByClerkIds
(
mainClerkIdList
);
if
(
CollectionUtils
.
isNotEmpty
(
mainClerkList
))
{
if
(
CollectionUtils
.
isNotEmpty
(
mainClerkList
))
{
...
...
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