|
|
@@ -5408,6 +5408,10 @@ public class ArchivesAutoServiceImpl extends BaseServiceImpl<ArchivesAutoMapper,
|
|
|
LocalDateTime[] localDateTimes = convertDateRange(time, "-");
|
|
|
auto.setStartDate(localDateTimes[0]);
|
|
|
auto.setEndDate(localDateTimes[1]);
|
|
|
+ } else if (result.contains("~")) {
|
|
|
+ LocalDateTime[] localDateTimes = convertDateRange(time, "~");
|
|
|
+ auto.setStartDate(localDateTimes[0]);
|
|
|
+ auto.setEndDate(localDateTimes[1]);
|
|
|
}
|
|
|
} else if (result.contains("保管期限")||result.contains("保管限期")) {
|
|
|
String storageTime=result.replace("保管期限","").replace("保管限期","").replace(":","").replace(":","").replaceAll("_","");
|