source: main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/batching.py @ 17409

Last change on this file since 17409 was 17406, checked in by Henrik Bettermann, 17 months ago

Add fields and change field names.

  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1## $Id: batching.py 17406 2023-05-09 15:19:08Z henrik $
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"""
20from kofacustom.nigeria.students.batching import NigeriaStudentProcessor
21from waeup.kofa.students.batching import (
22    StudentOnlinePaymentProcessor,
23    CourseTicketProcessor)
24from kofacustom.edocons.students.interfaces import (
25    ICustomStudent,
26    ICustomStudentUpdateByRegNo,
27    ICustomStudentUpdateByMatricNo,
28    ICustomStudentOnlinePayment,
29    ICustomCourseTicketImport
30    )
31
32class CustomStudentProcessor(NigeriaStudentProcessor):
33    """A batch processor for ICustomStudent objects.
34    """
35    iface = ICustomStudent
36    iface_byregnumber = ICustomStudentUpdateByRegNo
37    iface_bymatricnumber = ICustomStudentUpdateByMatricNo
38
39class CustomStudentOnlinePaymentProcessor(StudentOnlinePaymentProcessor):
40    """A batch processor for ICustomStudentOnlinePayment objects.
41    """
42    iface = ICustomStudentOnlinePayment
43
44class 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',
56            'unlock_score', 'previous', 'carryover_score', 'in_progress',
57            'resumption_date', 'carryover_grade', 'attempts'
58            ] + self.additional_fields
59        return sorted(fields)
Note: See TracBrowser for help on using the repository browser.