[16639] | 1 | ## $Id: batching.py 17406 2023-05-09 15:19:08Z henrik $ |
---|
[15614] | 2 | ## |
---|
| 3 | ## Copyright (C) 2012 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | """Batch processing components for student objects. |
---|
| 19 | """ |
---|
| 20 | from kofacustom.nigeria.students.batching import NigeriaStudentProcessor |
---|
[17346] | 21 | from waeup.kofa.students.batching import ( |
---|
| 22 | StudentOnlinePaymentProcessor, |
---|
| 23 | CourseTicketProcessor) |
---|
[16615] | 24 | from kofacustom.edocons.students.interfaces import ( |
---|
[15614] | 25 | ICustomStudent, |
---|
| 26 | ICustomStudentUpdateByRegNo, |
---|
| 27 | ICustomStudentUpdateByMatricNo, |
---|
[17346] | 28 | ICustomStudentOnlinePayment, |
---|
| 29 | ICustomCourseTicketImport |
---|
[15614] | 30 | ) |
---|
| 31 | |
---|
| 32 | class CustomStudentProcessor(NigeriaStudentProcessor): |
---|
| 33 | """A batch processor for ICustomStudent objects. |
---|
| 34 | """ |
---|
| 35 | iface = ICustomStudent |
---|
| 36 | iface_byregnumber = ICustomStudentUpdateByRegNo |
---|
| 37 | iface_bymatricnumber = ICustomStudentUpdateByMatricNo |
---|
| 38 | |
---|
| 39 | class CustomStudentOnlinePaymentProcessor(StudentOnlinePaymentProcessor): |
---|
| 40 | """A batch processor for ICustomStudentOnlinePayment objects. |
---|
| 41 | """ |
---|
| 42 | iface = ICustomStudentOnlinePayment |
---|
[17346] | 43 | |
---|
| 44 | class CustomCourseTicketProcessor(CourseTicketProcessor): |
---|
| 45 | """A batch processor for ICourseTicket objects. |
---|
| 46 | """ |
---|
| 47 | iface = ICustomCourseTicketImport |
---|
| 48 | |
---|
| 49 | @property |
---|
| 50 | def available_fields(self): |
---|
| 51 | fields = [ |
---|
| 52 | 'student_id','reg_number','matric_number', |
---|
| 53 | 'mandatory', 'score', 'carry_over', 'automatic', |
---|
| 54 | 'outstanding', 'course_category', 'level_session', |
---|
| 55 | 'title', 'credits', 'passmark', 'semester', 'ticket_session', |
---|
[17363] | 56 | 'unlock_score', 'previous', 'carryover_score', 'in_progress', |
---|
[17406] | 57 | 'resumption_date', 'carryover_grade', 'attempts' |
---|
[17346] | 58 | ] + self.additional_fields |
---|
| 59 | return sorted(fields) |
---|