Changeset 11940 for main/kofacustom.wdu/trunk/src/kofacustom/wdu/students
- Timestamp:
- 9 Nov 2014, 08:44:55 (10 years ago)
- Location:
- main/kofacustom.wdu/trunk/src/kofacustom/wdu
- Files:
-
- 13 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/batching.py
r10765 r11940 24 24 students, studycourses, payment tickets and accommodation tickets. 25 25 """ 26 from kofacustom. skeleton.students.interfaces import (26 from kofacustom.wdu.students.interfaces import ( 27 27 ICustomStudent, ICustomStudentUpdateByRegNo, 28 28 ICustomStudentUpdateByMatricNo, -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/browser.py
r10765 r11940 41 41 ) 42 42 43 from kofacustom. skeleton.students.interfaces import (43 from kofacustom.wdu.students.interfaces import ( 44 44 ICustomStudentOnlinePayment, ICustomStudentStudyCourse, 45 45 ICustomStudentStudyLevel) 46 from kofacustom. skeleton.interfaces import MessageFactory as _46 from kofacustom.wdu.interfaces import MessageFactory as _ 47 47 -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/export.py
r11545 r11940 18 18 """Exporters for student related stuff. 19 19 """ 20 from kofacustom. skeleton.students.interfaces import (20 from kofacustom.wdu.students.interfaces import ( 21 21 ICustomStudent, 22 22 ICustomStudentStudyCourse, -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/interfaces.py
r10765 r11940 24 24 INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo, 25 25 ) 26 from kofacustom. skeleton.payments.interfaces import ICustomOnlinePayment27 from kofacustom. skeleton.interfaces import MessageFactory as _26 from kofacustom.wdu.payments.interfaces import ICustomOnlinePayment 27 from kofacustom.wdu.interfaces import MessageFactory as _ 28 28 29 29 class ICustomStudentBase(INigeriaStudentBase): -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/payments.py
r10765 r11940 26 26 StudentOnlinePayment, StudentOnlinePaymentFactory) 27 27 from waeup.kofa.utils.helpers import attrs_to_fields 28 from kofacustom. skeleton.students.interfaces import ICustomStudentOnlinePayment28 from kofacustom.wdu.students.interfaces import ICustomStudentOnlinePayment 29 29 30 30 class CustomStudentOnlinePayment(StudentOnlinePayment): -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/student.py
r10765 r11940 26 26 from waeup.kofa.utils.helpers import get_current_principal 27 27 from kofacustom.nigeria.students.student import NigeriaStudent 28 from kofacustom. skeleton.students.interfaces import ICustomStudent28 from kofacustom.wdu.students.interfaces import ICustomStudent 29 29 30 30 -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/studycourse.py
r10765 r11940 27 27 from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID 28 28 from kofacustom.nigeria.students.studycourse import NigeriaStudentStudyCourse 29 from kofacustom. skeleton.students.interfaces import ICustomStudentStudyCourse29 from kofacustom.wdu.students.interfaces import ICustomStudentStudyCourse 30 30 31 31 class CustomStudentStudyCourse(NigeriaStudentStudyCourse): -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/studylevel.py
r10765 r11940 28 28 CourseTicketFactory, StudentStudyLevelFactory) 29 29 from waeup.kofa.students.interfaces import IStudentNavigation 30 from kofacustom. skeleton.students.interfaces import (30 from kofacustom.wdu.students.interfaces import ( 31 31 ICustomStudentStudyLevel, ICustomCourseTicket) 32 32 -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/tests/test_browser.py
r10765 r11940 34 34 IExtFileStore, IFileStoreNameChooser) 35 35 from waeup.kofa.students.interfaces import IStudentsUtils 36 from kofacustom. skeleton.testing import FunctionalLayer36 from kofacustom.wdu.testing import FunctionalLayer 37 37 -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/tests/test_export.py
r11813 r11940 5 5 from waeup.kofa.schoolgrades import ResultEntry 6 6 from waeup.kofa.students.tests.test_batching import StudentImportExportSetup 7 from kofacustom. skeleton.utils.utils import CustomKofaUtils8 from kofacustom. skeleton.students.export import (7 from kofacustom.wdu.utils.utils import CustomKofaUtils 8 from kofacustom.wdu.students.export import ( 9 9 CustomStudentsExporter, CustomStudentPaymentsExporter) 10 from kofacustom. skeleton.testing import FunctionalLayer10 from kofacustom.wdu.testing import FunctionalLayer 11 11 12 12 -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/tests/test_student.py
r10765 r11940 22 22 from zope.interface import verify 23 23 from waeup.kofa.testing import FunctionalTestCase 24 from kofacustom. skeleton.students.student import CustomStudent, CustomStudentFactory25 from kofacustom. skeleton.students.studycourse import (24 from kofacustom.wdu.students.student import CustomStudent, CustomStudentFactory 25 from kofacustom.wdu.students.studycourse import ( 26 26 CustomStudentStudyCourse, CustomStudentStudyCourseFactory) 27 from kofacustom. skeleton.students.studylevel import (27 from kofacustom.wdu.students.studylevel import ( 28 28 CustomStudentStudyLevel, CustomCourseTicket, 29 29 CustomStudentStudyLevelFactory, 30 30 CustomCourseTicketFactory) 31 from kofacustom. skeleton.students.interfaces import (31 from kofacustom.wdu.students.interfaces import ( 32 32 ICustomStudent, ICustomStudentStudyCourse, 33 33 ICustomStudentStudyLevel, ICustomCourseTicket) 34 from kofacustom. skeleton.testing import FunctionalLayer34 from kofacustom.wdu.testing import FunctionalLayer 35 35 36 36 -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/utils.py
r10765 r11940 21 21 CLEARED, RETURNING, PAID, REGISTERED, VALIDATED) 22 22 from kofacustom.nigeria.students.utils import NigeriaStudentsUtils 23 from kofacustom. skeleton.interfaces import MessageFactory as _23 from kofacustom.wdu.interfaces import MessageFactory as _ 24 24 25 25 class CustomStudentsUtils(NigeriaStudentsUtils): -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/viewlets.py
r10765 r11940 20 20 from waeup.kofa.interfaces import REQUESTED 21 21 from waeup.kofa.browser.viewlets import ManageActionButton 22 from kofacustom. skeleton.students.interfaces import (22 from kofacustom.wdu.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.