Changeset 11832 for main/kofacustom.pcn/trunk/src/kofacustom/pcn/students
- Timestamp:
- 13 Oct 2014, 10:40:59 (10 years ago)
- Location:
- main/kofacustom.pcn/trunk/src/kofacustom/pcn
- Files:
-
- 13 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/batching.py
r11687 r11832 24 24 students, studycourses, payment tickets and accommodation tickets. 25 25 """ 26 from kofacustom. sampleuni.students.interfaces import (26 from kofacustom.pcn.students.interfaces import ( 27 27 ICustomStudent, ICustomStudentUpdateByRegNo, 28 28 ICustomStudentUpdateByMatricNo, -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/browser.py
r11687 r11832 32 32 from waeup.kofa.students.interfaces import IStudentsUtils, ICourseTicket 33 33 from waeup.kofa.students.workflow import FORBIDDEN_POSTGRAD_TRANS 34 from kofacustom. sampleuni.students.interfaces import (34 from kofacustom.pcn.students.interfaces import ( 35 35 ICustomStudentOnlinePayment, ICustomStudentStudyCourse, 36 36 ICustomStudentStudyLevel) 37 from kofacustom. sampleuni.interfaces import MessageFactory as _37 from kofacustom.pcn.interfaces import MessageFactory as _ 38 38 -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/export.py
r11687 r11832 18 18 """Exporters for student related stuff. 19 19 """ 20 from kofacustom. sampleuni.students.interfaces import (20 from kofacustom.pcn.students.interfaces import ( 21 21 ICustomStudent, 22 22 ICustomStudentStudyCourse, -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/interfaces.py
r11687 r11832 24 24 IStudentUpdateByRegNo, IStudentUpdateByMatricNo, 25 25 ) 26 from kofacustom. sampleuni.payments.interfaces import ICustomOnlinePayment27 from kofacustom. sampleuni.interfaces import MessageFactory as _26 from kofacustom.pcn.payments.interfaces import ICustomOnlinePayment 27 from kofacustom.pcn.interfaces import MessageFactory as _ 28 28 29 29 class ICustomStudentBase(IStudentBase): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/payments.py
r11687 r11832 26 26 StudentOnlinePayment, StudentOnlinePaymentFactory) 27 27 from waeup.kofa.utils.helpers import attrs_to_fields 28 from kofacustom. sampleuni.students.interfaces import ICustomStudentOnlinePayment28 from kofacustom.pcn.students.interfaces import ICustomStudentOnlinePayment 29 29 30 30 class CustomStudentOnlinePayment(StudentOnlinePayment): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/student.py
r11687 r11832 26 26 from waeup.kofa.utils.helpers import get_current_principal 27 27 from waeup.kofa.students.student import Student 28 from kofacustom. sampleuni.students.interfaces import ICustomStudent28 from kofacustom.pcn.students.interfaces import ICustomStudent 29 29 30 30 -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/studycourse.py
r11687 r11832 27 27 from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID 28 28 from waeup.kofa.students.studycourse import StudentStudyCourse 29 from kofacustom. sampleuni.students.interfaces import ICustomStudentStudyCourse29 from kofacustom.pcn.students.interfaces import ICustomStudentStudyCourse 30 30 31 31 class CustomStudentStudyCourse(StudentStudyCourse): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/studylevel.py
r11687 r11832 28 28 CourseTicketFactory, StudentStudyLevelFactory) 29 29 from waeup.kofa.students.interfaces import IStudentNavigation 30 from kofacustom. sampleuni.students.interfaces import (30 from kofacustom.pcn.students.interfaces import ( 31 31 ICustomStudentStudyLevel, ICustomCourseTicket) 32 32 -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/tests/test_browser.py
r11687 r11832 34 34 IExtFileStore, IFileStoreNameChooser) 35 35 from waeup.kofa.students.interfaces import IStudentsUtils 36 from kofacustom. sampleuni.testing import FunctionalLayer36 from kofacustom.pcn.testing import FunctionalLayer 37 37 -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/tests/test_export.py
r11687 r11832 5 5 from waeup.kofa.schoolgrades import ResultEntry 6 6 from waeup.kofa.students.tests.test_batching import StudentImportExportSetup 7 from kofacustom. sampleuni.utils.utils import CustomKofaUtils8 from kofacustom. sampleuni.students.export import (7 from kofacustom.pcn.utils.utils import CustomKofaUtils 8 from kofacustom.pcn.students.export import ( 9 9 CustomStudentsExporter, CustomStudentPaymentsExporter) 10 from kofacustom. sampleuni.testing import FunctionalLayer10 from kofacustom.pcn.testing import FunctionalLayer 11 11 12 12 -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/tests/test_student.py
r11687 r11832 22 22 from zope.interface import verify 23 23 from waeup.kofa.testing import FunctionalTestCase 24 from kofacustom. sampleuni.students.student import CustomStudent, CustomStudentFactory25 from kofacustom. sampleuni.students.studycourse import (24 from kofacustom.pcn.students.student import CustomStudent, CustomStudentFactory 25 from kofacustom.pcn.students.studycourse import ( 26 26 CustomStudentStudyCourse, CustomStudentStudyCourseFactory) 27 from kofacustom. sampleuni.students.studylevel import (27 from kofacustom.pcn.students.studylevel import ( 28 28 CustomStudentStudyLevel, CustomCourseTicket, 29 29 CustomStudentStudyLevelFactory, 30 30 CustomCourseTicketFactory) 31 from kofacustom. sampleuni.students.interfaces import (31 from kofacustom.pcn.students.interfaces import ( 32 32 ICustomStudent, ICustomStudentStudyCourse, 33 33 ICustomStudentStudyLevel, ICustomCourseTicket) 34 from kofacustom. sampleuni.testing import FunctionalLayer34 from kofacustom.pcn.testing import FunctionalLayer 35 35 36 36 -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/utils.py
r11687 r11832 21 21 CLEARED, RETURNING, PAID, REGISTERED, VALIDATED) 22 22 from waeup.kofa.students.utils import StudentsUtils 23 from kofacustom. sampleuni.interfaces import MessageFactory as _23 from kofacustom.pcn.interfaces import MessageFactory as _ 24 24 25 25 class CustomStudentsUtils(StudentsUtils): -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/students/viewlets.py
r11687 r11832 20 20 from waeup.kofa.interfaces import REQUESTED 21 21 from waeup.kofa.browser.viewlets import ManageActionButton 22 from kofacustom. sampleuni.students.interfaces import (22 from kofacustom.pcn.students.interfaces import ( 23 23 ICustomStudentStudyCourse, ICustomStudentStudyLevel) 24 24 from waeup.kofa.students.viewlets import (
Note: See TracChangeset for help on using the changeset viewer.