Changeset 8020 for main/waeup.uniben/trunk/src/waeup/uniben/students
- Timestamp:
- 2 Apr 2012, 11:05:40 (13 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben
- Files:
-
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/students/batching.py
r7822 r8020 24 24 students, studycourses, payment tickets and accommodation tickets. 25 25 """ 26 from waeup. custom.students.interfaces import (26 from waeup.uniben.students.interfaces import ( 27 27 IStudent, 28 28 ) -
main/waeup.uniben/trunk/src/waeup/uniben/students/browser.py
r7998 r8020 27 27 ExportPDFClearanceSlipPage) 28 28 from waeup.kofa.students.viewlets import RequestCallbackActionButton 29 from waeup. custom.students.interfaces import (29 from waeup.uniben.students.interfaces import ( 30 30 IStudent, IStudentPersonal, 31 31 IUGStudentClearance,IPGStudentClearance, 32 32 ) 33 from waeup. custom.interfaces import MessageFactory as _33 from waeup.uniben.interfaces import MessageFactory as _ 34 34 35 35 class RequestCallbackActionButton(RequestCallbackActionButton): -
main/waeup.uniben/trunk/src/waeup/uniben/students/student.py
r7995 r8020 23 23 from waeup.kofa.utils.helpers import attrs_to_fields 24 24 from waeup.kofa.students.student import Student, StudentFactory 25 from waeup. custom.students.interfaces import IStudent, IStudentNavigation25 from waeup.uniben.students.interfaces import IStudent, IStudentNavigation 26 26 27 27 -
main/waeup.uniben/trunk/src/waeup/uniben/students/tests/test_browser.py
r7995 r8020 25 25 from waeup.kofa.testing import FunctionalTestCase 26 26 from waeup.kofa.students.batching import StudentProcessor as StudentProcessorBase 27 from waeup. custom.students.batching import StudentProcessor28 from waeup. custom.testing import FunctionalLayer27 from waeup.uniben.students.batching import StudentProcessor 28 from waeup.uniben.testing import FunctionalLayer 29 29 30 30 STUDENT_SAMPLE_DATA = open( -
main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py
r7928 r8020 20 20 from waeup.kofa.students.utils import StudentsUtils 21 21 from waeup.kofa.students.interfaces import IStudentsUtils 22 from waeup. custom.interfaces import MessageFactory as _22 from waeup.uniben.interfaces import MessageFactory as _ 23 23 24 24 def get_school_fee(student, surcharge):
Note: See TracChangeset for help on using the changeset viewer.