Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-store
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
base_platform_enterprise
gic-store
Commits
cef69d1b
Commit
cef69d1b
authored
Jun 03, 2020
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
同步门店-同步导购-查询导购数据结果加日志
parent
77b9c915
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
ClerkApiServiceImpl.java
...com/gic/store/service/outer/impl/ClerkApiServiceImpl.java
+3
-2
No files found.
gic-store-service/src/main/java/com/gic/store/service/outer/impl/ClerkApiServiceImpl.java
View file @
cef69d1b
...
...
@@ -674,9 +674,10 @@ public class ClerkApiServiceImpl implements ClerkApiService {
ClerkSearchDTO
searchDTO
=
new
ClerkSearchDTO
();
searchDTO
.
setEnterpriseId
(
enterpriseId
);
StringBuilder
sb
=
new
StringBuilder
();
storeIdList
.
forEach
(
e
->
sb
.
append
(
e
).
append
(
"
,
"
));
storeIdList
.
forEach
(
e
->
sb
.
append
(
e
).
append
(
"
"
));
searchDTO
.
setStoreIds
(
sb
.
toString
());
ServiceResponse
<
Page
<
ClerkStoreListDTO
>>
pageResult
=
listClerk
(
enterpriseId
,
searchDTO
,
0
,
storeIdList
.
size
());
ServiceResponse
<
Page
<
ClerkStoreListDTO
>>
pageResult
=
listClerk
(
enterpriseId
,
searchDTO
,
1
,
storeIdList
.
size
());
logger
.
info
(
"同步门店-同步导购-查询导购数据结果:{}"
,
JSONObject
.
toJSONString
(
pageResult
));
if
(
pageResult
.
isSuccess
())
{
Page
<
ClerkStoreListDTO
>
page
=
pageResult
.
getResult
();
if
(
page
!=
null
)
{
...
...
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