Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yanxuan-qc-change-system
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
yx-qc-change-flow
yanxuan-qc-change-system
Commits
f519ca8a
Commit
f519ca8a
authored
Jan 06, 2023
by
“zcwang”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify: 查询商品负责人
parent
5ca0f3df
Pipeline
#44572
passed with stages
in 1 minute 39 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
InteriorChangeConfigServiceImpl.java
...nge/biz/service/impl/InteriorChangeConfigServiceImpl.java
+1
-1
ItemcenterRpcService.java
.../yanxuan/change/biz/service/rpc/ItemcenterRpcService.java
+1
-1
No files found.
yanxuan-qc-change-system-biz/src/main/java/com/netease/mail/yanxuan/change/biz/service/impl/InteriorChangeConfigServiceImpl.java
View file @
f519ca8a
...
@@ -167,7 +167,7 @@ public class InteriorChangeConfigServiceImpl implements InteriorChangeConfigServ
...
@@ -167,7 +167,7 @@ public class InteriorChangeConfigServiceImpl implements InteriorChangeConfigServ
if
(
ChangePrincipalEnum
.
GOODS_BU
.
getName
().
equals
(
commander
))
{
if
(
ChangePrincipalEnum
.
GOODS_BU
.
getName
().
equals
(
commander
))
{
List
<
ItemManagerTO
>
product
=
itemcenterRpcService
.
getProduct
(
goodsInfos
);
List
<
ItemManagerTO
>
product
=
itemcenterRpcService
.
getProduct
(
goodsInfos
);
logger
.
info
(
"[queryGoodsCommander] goods_bu:{}"
,
product
);
logger
.
info
(
"[queryGoodsCommander] goods_bu:{}"
,
JSON
.
toJSONString
(
product
)
);
getGoodsEmail
(
emails
,
product
);
getGoodsEmail
(
emails
,
product
);
}
else
if
(
ChangePrincipalEnum
.
PURCHASE
.
getName
().
equals
(
commander
))
{
}
else
if
(
ChangePrincipalEnum
.
PURCHASE
.
getName
().
equals
(
commander
))
{
...
...
yanxuan-qc-change-system-biz/src/main/java/com/netease/mail/yanxuan/change/biz/service/rpc/ItemcenterRpcService.java
View file @
f519ca8a
...
@@ -45,7 +45,7 @@ public class ItemcenterRpcService {
...
@@ -45,7 +45,7 @@ public class ItemcenterRpcService {
String
collect
=
StringUtils
.
join
(
list
,
","
);
String
collect
=
StringUtils
.
join
(
list
,
","
);
AjaxResponse
<
List
<
ItemManagerTO
>>
response
=
itemcenterApiRpcService
.
getProduct
(
"qc"
,
collect
);
AjaxResponse
<
List
<
ItemManagerTO
>>
response
=
itemcenterApiRpcService
.
getProduct
(
"qc"
,
collect
);
if
(
ResponseCodeEnum
.
SUCCESS
.
getCode
()
==
response
.
getCode
())
{
if
(
ResponseCodeEnum
.
SUCCESS
.
getCode
()
==
response
.
getCode
())
{
log
.
info
(
"[getProduct]
itemManagerTOS={}"
,
JSON
.
toJSONString
(
itemManagerTOS
));
log
.
info
(
"[getProduct]
response={}"
,
JSON
.
toJSONString
(
response
));
if
(
CollectionUtils
.
isNotEmpty
(
response
.
getData
()))
{
if
(
CollectionUtils
.
isNotEmpty
(
response
.
getData
()))
{
itemManagerTOS
.
addAll
(
response
.
getData
());
itemManagerTOS
.
addAll
(
response
.
getData
());
}
}
...
...
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