Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
baihang-report
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
data-spider
baihang-report
Commits
f79ea7d6
Commit
f79ea7d6
authored
Dec 02, 2021
by
陈宏杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
文件名空
parent
ef26e231
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
BaiHangFileReportService.java
...roup/report/service/baihang/BaiHangFileReportService.java
+6
-2
No files found.
src/main/java/cn/quantgroup/report/service/baihang/BaiHangFileReportService.java
View file @
f79ea7d6
...
...
@@ -112,14 +112,18 @@ public class BaiHangFileReportService {
Stopwatch
stopwatch
=
Stopwatch
.
createStarted
();
while
(
stepEndDate
.
getTime
()
<=
endDate
.
getTime
()){
encryptFileName
=
createReportFile
(
type
,
stepStartDate
,
stepEndDate
,
loanStartDate
,
loanEndDate
,
prefix
);
encryptFileNameList
.
add
(
encryptFileName
);
if
(
StringUtils
.
isNotBlank
(
encryptFileName
))
{
encryptFileNameList
.
add
(
encryptFileName
);
}
stepStartDate
=
new
Date
(
stepEndDate
.
getTime
());
stepEndDate
=
org
.
apache
.
commons
.
lang3
.
time
.
DateUtils
.
addDays
(
stepEndDate
,
daySplitCount
);
}
log
.
info
(
"当前 {} -- {}--{} 任务执行结束 总耗时 : {}"
,
type
,
start
,
end
,
stopwatch
.
elapsed
(
TimeUnit
.
MILLISECONDS
));
if
(
stepEndDate
.
getTime
()
>
endDate
.
getTime
()){
encryptFileName
=
createReportFile
(
type
,
stepStartDate
,
endDate
,
loanStartDate
,
loanEndDate
,
prefix
);
encryptFileNameList
.
add
(
encryptFileName
);
if
(
StringUtils
.
isNotBlank
(
encryptFileName
))
{
encryptFileNameList
.
add
(
encryptFileName
);
}
}
if
(!
CollectionUtils
.
isEmpty
(
encryptFileNameList
))
{
File
file
=
new
File
(
HOST_PATH
+
"存量报送加密文件名称集合_"
+
type
+
"_"
+
start
.
replace
(
"-"
,
""
)+
"_"
+
end
.
replace
(
"-"
,
""
)+
"_"
+
DateUtils
.
formatDate
(
new
Date
(),
"yyyyMMddHHmm"
)+
".txt"
);
...
...
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