[13028] | 1 | .. _logging_in_as_student: |
---|
| 2 | |
---|
[13084] | 3 | Impersonate Students |
---|
| 4 | ==================== |
---|
[13026] | 5 | |
---|
[13048] | 6 | Officers with |
---|
| 7 | :py:class:`LoginAsStudent<waeup.kofa.students.permissions.LoginAsStudent>` |
---|
| 8 | permission do see a 'Login as student' button on student display |
---|
| 9 | pages which redirects to a page, where a temporary student password |
---|
| 10 | can be set by clicking a 'Set password now' form button. The |
---|
| 11 | temporary password is valid for 10 minutes. During this period the |
---|
| 12 | student can't login. The officer is being redirected to a login page |
---|
| 13 | which allows to directly login as student with pre-filled temporary |
---|
| 14 | credentials. The second page is to avoid that officers must remember |
---|
| 15 | the student credentials, have to logout from their own account and |
---|
| 16 | manually login as student via the regular login page. After 10 |
---|
| 17 | minutes the officer is automatically thrown out and the student is |
---|
| 18 | able to login again (if the officer hasn't changed the password). |
---|
| 19 | Attention: When logging in as student, the officer really |
---|
| 20 | impersonates the student. All actions are logged with the student id |
---|
| 21 | and not with the officer's user id. However, start of student |
---|
| 22 | impersonation is also logged, so that officers can be identified and |
---|
| 23 | fraudulent use can be discovered. |
---|
[13026] | 24 | |
---|
[13028] | 25 | |
---|
[13084] | 26 | .. _starting_clearance: |
---|
| 27 | |
---|
| 28 | Starting Clearance |
---|
| 29 | ================== |
---|
| 30 | |
---|
[13086] | 31 | When students start the clearance process, Kofa checks if the |
---|
| 32 | passport picture has been uploaded and the email address field as |
---|
| 33 | well as the phone number field filled. If not, students can't |
---|
| 34 | proceed with clearance. |
---|
[13084] | 35 | |
---|
[13086] | 36 | |
---|
[13028] | 37 | .. _rejecting_clearance: |
---|
| 38 | |
---|
[13025] | 39 | Rejecting Clearance |
---|
| 40 | =================== |
---|
| 41 | |
---|
[13048] | 42 | When a clearance officer clicks the 'Save comment and reject |
---|
| 43 | clearance now' button, the `reject` action method of the |
---|
| 44 | :py:class:`StudentRejectClearancePage<waeup.kofa.students.browser.StudentRejectClearancePage>` |
---|
| 45 | is called. This method first checks, in which workflow state the |
---|
| 46 | student is, and fires a transition accordingly. Then the comment, |
---|
| 47 | which should explain why the request was requested, is saved twice |
---|
| 48 | in the `officer_comment` attribute of the student and in |
---|
| 49 | ``students.log``. As soon as the `clear` transition (d) is effected, |
---|
| 50 | an event handler clears the attribute again. The logfile message is |
---|
| 51 | permanent and ensures that the original cause of rejection can |
---|
| 52 | always be reconstructed. |
---|
[13028] | 53 | |
---|
[13054] | 54 | Finally, the method redirects to the `ContactStudentFormPage` and prefills |
---|
[13048] | 55 | the HTML form with the comment previously saved. The clearance |
---|
| 56 | officer can leave the comment as it is, or can modify the text to |
---|
| 57 | give more information about the reason of rejection. This comment |
---|
| 58 | will then be sent to the student by email. This comment is not saved, |
---|
| 59 | neither in the student object nor in the logfile. |
---|
[13028] | 60 | |
---|
| 61 | .. important:: |
---|
| 62 | |
---|
[13048] | 63 | All messages sent via Kofa contact forms are private. They are |
---|
| 64 | neither stored in the database nor in any logfile. The emails are |
---|
| 65 | also not forwarded to any other email address. Thus senders and |
---|
| 66 | recipients can be sure that nobody else is eavesdropping and the |
---|
| 67 | correspondence is kept secret. |
---|
[13028] | 68 | |
---|
[13046] | 69 | .. seealso:: |
---|
[13028] | 70 | |
---|
[13948] | 71 | :ref:`Clearance Handling Tests <test_handle_clearance>` |
---|
[13046] | 72 | |
---|
| 73 | |
---|
[13028] | 74 | .. _transferring_students: |
---|
| 75 | |
---|
[13040] | 76 | Student Transfer |
---|
| 77 | ================ |
---|
[13025] | 78 | |
---|
[13048] | 79 | Transferring a student means enabling the student to study another |
---|
| 80 | programme. |
---|
[13028] | 81 | |
---|
[13048] | 82 | The simple but dirty way is to select another certificate and adjust |
---|
| 83 | study course attributes accordingly. Existing study levels can be |
---|
| 84 | either removed or, in case registered courses can be credited, left |
---|
| 85 | as they are. This simple way is tedious and also dangerous, because |
---|
| 86 | changes are not tracable. Only the logfile can tell us, that an |
---|
| 87 | officer has edited the student's data. The data of the previous |
---|
| 88 | study course are not backed up. They are lost. |
---|
[13028] | 89 | |
---|
[13048] | 90 | Kofa provides a more adequate, cleaner and tracable way of |
---|
| 91 | transferring students. It can make a backup of the entire study |
---|
| 92 | course container and create a new and empty container for the new |
---|
| 93 | study programme with only one click or even by batch processing. |
---|
[13028] | 94 | |
---|
[13048] | 95 | After clicking the 'Transfer student' button the |
---|
| 96 | `StudentTransferFormPage` opens and asks for the new certificate, |
---|
| 97 | current session, current level and current verdict. After submitting |
---|
| 98 | this form, the student transfer method checks if the old study |
---|
| 99 | course is complete and ready for transfer. It also checks if the |
---|
| 100 | number of possible transfers is not exceeded. Kofa allows two (2) |
---|
| 101 | transfers! Finally the copying process is started and history and |
---|
| 102 | logfile messages are added. |
---|
[13028] | 103 | |
---|
[13048] | 104 | The old study course container(s) can still be accessed via links on |
---|
[13054] | 105 | the current study course display form page. But, they can neither be |
---|
[13048] | 106 | edited, removed, exported or reimported. |
---|
[13028] | 107 | |
---|
[13046] | 108 | |
---|
[13028] | 109 | Batch Transferring Students |
---|
| 110 | --------------------------- |
---|
| 111 | |
---|
[13048] | 112 | Sometimes students of an entire study programme have to be |
---|
| 113 | transferred to another programme. This can be done with the |
---|
[14657] | 114 | :ref:`student_study_course_processor`. The import file must contain |
---|
| 115 | the following columns: `student_id` (or any other locator), |
---|
| 116 | `certificate`, `current_session`, `current_level` and `entry_mode`. |
---|
| 117 | Do not import `entry_session`. A transfer is automatically |
---|
| 118 | initialized if the `entry_mode` value is ``transfer``. |
---|
[13028] | 119 | |
---|
[13046] | 120 | |
---|
[13040] | 121 | Reverting Previous Transfers |
---|
| 122 | ---------------------------- |
---|
[13028] | 123 | |
---|
[13048] | 124 | Previous transfers can be reverted by opening the previous study |
---|
| 125 | course and clicking the 'Reactivate this study course (revert |
---|
| 126 | previous transfer)' button. This is a complete rollback of the last |
---|
| 127 | transfer. The current study mode will be irrevocably deleted and |
---|
| 128 | replaced by the previous study course. The second last study course |
---|
| 129 | will become the previous study course. |
---|
[13028] | 130 | |
---|
[13046] | 131 | |
---|
[13099] | 132 | .. _student_payment_tickets: |
---|
[13028] | 133 | |
---|
[13045] | 134 | Payments |
---|
| 135 | ======== |
---|
[13025] | 136 | |
---|
[13048] | 137 | The `PaymentsManageFormPage` is used by both students and students |
---|
| 138 | officers. The page tabulates existing payment tickets and allows to |
---|
| 139 | add or remove tickets. Officers can remove all payment tickets, |
---|
| 140 | students only those without a response code (`r_code`). Attention: |
---|
| 141 | Students can remove tickets without response code even if they have |
---|
| 142 | been marked paid. |
---|
[13025] | 143 | |
---|
[13048] | 144 | There are three different add form pages to add |
---|
| 145 | `StudentOnlinePayment` instances (= payment tickets). They all |
---|
| 146 | create objects of the same type, only their attributes are set |
---|
| 147 | differently. |
---|
[13040] | 148 | |
---|
[13046] | 149 | |
---|
[13040] | 150 | Current Session Payment Tickets |
---|
| 151 | ------------------------------- |
---|
| 152 | |
---|
[13048] | 153 | Current session payments are the regular payments which have to be |
---|
| 154 | made in each session to proceed to the next registration step. The |
---|
| 155 | add form provides a select box of available payment categories |
---|
| 156 | (`p_category`). After submitting the form, Kofa determines the total |
---|
| 157 | amount and sets attributes like payment item (`p_item`), payment |
---|
| 158 | session (`p_session`) and payment level (`p_level`) automatically. |
---|
| 159 | The Boolean `p_current` attribute is set ``True``. The creation |
---|
| 160 | datetime is stored in the `creation_date` attribute and is also used |
---|
| 161 | to construct the unique payment id (`p_id`). |
---|
[13040] | 162 | |
---|
| 163 | .. note:: |
---|
| 164 | |
---|
[13048] | 165 | Kofa always determines the total amount, including any fees charged |
---|
| 166 | by the school and its service providers. This is the amount which is |
---|
| 167 | authorized by students and finally submitted to one of the payment |
---|
| 168 | gateways. No fees can be added once the payment ticket is created. |
---|
| 169 | Payment tickets do not store any information about charged fees. |
---|
[13040] | 170 | |
---|
[13046] | 171 | |
---|
[13047] | 172 | Payment Ticket Redemption |
---|
| 173 | ------------------------- |
---|
[13041] | 174 | |
---|
[13048] | 175 | Directly after a student payment ticket has been paid - either by |
---|
| 176 | approval by an officer or by receiving a positive response from a |
---|
| 177 | payment gateway - the |
---|
| 178 | :py:meth:`redeemTicket<waeup.kofa.students.payments.StudentOnlinePayment.redeemTicket>` |
---|
| 179 | method is called. Depending on the category of the payment, an |
---|
| 180 | appropriate access or activation code is beeing created for the |
---|
| 181 | owner of the ticket. This code must be entered on certain form pages |
---|
| 182 | to activate the paid service or to access the next stage of the |
---|
| 183 | registration process. In other words, making a payment and redeeming |
---|
| 184 | a payment are two different steps. Successful payments do not |
---|
| 185 | automatically trigger any action in the portal but create a specifc |
---|
| 186 | access code which can be used to trigger access-code-related actions |
---|
| 187 | (see :ref:`accesscodes`). |
---|
[13041] | 188 | |
---|
[13048] | 189 | Until May 2015 also school fee payments had produced access codes, |
---|
| 190 | which enabled students to start the next session. Since software |
---|
| 191 | revision 12889, Kofa bypasses SFE access code creation and starts |
---|
| 192 | the next session automatically. |
---|
[13041] | 193 | |
---|
[13046] | 194 | |
---|
[13040] | 195 | Previous Session Payment Tickets |
---|
| 196 | -------------------------------- |
---|
| 197 | |
---|
[13048] | 198 | Previous session payments are additional payments which do not |
---|
| 199 | induce further actions in Kofa. Their sole purpose is to enable |
---|
| 200 | students to pay for services in previous sessions which they missed |
---|
| 201 | to pay. The add form for previous session payments allows the |
---|
| 202 | student to select the payment category, session and level by |
---|
| 203 | him/herself. |
---|
[13040] | 204 | |
---|
[13046] | 205 | |
---|
[13040] | 206 | Balance Payment Tickets |
---|
| 207 | ----------------------- |
---|
| 208 | |
---|
[13048] | 209 | Balance payments have been introduced to correct previously made |
---|
| 210 | payments. In some cases, students select the wrong payment category, |
---|
| 211 | or other things may have happened which led students pay less than |
---|
| 212 | expected. This can be balanced by paying a differential amount. |
---|
| 213 | Therefore, the add form for balance payments allows to freely choose |
---|
| 214 | the total amount to be paid. It also asks for the category, the |
---|
| 215 | session and the level the payment is meant for. Like previous |
---|
| 216 | session payments, balance payments do not induce further actions in |
---|
| 217 | Kofa. Both can be omitted in customized versions of Kofa if these |
---|
| 218 | features are not needed. |
---|
[13040] | 219 | |
---|
[13046] | 220 | .. _course_registration: |
---|
| 221 | |
---|
[13045] | 222 | Course Registration |
---|
| 223 | =================== |
---|
| 224 | |
---|
[13048] | 225 | Study levels are pre-filled with course tickets. When adding a study |
---|
| 226 | level, |
---|
| 227 | :py:meth:`StudentStudyCourse.addStudentStudyLevel<waeup.kofa.students.studycourse.StudentStudyCourse.addStudentStudyLevel>` |
---|
| 228 | automatically adds course tickets in two steps: |
---|
[13045] | 229 | |
---|
[13048] | 230 | 1. :py:meth:`StudentStudyLevel.addCertCourseTickets<waeup.kofa.students.studylevel.StudentStudyLevel.addCertCourseTickets>` |
---|
| 231 | is called which iterates over the certificate courses of the |
---|
| 232 | certificate container object in the academic section and creates |
---|
| 233 | course tickets if the `level` attribute matches. `title`, `fcode`, |
---|
| 234 | `dcode`, `credits`, `passmark` and `semester` are copied from the |
---|
| 235 | course object which is attached to the certificate course; |
---|
[14654] | 236 | `mandatory` and `course_category` are taken from the certificate |
---|
| 237 | course itself. Finally, `automatic` is set to ``True`` and |
---|
| 238 | `carry_over` to ``False.`` |
---|
[13045] | 239 | |
---|
[14574] | 240 | 2. The portal can be configured |
---|
| 241 | (`IConfigurationContainer.carry_over`) such that failed courses |
---|
| 242 | are automatically carried over from one session to the next. |
---|
| 243 | Failed course tickets from the previous level, i.e. tickets |
---|
| 244 | with a score below the passmark, are collected and 'copied' |
---|
| 245 | into the current study level container. The attributes |
---|
| 246 | `automatic` and `carry_over` are set to ``True``. |
---|
[13045] | 247 | |
---|
[13048] | 248 | In most cases such an automatically created course list is not |
---|
| 249 | perfect or even ready for submission to the course adviser. The list |
---|
| 250 | must be edited according to the student's needs. Students can select |
---|
| 251 | further courses, which they desire to attend, and can create |
---|
[14574] | 252 | additional course tickets, as long as the total number of credits of |
---|
[14656] | 253 | non-outstanding courses (`outstanding` attribute is ``True``) do |
---|
[14574] | 254 | not exceed 50 (value customizable). That means outstanding courses |
---|
| 255 | are not considered as registered courses. Usually they are being |
---|
| 256 | added by officers. |
---|
| 257 | |
---|
| 258 | Course tickets can also be removed. Whereas officers can remove any |
---|
| 259 | ticket from the list, students can remove only optional |
---|
| 260 | (non-mandatory) course tickets (condition customizable). |
---|
| 261 | |
---|
[14684] | 262 | The edit form page provides two additional buttons. 'Update all |
---|
| 263 | tickets' ignores the select boxes and checks all course ticket at |
---|
| 264 | that level. It looks up the associated course object for each ticket |
---|
| 265 | and updates the ticket's course parameters (including course title) |
---|
| 266 | if needed. Attention: If a course was removed, the associated |
---|
| 267 | course ticket will be invalidated by adding '(course cancelled)' to |
---|
| 268 | the title and setting the credits to zero. The 'Register course |
---|
| 269 | list' button submits the course list to the course adviser for |
---|
| 270 | validation. If the course registration deadline |
---|
[13052] | 271 | (`ISessionConfiguration.coursereg_deadline`) is set and the |
---|
| 272 | registration period has expired, a late registration fee |
---|
[13053] | 273 | (`ISessionConfiguration.late_registration_fee`) is charged. This |
---|
[13052] | 274 | payment has to be made first, otherwise a warning message appears in |
---|
| 275 | the browser. |
---|
[13045] | 276 | |
---|
[13052] | 277 | Course advisers can't edit the registered/submitted course list, but |
---|
| 278 | they can validate or reject it by pressing the same-named link |
---|
| 279 | buttons. After pressing the 'Reject courses' button, Kofa redirects |
---|
[14574] | 280 | to the `ContactStudentFormPage` which can be used to inform the |
---|
| 281 | student about the reason of rejection. In contrast to clearance |
---|
| 282 | rejection, the message, which is being sent to the student by email, |
---|
| 283 | is neither stored in the database nor in the logfiles. |
---|
[13052] | 284 | |
---|
[13046] | 285 | .. seealso:: |
---|
[13045] | 286 | |
---|
[13948] | 287 | :ref:`Course List Validation Tests <test_handle_courses>` |
---|
[13046] | 288 | |
---|
| 289 | |
---|
| 290 | .. _batch_editing_scores: |
---|
| 291 | |
---|
| 292 | Batch Editing Scores by Lecturers |
---|
| 293 | ================================= |
---|
| 294 | |
---|
[13048] | 295 | Lecturers cannot access student records directly. They don't have |
---|
[13948] | 296 | access to the students section. Instead, lecturers go to their |
---|
| 297 | course in the academic section and click the 'Update scores' button |
---|
| 298 | which opens the `EditScoresPage` if score editing is enabled for |
---|
| 299 | that department (`IDepartment.score_editing_disabled`) and |
---|
[13048] | 300 | `IConfigurationContainer.current_academic_session` has been set on |
---|
| 301 | the portal's configuration page. The `EditScoresPage` lists all |
---|
| 302 | students, who are attending the course in the current academic |
---|
| 303 | session. Score editing is allowed if the student's current session |
---|
| 304 | corresponds with the current academic session and the student is in |
---|
| 305 | state 'courses validated', see method |
---|
| 306 | :py:meth:`CourseTicket.editable_by_lecturer<waeup.kofa.students.studylevel.CourseTicket.editable_by_lecturer>`. |
---|
[13046] | 307 | |
---|
[14574] | 308 | There are two options to edit course results. (1) Scores in course |
---|
| 309 | tickets can be changed by editing its values in the table and |
---|
| 310 | pressing the 'Update scores from table' button below. Scores can be |
---|
| 311 | cleared by removing the respective values. Lecturers have to be |
---|
| 312 | online during this process.(2) Alternatively, lecturers can download |
---|
| 313 | a csv file, edit scores in this csv file offline and upload the same |
---|
| 314 | file when they are online again. This procedure is explained in |
---|
| 315 | step-by-step instructions which show up when pressing the yellow |
---|
| 316 | 'Help' button: |
---|
[13948] | 317 | |
---|
| 318 | .. admonition:: Help |
---|
| 319 | |
---|
| 320 | **Step-by-step instructions** |
---|
| 321 | |
---|
| 322 | 1. Download csv file. |
---|
[14574] | 323 | 2. Open csv file in a text editor or in a spreadsheet programme |
---|
| 324 | (Excel or Calc). |
---|
| 325 | 3. Edit course results only. Do not modify other entries. |
---|
| 326 | Do not remove or add columns. Do not add rows. |
---|
| 327 | 4. Save file in same format (csv). Do not switch to any other |
---|
| 328 | format (xls, xlsx or ods). |
---|
| 329 | 5. Select same file for upload and press the blue 'Update ...' |
---|
| 330 | button. |
---|
| 331 | 6. The values in the table will be updated. Spot-check if the |
---|
| 332 | values in the table correspond with the values in your file. |
---|
[13948] | 333 | |
---|
[14574] | 334 | Note: Only course results of students which are in state |
---|
| 335 | 'courses validated' and in current academic session can be modified. |
---|
| 336 | Additional data will just be ignored. |
---|
[13948] | 337 | |
---|
[13046] | 338 | .. seealso:: |
---|
| 339 | |
---|
[13948] | 340 | :ref:`Batch Editing Scores Tests <test_batch_editing_scores>` |
---|
[13046] | 341 | |
---|
| 342 | |
---|
[13047] | 343 | .. _bed_tickets: |
---|
[13046] | 344 | |
---|
[13047] | 345 | Bed Tickets |
---|
| 346 | =========== |
---|
[13045] | 347 | |
---|
[13170] | 348 | .. _bed_allocation: |
---|
[13168] | 349 | |
---|
[13170] | 350 | Bed Allocation |
---|
| 351 | -------------- |
---|
| 352 | |
---|
[13047] | 353 | Students can obtain a bed ticket if a series of conditions is met: |
---|
[13046] | 354 | |
---|
[13048] | 355 | - The current date must be inside the booking period (between |
---|
| 356 | `IHostelsContainer.startdate` and `IHostelsContainer.enddate`). |
---|
[13046] | 357 | |
---|
[13048] | 358 | - The student's current session must match the accommodation session |
---|
| 359 | (`IHostelsContainer.accommodation_session`). |
---|
[13040] | 360 | |
---|
[13047] | 361 | - A bed ticket for the same accommodation session does not exist. |
---|
| 362 | |
---|
[13048] | 363 | - The student must be in the correct workflow state |
---|
| 364 | (`IHostelsContainer.accommodation_states`). |
---|
[13047] | 365 | |
---|
| 366 | - A bed type, which fits to the student, can be determined. |
---|
| 367 | |
---|
| 368 | - A bed of that type is available. |
---|
| 369 | |
---|
| 370 | - The HOS activation code is not yet used. |
---|
| 371 | |
---|
| 372 | - The student is the owner of the activation code. |
---|
| 373 | |
---|
[13048] | 374 | The customizable utility method |
---|
| 375 | :py:meth:`getAccommodationDetails<waeup.kofa.students.utils.StudentsUtils.getAccommodationDetails>` |
---|
| 376 | composes a bed type string. Three criteria are checked: Is the |
---|
| 377 | student a new, a returning or a final year student? Is the student |
---|
| 378 | female or male? Has the student to be accommodated in a special |
---|
| 379 | hostel (`IHostel.special_handling`)? The resulting bed type string |
---|
| 380 | contains these information. Example: ``regular_female_fr`` means |
---|
| 381 | that a bed for a new female student in a regular hostel is wanted. |
---|
| 382 | If the student record allows to determine such a bed string, Kofa |
---|
| 383 | starts searching a proper bed space. |
---|
[13047] | 384 | |
---|
[13048] | 385 | Before Kofa searches for a free bed space, which meets the bed type |
---|
| 386 | criteria above, it checks if a bed space has already been allocated |
---|
| 387 | manually to the student. If so, then this bed is used, no matter |
---|
| 388 | whether the bed meets the criteria or not. (Theoretically, a male |
---|
| 389 | student can be accommodated in a hostel which is reserved for female |
---|
| 390 | students.) If no manually allocated bed space is found, Kofa |
---|
| 391 | searches for the right space. If bed booking is subject to a charge, |
---|
| 392 | Kofa also checks, if the student has entered a valid activation code, |
---|
| 393 | before delivering the bed coordinates to the student. |
---|
[13047] | 394 | |
---|
| 395 | |
---|
[13170] | 396 | .. _student_relocation: |
---|
[13040] | 397 | |
---|
[13170] | 398 | Student Relocation |
---|
| 399 | ------------------ |
---|
| 400 | |
---|
[14574] | 401 | Officers with `ManageHostels` permission do see a 'Relocate student' |
---|
| 402 | link button which calls the `BedTicketRelocationView`. This view |
---|
| 403 | relocates the student if student parameters or the bed type of the |
---|
| 404 | bed have changed. The `update` method of this view calls the |
---|
[14657] | 405 | :py:meth:`BedTicket.relocateStudent<waeup.kofa.students.accommodation.BedTicket.relocateStudent>` |
---|
| 406 | method which checks first, if the student has a 'reserved' bed |
---|
[14574] | 407 | space. Students in reserved beds are never subject to relocation. It |
---|
| 408 | checks secondly, if booking has been cancelled in the accommodation |
---|
| 409 | section but other bed space has been manually allocated after |
---|
| 410 | cancellation. Then this bed is used, no matter whether the bed meets |
---|
| 411 | the bed type criteria or not. If both checks are negative, Kofa |
---|
| 412 | searches for a free bed space, which meets the student's bed type |
---|
| 413 | criteria. Only if it finds a new and free bed space, it starts the |
---|
[13455] | 414 | relocation process by releasing the old bed, booking the new bed and |
---|
| 415 | designating the new bed in the bed ticket. |
---|
[13025] | 416 | |
---|
[13047] | 417 | .. seealso:: |
---|
[13025] | 418 | |
---|
[13948] | 419 | :ref:`Bed Space Booking Tests <test_handle_accommodation>` |
---|