source: main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/students/export.py @ 17927

Last change on this file since 17927 was 15061, checked in by Henrik Bettermann, 6 years ago

Adjust CustomSessionPaymentsOverviewExporter?.

  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
1## $Id: export.py 15061 2018-06-25 09:50:26Z 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"""
20from kofacustom.edopoly.students.interfaces import (
21    ICustomStudent,
22    ICustomStudentStudyCourse,
23    ICustomStudentStudyLevel,
24    ICustomCourseTicket,
25    ICustomStudentOnlinePayment)
26from kofacustom.nigeria.students.export import (
27    NigeriaStudentExporter,
28    NigeriaStudentStudyCourseExporter,
29    NigeriaStudentStudyLevelExporter,
30    NigeriaCourseTicketExporter,
31    NigeriaStudentPaymentExporter)
32from waeup.kofa.students.export import SessionPaymentsOverviewExporter
33from waeup.kofa.utils.helpers import iface_names
34
35class CustomStudentExporter(NigeriaStudentExporter):
36    """Exporter for Students.
37    """
38
39    fields = tuple(sorted(iface_names(
40        ICustomStudent, omit=['loggerInfo']))) + (
41        'password', 'state', 'history', 'certcode', 'is_postgrad',
42        'current_level', 'current_session')
43
44class CustomStudentStudyCourseExporter(NigeriaStudentStudyCourseExporter):
45    """Exporter for StudentStudyCourses.
46    """
47
48    fields = tuple(
49        sorted(iface_names(ICustomStudentStudyCourse))) + ('student_id',)
50
51class CustomStudentStudyLevelExporter(NigeriaStudentStudyLevelExporter):
52    """Exporter for StudentStudyLevels.
53    """
54    #: Fieldnames considered by this exporter
55    fields = tuple(sorted(iface_names(
56        ICustomStudentStudyLevel))) + (
57        'student_id', 'number_of_tickets','certcode')
58
59class CustomCourseTicketExporter(NigeriaCourseTicketExporter):
60    """Exporter for CourseTickets.
61    """
62
63    fields = tuple(sorted(iface_names(ICustomCourseTicket) +
64        ['level', 'code', 'level_session'])) + ('student_id',
65        'certcode', 'display_fullname')
66
67class CustomStudentPaymentExporter(NigeriaStudentPaymentExporter):
68    """Exporter for OnlinePayment instances.
69    """
70
71    fields = tuple(
72        sorted(iface_names(
73            ICustomStudentOnlinePayment, exclude_attribs=False,
74            omit=['display_item']))) + (
75            'student_id','state','current_session')
76
77class CustomSessionPaymentsOverviewExporter(SessionPaymentsOverviewExporter):
78    """
79    """
80
81    paycats = ('schoolfee', 'clearance', 'ict_entre',
82               'transcript', 'logbook_combo', 'siwess_combo',
83               'certificate')
84
Note: See TracBrowser for help on using the repository browser.