- Timestamp:
- 13 Sep 2021, 12:24:36 (3 years ago)
- Location:
- main/kofacustom.edocons/trunk/src/kofacustom/edocons/students
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/batching.py
r16589 r16615 20 20 from kofacustom.nigeria.students.batching import NigeriaStudentProcessor 21 21 from waeup.kofa.students.batching import StudentOnlinePaymentProcessor 22 from kofacustom.e cns.students.interfaces import (22 from kofacustom.edocons.students.interfaces import ( 23 23 ICustomStudent, 24 24 ICustomStudentUpdateByRegNo, -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/browser.py
r16589 r16615 41 41 ) 42 42 43 from kofacustom.e cns.students.interfaces import (43 from kofacustom.edocons.students.interfaces import ( 44 44 ICustomStudentOnlinePayment, ICustomStudentStudyCourse, 45 45 ICustomStudentStudyLevel) 46 from kofacustom.e cns.interfaces import MessageFactory as _46 from kofacustom.edocons.interfaces import MessageFactory as _ 47 47 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/export.py
r16589 r16615 18 18 """Exporters for student related stuff. 19 19 """ 20 from kofacustom.e cns.students.interfaces import (20 from kofacustom.edocons.students.interfaces import ( 21 21 ICustomStudent, 22 22 ICustomStudentStudyCourse, -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/interfaces.py
r16589 r16615 25 25 INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo, 26 26 ) 27 from kofacustom.e cns.payments.interfaces import ICustomOnlinePayment28 from kofacustom.e cns.interfaces import MessageFactory as _27 from kofacustom.edocons.payments.interfaces import ICustomOnlinePayment 28 from kofacustom.edocons.interfaces import MessageFactory as _ 29 29 30 30 class ICustomStudentBase(INigeriaStudentBase): -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/payments.py
r16589 r16615 26 26 from kofacustom.nigeria.students.payments import ( 27 27 NigeriaStudentOnlinePayment, NigeriaStudentOnlinePaymentFactory) 28 from kofacustom.e cns.students.interfaces import ICustomStudentOnlinePayment28 from kofacustom.edocons.students.interfaces import ICustomStudentOnlinePayment 29 29 30 30 class CustomStudentOnlinePayment(NigeriaStudentOnlinePayment): -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/student.py
r16589 r16615 26 26 from waeup.kofa.utils.helpers import get_current_principal 27 27 from kofacustom.nigeria.students.student import NigeriaStudent 28 from kofacustom.e cns.students.interfaces import ICustomStudent28 from kofacustom.edocons.students.interfaces import ICustomStudent 29 29 30 30 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/studycourse.py
r16589 r16615 27 27 from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID 28 28 from kofacustom.nigeria.students.studycourse import NigeriaStudentStudyCourse 29 from kofacustom.e cns.students.interfaces import ICustomStudentStudyCourse29 from kofacustom.edocons.students.interfaces import ICustomStudentStudyCourse 30 30 31 31 class CustomStudentStudyCourse(NigeriaStudentStudyCourse): -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/studylevel.py
r16589 r16615 28 28 CourseTicketFactory, StudentStudyLevelFactory) 29 29 from waeup.kofa.students.interfaces import IStudentNavigation 30 from kofacustom.e cns.students.interfaces import (30 from kofacustom.edocons.students.interfaces import ( 31 31 ICustomStudentStudyLevel, ICustomCourseTicket) 32 32 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/tests/test_browser.py
r16589 r16615 34 34 IExtFileStore, IFileStoreNameChooser) 35 35 from waeup.kofa.students.interfaces import IStudentsUtils 36 from kofacustom.e cns.testing import FunctionalLayer36 from kofacustom.edocons.testing import FunctionalLayer 37 37 38 38 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/tests/test_export.py
r16591 r16615 6 6 from waeup.kofa.students.tests.test_batching import ( 7 7 StudentImportExportSetup, curr_year) 8 from kofacustom.e cns.utils.utils import CustomKofaUtils9 from kofacustom.e cns.students.export import (8 from kofacustom.edocons.utils.utils import CustomKofaUtils 9 from kofacustom.edocons.students.export import ( 10 10 CustomStudentExporter, CustomStudentPaymentExporter) 11 from kofacustom.e cns.testing import FunctionalLayer11 from kofacustom.edocons.testing import FunctionalLayer 12 12 13 13 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/tests/test_student.py
r16589 r16615 22 22 from zope.interface import verify 23 23 from waeup.kofa.testing import FunctionalTestCase 24 from kofacustom.e cns.students.student import CustomStudent, CustomStudentFactory25 from kofacustom.e cns.students.studycourse import (24 from kofacustom.edocons.students.student import CustomStudent, CustomStudentFactory 25 from kofacustom.edocons.students.studycourse import ( 26 26 CustomStudentStudyCourse, CustomStudentStudyCourseFactory) 27 from kofacustom.e cns.students.studylevel import (27 from kofacustom.edocons.students.studylevel import ( 28 28 CustomStudentStudyLevel, CustomCourseTicket, 29 29 CustomStudentStudyLevelFactory, 30 30 CustomCourseTicketFactory) 31 from kofacustom.e cns.students.interfaces import (31 from kofacustom.edocons.students.interfaces import ( 32 32 ICustomStudent, ICustomStudentStudyCourse, 33 33 ICustomStudentStudyLevel, ICustomCourseTicket) 34 from kofacustom.e cns.testing import FunctionalLayer34 from kofacustom.edocons.testing import FunctionalLayer 35 35 36 36 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/utils.py
r16589 r16615 21 21 CLEARED, RETURNING, PAID, REGISTERED, VALIDATED) 22 22 from kofacustom.nigeria.students.utils import NigeriaStudentsUtils 23 from kofacustom.e cns.interfaces import MessageFactory as _23 from kofacustom.edocons.interfaces import MessageFactory as _ 24 24 25 25 class CustomStudentsUtils(NigeriaStudentsUtils): -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/viewlets.py
r16589 r16615 20 20 from waeup.kofa.interfaces import REQUESTED 21 21 from waeup.kofa.browser.viewlets import ManageActionButton 22 from kofacustom.e cns.students.interfaces import (22 from kofacustom.edocons.students.interfaces import ( 23 23 ICustomStudentStudyCourse, ICustomStudentStudyLevel) 24 24 from waeup.kofa.students.fileviewlets import (
Note: See TracChangeset for help on using the changeset viewer.