Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
examsAndAdmissions
Commits
29406850
Commit
29406850
authored
1 year ago
by
Radheshhathwar
Browse files
Options
Download
Patches
Plain Diff
dataCorrection/requests
parent
72009f68
github/fork/ruksana2808/filter_bug_examCycle
development
1 merge request
!186
dataCorrection/requests
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/com/tarento/upsmf/examsAndAdmissions/service/HallTicketService.java
+2
-2
...o/upsmf/examsAndAdmissions/service/HallTicketService.java
with
2 additions
and
2 deletions
+2
-2
src/main/java/com/tarento/upsmf/examsAndAdmissions/service/HallTicketService.java
+
2
−
2
View file @
29406850
...
...
@@ -346,10 +346,10 @@ public class HallTicketService {
formattedRequest
.
put
(
"lastName"
,
student
.
getSurname
());
// changed from 'surName'
formattedRequest
.
put
(
"enrollmentNumber"
,
student
.
getEnrollmentNumber
());
StudentExamRegistration
registration
=
studentExamRegistrationRepository
.
getBy
StudentIdAnd
ExamCycleId
(
s
tudent
.
getId
(),
request
.
getExamCycle
().
getId
()
)
;
List
<
StudentExamRegistration
>
registration
=
studentExamRegistrationRepository
.
getByExamCycleId
AndS
tudent
Id
(
request
.
getExamCycle
().
getId
()
,
student
.
getId
())
;
if
(
registration
!=
null
)
{
Map
<
String
,
Object
>
examCycleData
=
new
HashMap
<>();
ExamCycle
examCycle
=
registration
.
getExamCycle
();
ExamCycle
examCycle
=
registration
.
get
(
0
).
getExamCycle
();
examCycleData
.
put
(
"id"
,
examCycle
.
getId
());
examCycleData
.
put
(
"examCyclename"
,
examCycle
.
getExamCycleName
());
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets