forked from CSI-KJSCE/appointment_to_examiner
Email css, faculty consolidated-table
This commit is contained in:
@@ -23,7 +23,9 @@ router.get("/consolidated-table", async (req, res) => {
|
||||
courseName: appointment.courseName,
|
||||
semester: "",
|
||||
examType: "",
|
||||
year: "",
|
||||
academicYear: appointment.academicYear, // Added from appointment
|
||||
examPeriod: appointment.examPeriod, // Added from appointment
|
||||
program: "",
|
||||
marks: "100+25", // Dummy value, replace with actual logic
|
||||
affiliation: "KJSCE", // Replace with actual value
|
||||
qualification: "M.E.", // Replace with actual value
|
||||
@@ -40,7 +42,7 @@ router.get("/consolidated-table", async (req, res) => {
|
||||
if (course) {
|
||||
data.semester = course.semester;
|
||||
data.examType = course.scheme;
|
||||
data.year = course.program;
|
||||
data.program = course.program;
|
||||
}
|
||||
});
|
||||
|
||||
@@ -51,7 +53,9 @@ router.get("/consolidated-table", async (req, res) => {
|
||||
courseCode: data.courseId,
|
||||
courseName: data.courseName,
|
||||
examType: data.examType,
|
||||
year: data.year,
|
||||
academicYear: data.academicYear,
|
||||
examPeriod : data.examPeriod,
|
||||
program : data.program,
|
||||
marks: data.marks,
|
||||
Name: data.facultyName,
|
||||
affiliation: data.affiliation,
|
||||
|
||||
Reference in New Issue
Block a user