调整时间过滤问题

This commit is contained in:
袁东强 2025-08-03 19:57:29 +08:00
parent f1ffa59ac9
commit 9d14375790

View File

@ -768,7 +768,7 @@ public class PALRepositoryListWeb extends ActionWeb {
//生效日期
if (startTime > 0 || endTime > 0) {
try {
PALRepositoryPropertyModel propModel = PALRepositoryPropertyCache.getPropertyByPropertyId(model.getId(), "fileExpiryDate");
PALRepositoryPropertyModel propModel = PALRepositoryPropertyCache.getPropertyByPropertyId(model.getId(), "effective_date");
if (propModel == null) {
continue;
}
@ -786,6 +786,7 @@ public class PALRepositoryListWeb extends ActionWeb {
} catch (Exception e) {
System.out.println("流程清单数据过滤时,文件有效期转化失败");
e.printStackTrace();
continue;
}
}