|
39 | 39 | import org.unitime.timetable.model.InstructorCourseRequirement;
|
40 | 40 | import org.unitime.timetable.model.InstructorCourseRequirementNote;
|
41 | 41 | import org.unitime.timetable.model.InstructorCourseRequirementType;
|
| 42 | +import org.unitime.timetable.model.InstructorSurvey; |
42 | 43 | import org.unitime.timetable.model.Preference;
|
43 | 44 | import org.unitime.timetable.model.TimePatternModel;
|
44 | 45 | import org.unitime.timetable.model.TimePref;
|
45 | 46 | import org.unitime.timetable.model.dao.InstructionalOfferingDAO;
|
46 | 47 | import org.unitime.timetable.model.dao.InstructorCourseRequirementTypeDAO;
|
| 48 | +import org.unitime.timetable.model.dao.InstructorSurveyDAO; |
47 | 49 | import org.unitime.timetable.security.SessionContext;
|
48 | 50 | import org.unitime.timetable.security.rights.Right;
|
49 | 51 | import org.unitime.timetable.webutil.RequiredTimeTable;
|
@@ -73,11 +75,11 @@ public InstructorRequirementData execute(InstructorRequirementsRequest request,
|
73 | 75 | }
|
74 | 76 |
|
75 | 77 |
|
| 78 | + String instructorNameFormat = context.getUser().getProperty(UserProperty.NameFormat); |
| 79 | + boolean timeVertical = false;//RequiredTimeTable.getTimeGridVertical(context.getUser()); |
| 80 | + boolean gridAsText = false;//RequiredTimeTable.getTimeGridAsText(context.getUser()); |
76 | 81 | List<InstructorCourseRequirement> requirements = InstructorCourseRequirement.getRequirementsForOffering(io);
|
77 | 82 | if (!requirements.isEmpty()) {
|
78 |
| - String instructorNameFormat = context.getUser().getProperty(UserProperty.NameFormat); |
79 |
| - boolean timeVertical = false;//RequiredTimeTable.getTimeGridVertical(context.getUser()); |
80 |
| - boolean gridAsText = false;//RequiredTimeTable.getTimeGridAsText(context.getUser()); |
81 | 83 | for (InstructorCourseRequirement req: new TreeSet<InstructorCourseRequirement>(requirements)) {
|
82 | 84 | DepartmentalInstructor di = req.getInstructorSurvey().getInstructor(io);
|
83 | 85 | CourseRequirement line = new CourseRequirement();
|
@@ -124,6 +126,60 @@ public InstructorRequirementData execute(InstructorRequirementsRequest request,
|
124 | 126 | response.addInstructorRequirement(line);
|
125 | 127 | }
|
126 | 128 | }
|
| 129 | + |
| 130 | + List<InstructorSurvey> surveys = InstructorSurveyDAO.getInstance().getSession().createQuery( |
| 131 | + "select s from InstructorSurvey s where s.submitted is not null and s.externalUniqueId in " + |
| 132 | + "(select ci.instructor.externalUniqueId from ClassInstructor ci where ci.classInstructing.schedulingSubpart.instrOfferingConfig.instructionalOffering.uniqueId = :offeringId and ci.instructor.externalUniqueId is not null)" + |
| 133 | + " and s.session.uniqueId = :sessionId and (s.preferences is not empty or length(s.note) > 0)", InstructorSurvey.class) |
| 134 | + .setParameter("sessionId", io.getSessionId()).setParameter("offeringId", io.getUniqueId()).setCacheable(true).list(); |
| 135 | + survey: for (InstructorSurvey survey: surveys) { |
| 136 | + if (response.hasInstructorRequirements()) |
| 137 | + for (CourseRequirement line: response.getInstructorRequirements()) { |
| 138 | + if (survey.getExternalUniqueId().equals(line.getExternalId())) continue survey; |
| 139 | + } |
| 140 | + DepartmentalInstructor di = survey.getInstructor(io); |
| 141 | + CourseRequirement line = new CourseRequirement(); |
| 142 | + line.setExternalId(survey.getExternalUniqueId()); |
| 143 | + if (di != null) |
| 144 | + line.setInstructorId(di.getUniqueId()); |
| 145 | + line.setInstructorName(survey.getExternalUniqueId()); |
| 146 | + if (di != null) |
| 147 | + line.setInstructorName(di.getName(instructorNameFormat)); |
| 148 | + |
| 149 | + line.setCourseName(io.getControllingCourseOffering().getCourseName()); |
| 150 | + line.setId(io.getControllingCourseOffering().getUniqueId()); |
| 151 | + line.setCourseTitle(io.getControllingCourseOffering().getTitle()); |
| 152 | + |
| 153 | + line.setNote(survey.getNote()); |
| 154 | + |
| 155 | + for (Preference p: survey.getPreferences()) { |
| 156 | + if (p instanceof TimePref) { |
| 157 | + TimePref tp = (TimePref)p; |
| 158 | + RequiredTimeTable rtt = tp.getRequiredTimeTable(); |
| 159 | + if (gridAsText) { |
| 160 | + line.setTimeHtml(rtt.getModel().toString().replaceAll(", ","\n")); |
| 161 | + } else { |
| 162 | + ((TimePatternModel)rtt.getModel()).setMode("|" + propertyValue(io.getDepartment(), ApplicationProperty.InstructorSurveyTimePreferencesDept, ApplicationProperty.InstructorSurveyTimePreferences)); |
| 163 | + line.setTimeHtml("<img border='0' " + |
| 164 | + "onmouseover=\"showGwtInstructorAvailabilityHint(this, 'IS#" + survey.getUniqueId() + |
| 165 | + "#" + io.getDepartment().getDeptCode() + "');\" onmouseout=\"hideGwtInstructorAvailabilityHint();\" " + |
| 166 | + "src='pattern?v=" + (timeVertical ? 1 : 0) + "&d=" + io.getDepartment().getUniqueId() + "&p=" + rtt.getModel().getPreferences() + "' title='"+rtt.getModel().toString()+"' > " |
| 167 | + ); |
| 168 | + } |
| 169 | + //line.setTime(rtt.getModel().toString()); |
| 170 | + } else if (p instanceof DistributionPref) { |
| 171 | + if (((DistributionPref)p).getDistributionType().effectiveSurvey()) { |
| 172 | + line.addDist(p.preferenceText(instructorNameFormat)); |
| 173 | + line.addDistHtml(p.preferenceHtml(instructorNameFormat)); |
| 174 | + } |
| 175 | + } else { |
| 176 | + line.addRoom(p.preferenceText(instructorNameFormat)); |
| 177 | + line.addRoomHtml(p.preferenceHtml(instructorNameFormat)); |
| 178 | + } |
| 179 | + } |
| 180 | + response.addInstructorRequirement(line); |
| 181 | + } |
| 182 | + |
127 | 183 | return response;
|
128 | 184 | }
|
129 | 185 |
|
|
0 commit comments