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
173b1f61
Commit
173b1f61
authored
1 year ago
by
Radheshhathwar
Browse files
Options
Download
Patches
Plain Diff
CHanged response for result
parent
14bffb75
github/fork/ruksana2808/filter_bug_examCycle
bug_fix_question_paper_upload
development
1 merge request
!169
CHanged response for result
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/com/tarento/upsmf/examsAndAdmissions/service/StudentResultService.java
+11
-1
...psmf/examsAndAdmissions/service/StudentResultService.java
with
11 additions
and
1 deletion
+11
-1
src/main/java/com/tarento/upsmf/examsAndAdmissions/service/StudentResultService.java
+
11
−
1
View file @
173b1f61
...
...
@@ -697,7 +697,17 @@ public class StudentResultService {
dto
.
setInternalMarks
(
result
.
getInternalMarks
());
dto
.
setPassingInternalMarks
(
result
.
getPassingInternalMarks
());
dto
.
setInternalMarksObtained
(
result
.
getInternalMarksObtained
());
//... similarly, map other fields
dto
.
setPracticalMarks
(
result
.
getPracticalMarks
());
dto
.
setPassingPracticalMarks
(
result
.
getPassingPracticalMarks
());
dto
.
setPracticalMarksObtained
(
result
.
getPracticalMarksObtained
());
dto
.
setExternalMarks
(
result
.
getExternalMarks
());
dto
.
setPassingExternalMarks
(
result
.
getPassingExternalMarks
());
dto
.
setExternalMarksObtained
(
result
.
getExternalMarksObtained
());
dto
.
setTotalMarks
(
result
.
getTotalMarks
());
dto
.
setPassingTotalMarks
(
result
.
getPassingTotalMarks
());
dto
.
setTotalMarksObtained
(
result
.
getTotalMarksObtained
());
dto
.
setGrade
(
result
.
getGrade
());
dto
.
setResult
(
result
.
getResult
());
return
dto
;
})
.
collect
(
Collectors
.
toList
());
...
...
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