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
9b79f4aa
Commit
9b79f4aa
authored
Feb 13, 2022
by
王业雄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vcc线下还款
parent
dfe565b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
VccServiceImpl.java
...a/cn/quantgroup/customer/service/impl/VccServiceImpl.java
+4
-2
No files found.
src/main/java/cn/quantgroup/customer/service/impl/VccServiceImpl.java
View file @
9b79f4aa
...
@@ -214,10 +214,10 @@ public class VccServiceImpl implements IVccService {
...
@@ -214,10 +214,10 @@ public class VccServiceImpl implements IVccService {
}
else
if
(
1
==
status
){
}
else
if
(
1
==
status
){
//审批通过
//审批通过
String
url
=
""
;
String
url
=
""
;
String
phone
=
bySerialNoEquals
.
getPhone
();
UserSysResult
<
XUser
>
userByPhoneNo
=
userSdkService
.
findUserByPhoneNo
(
phone
);
if
(
1
==
bySerialNoEquals
.
getRepayType
()){
if
(
1
==
bySerialNoEquals
.
getRepayType
()){
//月还账单
//月还账单
String
phone
=
bySerialNoEquals
.
getPhone
();
UserSysResult
<
XUser
>
userByPhoneNo
=
userSdkService
.
findUserByPhoneNo
(
phone
);
List
<
ApplyBill
>
billList
=
GSON
.
fromJson
(
bySerialNoEquals
.
getBills
(),
new
TypeToken
<
List
<
ApplyBill
>>()
{
List
<
ApplyBill
>
billList
=
GSON
.
fromJson
(
bySerialNoEquals
.
getBills
(),
new
TypeToken
<
List
<
ApplyBill
>>()
{
}.
getType
());
}.
getType
());
StringBuilder
stringBuilder
=
new
StringBuilder
();
StringBuilder
stringBuilder
=
new
StringBuilder
();
...
@@ -228,6 +228,8 @@ public class VccServiceImpl implements IVccService {
...
@@ -228,6 +228,8 @@ public class VccServiceImpl implements IVccService {
url
=
talosHttp
+
"/vcc/repay/offlineRepay?userId="
+
userByPhoneNo
.
getData
().
getId
()
+
"&amount="
+
bySerialNoEquals
.
getAmount
()
+
"&billNo="
+
billNo
;
url
=
talosHttp
+
"/vcc/repay/offlineRepay?userId="
+
userByPhoneNo
.
getData
().
getId
()
+
"&amount="
+
bySerialNoEquals
.
getAmount
()
+
"&billNo="
+
billNo
;
}
else
{
}
else
{
//提前结清
//提前结清
url
=
talosHttp
+
"/vcc/offline_pre_repay/repay?userId="
+
userByPhoneNo
.
getData
().
getId
()
+
"&amount="
+
bySerialNoEquals
.
getAmount
()
+
"&repayType="
+
bySerialNoEquals
.
getRepayType
()
+
"&uniqueId="
+
bySerialNoEquals
.
getUniqueId
();
}
}
log
.
info
(
"queryRepayCalDetail | 开始请求talos,url={}"
,
url
);
log
.
info
(
"queryRepayCalDetail | 开始请求talos,url={}"
,
url
);
String
get
=
httpService
.
get
(
url
);
String
get
=
httpService
.
get
(
url
);
...
...
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