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
7fdb3241
Commit
7fdb3241
authored
Feb 23, 2022
by
yexiong.wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
4dc9d8a2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
ApplyBill.java
...java/cn/quantgroup/customer/rest/param/vcc/ApplyBill.java
+1
-1
VccServiceImpl.java
...a/cn/quantgroup/customer/service/impl/VccServiceImpl.java
+3
-1
No files found.
src/main/java/cn/quantgroup/customer/rest/param/vcc/ApplyBill.java
View file @
7fdb3241
...
...
@@ -14,6 +14,6 @@ public class ApplyBill {
if
(
applyBill
==
null
){
return
false
;
}
return
Objects
.
equals
(
applyBill
.
getBillId
(),
this
.
getBillId
())
&&
applyBill
.
getAmount
().
compareTo
(
this
.
getAmount
())
==
0
;
return
Objects
.
equals
(
applyBill
.
getBillId
(),
this
.
getBillId
());
}
}
src/main/java/cn/quantgroup/customer/service/impl/VccServiceImpl.java
View file @
7fdb3241
...
...
@@ -95,10 +95,12 @@ public class VccServiceImpl implements IVccService {
for
(
OfflineRepaySubmitRecord
record:
byUserIdEqualsAndRepayTypeEquals
){
List
<
ApplyBill
>
billList
=
GSON
.
fromJson
(
record
.
getBills
(),
new
TypeToken
<
List
<
ApplyBill
>>()
{
}.
getType
());
log
.
info
(
"billList={}
"
,
billList
);
log
.
info
(
"billList={}
,applyBill={}"
,
billList
,
applyBill
);
if
(
billList
.
contains
(
applyBill
)){
log
.
info
(
"发现已经提交过了,补充流水号前:voList={}"
,
voList
);
voList
.
get
(
i
).
setSerialNo
(
record
.
getSerialNo
());
voList
.
get
(
i
).
setApprovalStatus
(
record
.
getApprovalStatus
());
log
.
info
(
"发现已经提交过了,补充流水号后:voList={}"
,
voList
);
break
;
}
}
...
...
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