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
6c7c32ae
Unverified
Commit
6c7c32ae
authored
1 year ago
by
Ankit Verma
Committed by
GitHub
1 year ago
Browse files
Options
Download
Plain Diff
Merge pull request #180 from Radheshhathwar/development
Revised marks
parents
d0713515
1f6df79d
github/fork/ruksana2808/filter_bug_examCycle
development
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/main/java/com/tarento/upsmf/examsAndAdmissions/controller/StudentResultController.java
+5
-0
...xamsAndAdmissions/controller/StudentResultController.java
src/main/java/com/tarento/upsmf/examsAndAdmissions/service/DataImporterService.java
+64
-20
...upsmf/examsAndAdmissions/service/DataImporterService.java
src/main/java/com/tarento/upsmf/examsAndAdmissions/service/StudentResultService.java
+39
-0
...psmf/examsAndAdmissions/service/StudentResultService.java
with
108 additions
and
20 deletions
+108
-20
src/main/java/com/tarento/upsmf/examsAndAdmissions/controller/StudentResultController.java
+
5
−
0
View file @
6c7c32ae
...
@@ -77,6 +77,11 @@ public class StudentResultController {
...
@@ -77,6 +77,11 @@ public class StudentResultController {
return
new
ResponseEntity
<>(
studentResultService
.
processBulkResultUploadWithExternals
(
file
,
fileType
),
HttpStatus
.
OK
);
return
new
ResponseEntity
<>(
studentResultService
.
processBulkResultUploadWithExternals
(
file
,
fileType
),
HttpStatus
.
OK
);
}
}
@PutMapping
(
"/bulkUploadRevised"
)
public
ResponseEntity
<
ResponseDto
>
processBulkResultUploadWithRevisedMarks
(
@RequestParam
(
"file"
)
MultipartFile
file
,
@RequestParam
(
"fileType"
)
String
fileType
)
{
return
new
ResponseEntity
<>(
studentResultService
.
processBulkResultUploadWithRevisedMarks
(
file
,
fileType
),
HttpStatus
.
OK
);
}
@GetMapping
(
"/manageResults"
)
@GetMapping
(
"/manageResults"
)
public
ResponseEntity
<
ResponseDto
>
getExamResultsByExamCycle
(
public
ResponseEntity
<
ResponseDto
>
getExamResultsByExamCycle
(
@RequestParam
Long
examCycle
)
{
@RequestParam
Long
examCycle
)
{
...
...
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/examsAndAdmissions/service/DataImporterService.java
+
64
−
20
View file @
6c7c32ae
...
@@ -144,15 +144,15 @@ public class DataImporterService {
...
@@ -144,15 +144,15 @@ public class DataImporterService {
if
(
columnValue
!=
null
&&
!
columnValue
.
isEmpty
())
{
if
(
columnValue
!=
null
&&
!
columnValue
.
isEmpty
())
{
if
(
columnType
==
Date
.
class
)
{
if
(
columnType
==
Date
.
class
)
{
SimpleDateFormat
dateFormat
=
new
SimpleDateFormat
(
"dd.MM.yyyy"
);
SimpleDateFormat
dateFormat
=
new
SimpleDateFormat
(
"dd.MM.yyyy"
);
SimpleDateFormat
timeFormat
=
new
SimpleDateFormat
(
"
h
:mm
a
"
);
SimpleDateFormat
timeFormat
=
new
SimpleDateFormat
(
"
HH
:mm"
);
// Use "HH:mm" for 24-hour time format
try
{
try
{
if
(
columnName
.
equals
(
"Start Time"
)
||
columnName
.
equals
(
"End Time"
))
{
if
(
columnName
.
equals
IgnoreCase
(
"Start Time"
)
||
columnName
.
equals
IgnoreCase
(
"End Time"
))
{
Date
time
=
timeFormat
.
parse
(
columnValue
);
Date
time
=
timeFormat
.
parse
(
columnValue
);
map
.
put
(
columnName
,
time
Format
.
format
(
time
));
// Format the time as a string
map
.
put
(
columnName
,
time
);
// Parse the time directly as a Date
}
else
if
(
columnName
.
equals
(
"Start Date"
)
||
columnName
.
equals
(
"End Date"
))
{
}
else
if
(
columnName
.
equals
IgnoreCase
(
"Start Date"
)
||
columnName
.
equals
IgnoreCase
(
"End Date"
))
{
Date
date
=
dateFormat
.
parse
(
columnValue
);
Date
date
=
dateFormat
.
parse
(
columnValue
);
map
.
put
(
columnName
,
date
Format
.
format
(
date
));
// Format the date as a string
map
.
put
(
columnName
,
date
);
// Parse the date directly as a Date
}
}
}
catch
(
ParseException
e
)
{
}
catch
(
ParseException
e
)
{
e
.
printStackTrace
();
// Handle parsing exceptions
e
.
printStackTrace
();
// Handle parsing exceptions
...
@@ -455,6 +455,65 @@ public class DataImporterService {
...
@@ -455,6 +455,65 @@ public class DataImporterService {
return
resultDto
;
return
resultDto
;
}
}
public
ValidationResultDto
convertResultDtoListToEntitiesRevisedMarks
(
List
<
StudentResult
>
dtoList
,
StudentResultRepository
repository
)
{
List
<
StudentResult
>
entityList
=
new
ArrayList
<>();
List
<
String
>
validationErrors
=
new
ArrayList
<>();
for
(
StudentResult
dto
:
dtoList
)
{
boolean
isDuplicate
=
checkIfDataExists
(
dto
);
//fetch data from student_exam_registration and set the flag there, if the record is not found break and return data invalid
if
(
isDuplicate
)
{
if
(!
DataValidation
.
isFirstNameValid
(
dto
.
getFirstName
()))
{
validationErrors
.
add
(
"- First Name is invalid: "
+
dto
.
getFirstName
()
+
" First name has to contain alphabetic values only"
);
}
if
(!
DataValidation
.
isLastNameValid
(
dto
.
getLastName
()))
{
validationErrors
.
add
(
"- Last Name is invalid: "
+
dto
.
getLastName
()
+
" Last name has to contain alphabetic values only"
);
}
if
(!
DataValidation
.
isEnrollmentNumberValid
(
dto
.
getEnrollmentNumber
()))
{
validationErrors
.
add
(
"- Enrollment Number is invalid: "
+
dto
.
getEnrollmentNumber
()
+
" Enrollment number has to contain numerical values prefixed with EN"
);
}
if
(!
DataValidation
.
isMarksValid
(
dto
.
getExternalMarks
()))
{
validationErrors
.
add
(
"- External marks is invalid: "
+
dto
.
getExternalMarks
()
+
" Marks have to be within 0 and 100"
);
}
if
(!
DataValidation
.
isPassingMarksValid
(
dto
.
getPassingExternalMarks
()))
{
validationErrors
.
add
(
"- Passing External Marks is invalid: "
+
dto
.
getPassingExternalMarks
()
+
" Marks have to be within 0 and 100"
);
}
if
(!
DataValidation
.
isMarksValid
(
dto
.
getExternalMarksObtained
()))
{
validationErrors
.
add
(
"- External Marks Obtained is invalid: "
+
dto
.
getExternalMarksObtained
()
+
" Marks have to be within 0 and 100"
);
}
}
if
(
validationErrors
.
isEmpty
())
{
StudentResult
existingEntity
=
repository
.
findByFirstNameAndLastNameAndEnrollmentNumber
(
dto
.
getFirstName
(),
dto
.
getLastName
(),
dto
.
getEnrollmentNumber
());
List
<
StudentResult
>
marks
=
calculateResult
(
existingEntity
.
getInternalMarks
(),
existingEntity
.
getPassingInternalMarks
(),
existingEntity
.
getInternalMarksObtained
(),
existingEntity
.
getPracticalMarks
(),
existingEntity
.
getPassingPracticalMarks
(),
existingEntity
.
getPracticalMarksObtained
(),
dto
.
getExternalMarks
(),
dto
.
getPassingExternalMarks
(),
dto
.
getExternalMarksObtained
());
existingEntity
.
setExternalMarks
(
dto
.
getExternalMarks
());
existingEntity
.
setPassingExternalMarks
(
dto
.
getPassingExternalMarks
());
existingEntity
.
setExternalMarksObtained
(
dto
.
getExternalMarksObtained
());
existingEntity
.
setFinalMarkFlag
(
true
);
existingEntity
.
setRevisedFinalMarkFlag
(
true
);
existingEntity
.
setTotalMarks
(
marks
.
get
(
0
).
getTotalMarks
());
existingEntity
.
setPassingTotalMarks
(
marks
.
get
(
0
).
getPassingTotalMarks
());
existingEntity
.
setTotalMarksObtained
(
marks
.
get
(
0
).
getTotalMarksObtained
());
existingEntity
.
setResult
(
marks
.
get
(
0
).
getResult
());
existingEntity
.
setGrade
(
marks
.
get
(
0
).
getGrade
());
entityList
.
add
(
existingEntity
);
}
}
ValidationResultDto
resultDto
=
new
ValidationResultDto
();
if
(!
validationErrors
.
isEmpty
())
{
resultDto
.
setValid
(
false
);
resultDto
.
setValidationErrors
(
validationErrors
);
}
else
{
resultDto
.
setValid
(
true
);
repository
.
saveAll
(
entityList
);
resultDto
.
setSavedEntities
(
entityList
);
}
return
resultDto
;
}
private
List
<
StudentResult
>
calculateResult
(
private
List
<
StudentResult
>
calculateResult
(
Integer
internalMarks
,
Integer
passingInternalMarks
,
Integer
internalMarksObtained
,
Integer
internalMarks
,
Integer
passingInternalMarks
,
Integer
internalMarksObtained
,
...
@@ -519,24 +578,9 @@ public class DataImporterService {
...
@@ -519,24 +578,9 @@ public class DataImporterService {
if
(!
DataValidation
.
isCourseNameValid
(
dto
.
getCourse
()))
{
if
(!
DataValidation
.
isCourseNameValid
(
dto
.
getCourse
()))
{
validationErrors
.
add
(
"- Course is invalid: "
+
dto
.
getCourse
());
validationErrors
.
add
(
"- Course is invalid: "
+
dto
.
getCourse
());
}
}
// if (!DataValidation.isDateValid(dto.getStartDate())) {
// validationErrors.add("- Start Date is invalid: " + dto.getStartDate());
// }
// if (!DataValidation.isDateValid(dto.getEndDate())) {
// validationErrors.add("- End Date is invalid: " + dto.getEndDate());
// }
if
(!
DataValidation
.
isExamValid
(
dto
.
getExamName
()))
{
if
(!
DataValidation
.
isExamValid
(
dto
.
getExamName
()))
{
validationErrors
.
add
(
"- Exam Name is invalid: "
+
dto
.
getExamName
());
validationErrors
.
add
(
"- Exam Name is invalid: "
+
dto
.
getExamName
());
}
}
// if (!DataValidation.isDateValid(dto.getDate())) {
// validationErrors.add("- Date is invalid: " + dto.getDate());
// }
// if (!DataValidation.isTimeFormatValid(String.valueOf(dto.getStartTime()))) {
// validationErrors.add("- Start Time is invalid: " + dto.getStartTime());
// }
// if (!DataValidation.isTimeFormatValid(String.valueOf(dto.getEndTime()))) {
// validationErrors.add("- End Time is invalid: " + dto.getEndTime());
// }
if
(!
DataValidation
.
isMarksBetweenOneAndHundred
(
dto
.
getMaximumMarks
()))
{
if
(!
DataValidation
.
isMarksBetweenOneAndHundred
(
dto
.
getMaximumMarks
()))
{
validationErrors
.
add
(
"- Maximum Marks should be between 1 and 100: "
+
dto
.
getMaximumMarks
());
validationErrors
.
add
(
"- Maximum Marks should be between 1 and 100: "
+
dto
.
getMaximumMarks
());
}
}
...
...
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/examsAndAdmissions/service/StudentResultService.java
+
39
−
0
View file @
6c7c32ae
...
@@ -675,6 +675,45 @@ public class StudentResultService {
...
@@ -675,6 +675,45 @@ public class StudentResultService {
return
ResponseDto
.
setErrorResponse
(
response
,
"INTERNAL_ERROR"
,
"An unexpected error occurred."
,
HttpStatus
.
INTERNAL_SERVER_ERROR
);
return
ResponseDto
.
setErrorResponse
(
response
,
"INTERNAL_ERROR"
,
"An unexpected error occurred."
,
HttpStatus
.
INTERNAL_SERVER_ERROR
);
}
}
}
}
public
ResponseDto
processBulkResultUploadWithRevisedMarks
(
MultipartFile
file
,
String
fileType
)
{
ResponseDto
response
=
new
ResponseDto
(
Constants
.
API_BULK_UPLOAD_RESULTS
);
try
{
JSONArray
jsonArray
;
switch
(
fileType
.
toLowerCase
())
{
case
Constants
.
CSV
:
jsonArray
=
dataImporterService
.
csvToJson
(
file
,
columnConfig
);
break
;
case
Constants
.
EXCEL
:
jsonArray
=
dataImporterService
.
excelToJson
(
file
);
break
;
default
:
// Handle unsupported file type
return
ResponseDto
.
setErrorResponse
(
response
,
"UNSUPPORTED_FILE_TYPE"
,
"Unsupported file type"
,
HttpStatus
.
BAD_REQUEST
);
}
String
[]
selectedColumns
=
{
"First Name"
,
"Last Name"
,
"Enrolment Number"
,
"External Marks"
,
"Passing External Marks"
,
"External Marks Obtained"
};
JSONArray
filteredJsonArray
=
dataImporterService
.
filterColumns
(
jsonArray
,
selectedColumns
);
List
<
StudentResult
>
dtoList
=
dataImporterService
.
convertJsonToDtoList
(
filteredJsonArray
,
StudentResult
.
class
);
ValidationResultDto
validationResult
=
dataImporterService
.
convertResultDtoListToEntitiesRevisedMarks
(
dtoList
,
studentResultRepository
);
if
(
validationResult
.
isValid
())
{
response
.
put
(
Constants
.
MESSAGE
,
"Bulk upload success"
);
response
.
put
(
"Data"
,
validationResult
.
getSavedEntities
());
response
.
setResponseCode
(
HttpStatus
.
OK
);
}
else
{
if
(!
validationResult
.
getValidationErrors
().
isEmpty
())
{
response
.
put
(
"validationErrors"
,
validationResult
.
getValidationErrors
());
response
.
setResponseCode
(
HttpStatus
.
BAD_REQUEST
);
}
else
{
return
ResponseDto
.
setErrorResponse
(
response
,
"INTERNAL_ERROR"
,
"An unexpected error occurred."
,
HttpStatus
.
INTERNAL_SERVER_ERROR
);
}
}
return
response
;
}
catch
(
Exception
e
)
{
return
ResponseDto
.
setErrorResponse
(
response
,
"INTERNAL_ERROR"
,
"An unexpected error occurred."
,
HttpStatus
.
INTERNAL_SERVER_ERROR
);
}
}
public
ResponseDto
getResultsByInstituteAndExamCycle
(
Long
instituteId
,
Long
examCycleId
)
{
public
ResponseDto
getResultsByInstituteAndExamCycle
(
Long
instituteId
,
Long
examCycleId
)
{
...
...
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