[11543] | 1 | ## $Id: export.py 12234 2014-12-14 21:48:41Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 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 | """ |
---|
[11832] | 20 | from kofacustom.pcn.students.interfaces import ( |
---|
[11545] | 21 | ICustomStudent, |
---|
| 22 | ICustomStudentStudyCourse, |
---|
| 23 | ICustomStudentStudyLevel, |
---|
| 24 | ICustomCourseTicket, |
---|
[11543] | 25 | ICustomStudentOnlinePayment) |
---|
[11687] | 26 | from waeup.kofa.students.export import ( |
---|
[12234] | 27 | StudentExporter, |
---|
[11687] | 28 | StudentStudyCourseExporter, |
---|
| 29 | StudentStudyLevelExporter, |
---|
| 30 | CourseTicketExporter, |
---|
| 31 | StudentPaymentsExporter) |
---|
[11543] | 32 | from waeup.kofa.utils.helpers import iface_names |
---|
| 33 | |
---|
[12234] | 34 | class CustomStudentExporter(StudentExporter): |
---|
[11543] | 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 | |
---|
[11687] | 43 | class CustomStudentStudyCourseExporter(StudentStudyCourseExporter): |
---|
[11543] | 44 | """Exporter for StudentStudyCourses. |
---|
| 45 | """ |
---|
| 46 | |
---|
| 47 | fields = tuple( |
---|
| 48 | sorted(iface_names(ICustomStudentStudyCourse))) + ('student_id',) |
---|
| 49 | |
---|
[11687] | 50 | class CustomStudentStudyLevelExporter(StudentStudyLevelExporter): |
---|
[11545] | 51 | """Exporter for StudentStudyLevels. |
---|
| 52 | """ |
---|
| 53 | #: Fieldnames considered by this exporter |
---|
| 54 | fields = tuple(sorted(iface_names( |
---|
| 55 | ICustomStudentStudyLevel) + ['level'])) + ( |
---|
| 56 | 'student_id', 'number_of_tickets','certcode') |
---|
| 57 | |
---|
[11687] | 58 | class CustomCourseTicketExporter(CourseTicketExporter): |
---|
[11543] | 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 | |
---|
[11687] | 66 | class CustomStudentPaymentsExporter(StudentPaymentsExporter): |
---|
[11543] | 67 | """Exporter for OnlinePayment instances. |
---|
| 68 | """ |
---|
| 69 | |
---|
| 70 | fields = tuple( |
---|
| 71 | sorted(iface_names( |
---|
| 72 | ICustomStudentOnlinePayment, exclude_attribs=False, |
---|
| 73 | omit=['display_item']))) + ( |
---|
| 74 | 'student_id','state','current_session') |
---|
| 75 | |
---|