Added application evaluation form and form field

This commit is contained in:
nisha
2025-01-28 17:50:22 +05:30
parent cc94edc265
commit a6d8644592
14 changed files with 449 additions and 6 deletions

View File

@@ -669,7 +669,7 @@ public class ApplicationDao {
return documentIds;
}
private List<Long> validateDocumentIds(String documentId) {
public List<Long> validateDocumentIds(String documentId) {
if (documentId != null && !documentId.isEmpty()) {
return Arrays.stream(documentId.split(","))
.map(Long::parseLong)