source: main/kofacustom.dspg/trunk/src/kofacustom/dspg/students/batching.py @ 16827

Last change on this file since 16827 was 16817, checked in by Henrik Bettermann, 3 years ago

Show semester credits on study level pages.

  • Property svn:keywords set to Id
File size: 2.1 KB
Line 
1## $Id: batching.py 16817 2022-02-17 09:09:52Z 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
20Batch processors eat CSV files to add, update or remove large numbers
21of certain kinds of objects at once.
22
23Here we define the processors for students specific objects like
24students, studycourses, payment tickets and accommodation tickets.
25"""
26from kofacustom.dspg.students.interfaces import (
27    ICustomStudent, ICustomStudentUpdateByRegNo,
28    ICustomStudentUpdateByMatricNo,
29    ICustomStudentOnlinePayment,
30    ICustomStudentStudyLevel
31    )
32from waeup.kofa.students.batching import (
33    StudentProcessor, StudentOnlinePaymentProcessor,
34    StudentStudyLevelProcessor)
35
36class CustomStudentProcessor(StudentProcessor):
37    """A batch processor for ICustomStudent objects.
38    """
39    iface = ICustomStudent
40    iface_byregnumber = ICustomStudentUpdateByRegNo
41    iface_bymatricnumber = ICustomStudentUpdateByMatricNo
42
43class CustomStudentOnlinePaymentProcessor(StudentOnlinePaymentProcessor):
44    """A batch processor for ICustomStudentOnlinePayment objects.
45    """
46    iface = ICustomStudentOnlinePayment
47
48class CustomStudentStudyLevelProcessor(StudentStudyLevelProcessor):
49    """
50    """
51    iface = ICustomStudentStudyLevel
52
53    @property
54    def available_fields(self):
55        fields = super(CustomStudentStudyLevelProcessor, self).available_fields
56        fields.remove('total_credits_s1')
57        fields.remove('total_credits_s2')
58        return  fields
Note: See TracBrowser for help on using the repository browser.