diff --git a/src/main/java/com/tarento/upsmf/examsAndAdmissions/controller/HallTicketController.java b/src/main/java/com/tarento/upsmf/examsAndAdmissions/controller/HallTicketController.java index dad3d39b18eacb8bf07b1853274e46ac8e41c7c4..b82a7fc8ca9c7a904292259868ff5e5a7253612f 100644 --- a/src/main/java/com/tarento/upsmf/examsAndAdmissions/controller/HallTicketController.java +++ b/src/main/java/com/tarento/upsmf/examsAndAdmissions/controller/HallTicketController.java @@ -86,6 +86,7 @@ public class HallTicketController { @PostMapping("/dataCorrection/request") public ResponseEntity<ResponseDto> requestDataCorrection( @RequestParam("studentId") Long studentId, + @RequestParam("examCycleId") Long examCycleId, @RequestParam(value = "updatedFirstName", required = false) Optional<String> updatedFirstNameOpt, @RequestParam(value = "updatedLastName", required = false) Optional<String> updatedLastNameOpt, @RequestParam(value = "updatedDOB", required = false) Optional<String> dobOpt, // Taking as string for optional handling @@ -96,7 +97,7 @@ public class HallTicketController { String updatedLastName = updatedLastNameOpt.orElse(null); LocalDate updatedDOB = dobOpt.isPresent() ? LocalDate.parse(dobOpt.get()) : null; - ResponseDto responseDto = hallTicketService.requestHallTicketDataCorrection(studentId, updatedFirstName, updatedLastName, updatedDOB, proof); + ResponseDto responseDto = hallTicketService.requestHallTicketDataCorrection(studentId,examCycleId, updatedFirstName, updatedLastName, updatedDOB, proof); return ResponseEntity.status(responseDto.getResponseCode().value()).body(responseDto); } diff --git a/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/dto/DataCorrectionRequest.java b/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/dto/DataCorrectionRequest.java index feea047a6ac81f8929287bbb912da6959f8eeba0..0eecb6a7f293e4932864fe49501f42d97b5b578d 100644 --- a/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/dto/DataCorrectionRequest.java +++ b/src/main/java/com/tarento/upsmf/examsAndAdmissions/model/dto/DataCorrectionRequest.java @@ -1,6 +1,7 @@ package com.tarento.upsmf.examsAndAdmissions.model.dto; import com.tarento.upsmf.examsAndAdmissions.model.Exam; +import com.tarento.upsmf.examsAndAdmissions.model.ExamCycle; import com.tarento.upsmf.examsAndAdmissions.model.Student; import lombok.*; @@ -20,6 +21,9 @@ public class DataCorrectionRequest { @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "student_id") private Student student; + @ManyToOne(fetch = FetchType.EAGER) + @JoinColumn(name = "exam_cycle_id") + private ExamCycle examCycle; private String requestedCorrection; private String status; private String rejectionReason; diff --git a/src/main/java/com/tarento/upsmf/examsAndAdmissions/repository/StudentExamRegistrationRepository.java b/src/main/java/com/tarento/upsmf/examsAndAdmissions/repository/StudentExamRegistrationRepository.java index be2e6ec4bf7423f33e18b55405605aac83b35bc5..d9d376fb5281eb790890cb1fd49067c99170309d 100644 --- a/src/main/java/com/tarento/upsmf/examsAndAdmissions/repository/StudentExamRegistrationRepository.java +++ b/src/main/java/com/tarento/upsmf/examsAndAdmissions/repository/StudentExamRegistrationRepository.java @@ -58,4 +58,7 @@ public interface StudentExamRegistrationRepository extends JpaRepository<Student @Query("SELECT s FROM Student s WHERE s.verificationStatus = com.tarento.upsmf.examsAndAdmissions.enums.VerificationStatus.VERIFIED AND s.institute.id = :instituteId AND NOT EXISTS (SELECT ser FROM StudentExamRegistration ser WHERE ser.student.id = s.id AND ser.examCycle.id = :examCycleId)") List<Student> findVerifiedStudentsNotRegisteredForExamCycleByInstitute(Long examCycleId, Long instituteId); + StudentExamRegistration getByStudentId(Long id); + + StudentExamRegistration getByStudentIdAndExamCycleId(Long studentId, Long examCycleId); } diff --git a/src/main/java/com/tarento/upsmf/examsAndAdmissions/service/HallTicketService.java b/src/main/java/com/tarento/upsmf/examsAndAdmissions/service/HallTicketService.java index 52a2b73528a3968aaf4bd530e53adcb47ebabac5..0609cc938bc4741998826cb7de3316da0af3e329 100644 --- a/src/main/java/com/tarento/upsmf/examsAndAdmissions/service/HallTicketService.java +++ b/src/main/java/com/tarento/upsmf/examsAndAdmissions/service/HallTicketService.java @@ -51,6 +51,8 @@ public class HallTicketService { DataCorrectionRequestRepository dataCorrectionRequestRepository; @Autowired private StudentRepository studentRepository; + @Autowired + private ExamCycleRepository examCycleRepository; @Autowired private StudentExamRegistrationRepository studentExamRegistrationRepository; @@ -253,6 +255,7 @@ public class HallTicketService { } public ResponseDto requestHallTicketDataCorrection(Long studentId, + Long examCycleId, String updatedFirstName, String updatedLastName, LocalDate updatedDOB, @@ -271,6 +274,12 @@ public class HallTicketService { setErrorResponse(response, "PROOF_MISSING", "Proof attachment is required", HttpStatus.BAD_REQUEST); return response; } + Optional<ExamCycle> optionalExamCycle = examCycleRepository.findById(examCycleId); + + if (!optionalExamCycle.isPresent()) { + setErrorResponse(response, "INVALID_EXAMCYCLEID", "Invalid ExamCycle ID", HttpStatus.BAD_REQUEST); + return response; + } DataCorrectionRequest request = new DataCorrectionRequest(); request.setStudent(optionalStudent.get()); @@ -283,6 +292,7 @@ public class HallTicketService { if (updatedDOB != null) { request.setUpdatedDOB(updatedDOB); } + request.setExamCycle(optionalExamCycle.get()); request.setStatus("NEW"); String path = studentService.storeFile(proof); @@ -330,7 +340,7 @@ public class HallTicketService { formattedRequest.put("lastName", student.getSurname()); // changed from 'surName' formattedRequest.put("enrollmentNumber", student.getEnrollmentNumber()); - StudentExamRegistration registration = studentExamRegistrationRepository.findByStudent(student); + StudentExamRegistration registration = studentExamRegistrationRepository.getByStudentIdAndExamCycleId(student.getId(),request.getExamCycle().getId()); if (registration != null) { Map<String, Object> examCycleData = new HashMap<>(); ExamCycle examCycle = registration.getExamCycle();