|
|
@@ -883,14 +883,16 @@ public class ArchiveAutoPdfServiceImpl implements IArchiveAutoPdfService {
|
|
|
if (!minDate.isEmpty() && !minDate.equals("null") ) {
|
|
|
LocalDateTime localDateTime = FormulaUtil.parseStringToLocalDateTime(minDate, "yyyyMMdd");
|
|
|
if (localDateTime != null) {
|
|
|
- archive.setStartDate(localDateTime.toString());
|
|
|
+ String strDate = FileUtils.cleanFileTime(localDateTime.toString());
|
|
|
+ archive.setStartDate(strDate);
|
|
|
}
|
|
|
|
|
|
}
|
|
|
if (!maxDate.isEmpty() && !maxDate.equals("null") ) {
|
|
|
LocalDateTime localDateTime = FormulaUtil.parseStringToLocalDateTime(maxDate, "yyyyMMdd");
|
|
|
if (localDateTime != null) {
|
|
|
- archive.setEndDate(localDateTime.toString());
|
|
|
+ String strDate = FileUtils.cleanFileTime(localDateTime.toString());
|
|
|
+ archive.setEndDate(strDate);
|
|
|
}
|
|
|
}
|
|
|
|