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
413b6c0c
Commit
413b6c0c
authored
Jan 08, 2022
by
吴琼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
放开ice相关代码
parent
0069a6cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
OrderServiceImpl.java
...cn/quantgroup/customer/service/impl/OrderServiceImpl.java
+6
-6
No files found.
src/main/java/cn/quantgroup/customer/service/impl/OrderServiceImpl.java
View file @
413b6c0c
...
@@ -93,26 +93,26 @@ public class OrderServiceImpl implements IOrderService {
...
@@ -93,26 +93,26 @@ public class OrderServiceImpl implements IOrderService {
log
.
info
(
"{} 提现详情 loanId={}"
,
logPre
,
loanId
);
log
.
info
(
"{} 提现详情 loanId={}"
,
logPre
,
loanId
);
//JsonResult<LoanOrder> loanOrder = xyqbService.findLoanOrder(loanId);
//JsonResult<LoanOrder> loanOrder = xyqbService.findLoanOrder(loanId);
//todo 替换中台接口
//todo 替换中台接口
/*
JsonResult<LoanOrder> loanOrder = iceService.findLoanOrder(loanId);
JsonResult
<
LoanOrder
>
loanOrder
=
iceService
.
findLoanOrder
(
loanId
);
if
(!
loanOrder
.
isSuccess
())
{
if
(!
loanOrder
.
isSuccess
())
{
log
.
error
(
"{} 提现订单查询失败 loanId={}, result={}"
,
logPre
,
loanId
,
loanOrder
);
log
.
error
(
"{} 提现订单查询失败 loanId={}, result={}"
,
logPre
,
loanId
,
loanOrder
);
return
JsonResult
.
buildErrorStateResult
(
loanOrder
.
getMsg
(),
loanOrder
.
getData
());
return
JsonResult
.
buildErrorStateResult
(
loanOrder
.
getMsg
(),
loanOrder
.
getData
());
}
*/
}
LoanOrderDetail
loanOrderDetail
=
new
LoanOrderDetail
();
LoanOrderDetail
loanOrderDetail
=
new
LoanOrderDetail
();
List
<
Repayment
>
repaymentList
=
new
ArrayList
<>();
List
<
Repayment
>
repaymentList
=
new
ArrayList
<>();
//
LoanOrder loanOrderData = loanOrder.getData();
LoanOrder
loanOrderData
=
loanOrder
.
getData
();
//
loanOrderDetail.setLoanOrder(loanOrderData);
loanOrderDetail
.
setLoanOrder
(
loanOrderData
);
loanOrderDetail
.
setRepaymentList
(
repaymentList
);
loanOrderDetail
.
setRepaymentList
(
repaymentList
);
//add by wuq 2021-12-30 begin
//add by wuq 2021-12-30 begin
List
<
BaitRepaymentPlan
>
baitRepaymentList
=
new
ArrayList
<>();
List
<
BaitRepaymentPlan
>
baitRepaymentList
=
new
ArrayList
<>();
loanOrderDetail
.
setBaitRepaymentList
(
baitRepaymentList
);
loanOrderDetail
.
setBaitRepaymentList
(
baitRepaymentList
);
//add by wuq 2021-12-30 end
//add by wuq 2021-12-30 end
/*
if (Objects.isNull(loanOrderData) || !loanOrderData.getShowPlans()) {
if
(
Objects
.
isNull
(
loanOrderData
)
||
!
loanOrderData
.
getShowPlans
())
{
log
.
info
(
"{} 不需查询还款计划"
,
logPre
);
log
.
info
(
"{} 不需查询还款计划"
,
logPre
);
return
JsonResult
.
buildSuccessResult
(
"查询成功"
,
loanOrderDetail
);
return
JsonResult
.
buildSuccessResult
(
"查询成功"
,
loanOrderDetail
);
}
*/
}
//还款计划查询
//还款计划查询
//JsonResult<OrderRepayment> orderRepaymentJsonResult = xyqbService.repaymentPlanQuery(loanId);
//JsonResult<OrderRepayment> orderRepaymentJsonResult = xyqbService.repaymentPlanQuery(loanId);
...
...
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