Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
windows
Project
Project
Details
Activity
Releases
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
zhanhai
windows
Commits
73a96dc9
Commit
73a96dc9
authored
May 15, 2024
by
LSL
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
还款对账文件
parent
04150777
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
BackedJob.java
src/main/java/com/jqtx/windows/job/BackedJob.java
+7
-2
No files found.
src/main/java/com/jqtx/windows/job/BackedJob.java
View file @
73a96dc9
...
...
@@ -199,12 +199,17 @@ public class BackedJob {
return
parse
;
}
private
static
LocalDate
getLocalDate
(
String
time
)
{
private
LocalDate
getLocalDate
(
String
time
)
{
DateTimeFormatter
dateTimeFormatter
=
DateTimeFormatter
.
ofPattern
(
"yyyyMMdd"
);
LocalDate
parse
=
LocalDate
.
parse
(
time
,
dateTimeFormatter
);
return
parse
;
}
private
String
getStringTime
(
String
time
)
{
time
=
time
.
substring
(
0
,
4
)
+
"-"
+
time
.
substring
(
4
,
6
)
+
"-"
+
time
.
substring
(
6
,
8
);
return
time
;
}
/**
* @param model
...
...
@@ -243,7 +248,7 @@ public class BackedJob {
BigDecimal
backedAmt
=
planModel
.
getBackedBen
().
add
(
planModel
.
getBackedXi
()).
add
(
planModel
.
getBackedFu
()).
add
(
planModel
.
getBackedFa
()).
add
(
planModel
.
getBackedBurden
());
if
(!(
planAmt
.
compareTo
(
backedAmt
)
>
0
))
{
planModel
.
setStatus
(
LoanStatusEnum
.
SETTLED
.
getCode
());
overduedComponent
.
updateOverduedByPlanNo
(
planModel
.
getPlanNo
(),
model
.
getRepayDate
(
));
overduedComponent
.
updateOverduedByPlanNo
(
planModel
.
getPlanNo
(),
getStringTime
(
model
.
getRepayDate
()
));
}
loanPlanComponent
.
updateByLoanPlanModel
(
planModel
);
}
...
...
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