Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
customer-service
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
QG
customer-service
Commits
a09e45da
Commit
a09e45da
authored
Apr 21, 2020
by
杨钧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改列表查询没有手机号问题
parent
a5736016
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
OrderServiceImpl.java
...cn/quantgroup/customer/service/impl/OrderServiceImpl.java
+3
-3
No files found.
src/main/java/cn/quantgroup/customer/service/impl/OrderServiceImpl.java
View file @
a09e45da
...
...
@@ -192,7 +192,7 @@ public class OrderServiceImpl implements IOrderService {
}
}
// 请求xyqb
// 请求xyqb
为空或者不成功,直接返回
JsonResult
<
List
<
EarlySettleUpOrder
>>
xyqbOrderResult
=
this
.
xyqbService
.
findLoanOrder4EarlySettleUp
(
orderQuery
);
if
(
Objects
.
isNull
(
xyqbOrderResult
))
{
return
JsonResult
.
buildErrorStateResult
(
"查询订单信息出错"
,
null
);
...
...
@@ -210,7 +210,7 @@ public class OrderServiceImpl implements IOrderService {
if
(
StringUtils
.
isNotBlank
(
orderQuery
.
getChannelOrderNo
())){
e
.
setChannelOrderNo
(
orderQuery
.
getChannelOrderNo
());
}
else
{
// 查询
渠道信息
// 查询
订单信息 主要获取渠道订单号
OrderQueryParam
orderQueryParam
=
new
OrderQueryParam
();
orderQueryParam
.
setLoanId
(
e
.
getLoanId
());
JsonResult
<
LoanOrderMapping
>
mappingJsonResult
=
kaService
.
findOrderMapping
(
orderQueryParam
);
...
...
@@ -223,7 +223,7 @@ public class OrderServiceImpl implements IOrderService {
if
(
StringUtils
.
isNotBlank
(
orderQuery
.
getPhoneNo
())){
e
.
setPhoneNo
(
orderQuery
.
getPhoneNo
());
}
else
{
// 查询
渠道信息
// 查询
用户信息 主要获取手机号
UserQueryParam
userQueryParam
=
new
UserQueryParam
();
userQueryParam
.
setUserId
(
e
.
getUserId
());
JsonResult
<
UserBasicInfo
>
userInfo
=
userService
.
findUserInfo
(
userQueryParam
);
...
...
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