[12856] | 1 | ## $Id: export.py 12084 2014-11-28 09:54:10Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2015 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 | """Exporters for student related stuff. |
---|
| 19 | """ |
---|
| 20 | from waeup.uniben.students.interfaces import ( |
---|
| 21 | ICustomStudent, |
---|
| 22 | ICustomStudentStudyCourse, |
---|
| 23 | ICustomStudentStudyLevel, |
---|
| 24 | ICustomCourseTicket, |
---|
| 25 | ICustomStudentOnlinePayment) |
---|
| 26 | from kofacustom.nigeria.students.export import ( |
---|
| 27 | NigeriaStudentExporter, |
---|
| 28 | NigeriaStudentStudyCourseExporter, |
---|
| 29 | NigeriaStudentStudyLevelExporter, |
---|
| 30 | NigeriaCourseTicketExporter, |
---|
[12879] | 31 | NigeriaStudentPaymentExporter) |
---|
[12856] | 32 | from waeup.kofa.utils.helpers import iface_names |
---|
| 33 | |
---|
| 34 | class CustomStudentExporter(NigeriaStudentExporter): |
---|
| 35 | """Exporter for Students. |
---|
| 36 | """ |
---|
| 37 | |
---|
| 38 | fields = tuple(sorted(iface_names( |
---|
| 39 | ICustomStudent, omit=['loggerInfo']))) + ( |
---|
| 40 | 'password', 'state', 'history', 'certcode', 'is_postgrad', |
---|
| 41 | 'current_level', 'current_session') |
---|
| 42 | |
---|
| 43 | class CustomStudentStudyCourseExporter(NigeriaStudentStudyCourseExporter): |
---|
| 44 | """Exporter for StudentStudyCourses. |
---|
| 45 | """ |
---|
| 46 | |
---|
| 47 | fields = tuple( |
---|
| 48 | sorted(iface_names(ICustomStudentStudyCourse))) + ('student_id',) |
---|
| 49 | |
---|
| 50 | class CustomStudentStudyLevelExporter(NigeriaStudentStudyLevelExporter): |
---|
| 51 | """Exporter for StudentStudyLevels. |
---|
| 52 | """ |
---|
| 53 | #: Fieldnames considered by this exporter |
---|
| 54 | fields = tuple(sorted(iface_names( |
---|
[12879] | 55 | ICustomStudentStudyLevel))) + ( |
---|
[12856] | 56 | 'student_id', 'number_of_tickets','certcode') |
---|
| 57 | |
---|
| 58 | class CustomCourseTicketExporter(NigeriaCourseTicketExporter): |
---|
| 59 | """Exporter for CourseTickets. |
---|
| 60 | """ |
---|
| 61 | |
---|
| 62 | fields = tuple(sorted(iface_names(ICustomCourseTicket) + |
---|
| 63 | ['level', 'code', 'level_session'])) + ('student_id', |
---|
| 64 | 'certcode', 'display_fullname') |
---|
| 65 | |
---|
[12879] | 66 | class CustomStudentPaymentExporter(NigeriaStudentPaymentExporter): |
---|
[12856] | 67 | """Exporter for OnlinePayment instances. |
---|
| 68 | """ |
---|
| 69 | |
---|
| 70 | fields = tuple( |
---|
| 71 | sorted(iface_names( |
---|
| 72 | ICustomStudentOnlinePayment, exclude_attribs=False, |
---|
[13621] | 73 | omit=['display_item']))) + ( |
---|
[12856] | 74 | 'student_id','state','current_session') |
---|
| 75 | |
---|