- Timestamp:
- 27 Apr 2018, 07:35:05 (7 years ago)
- Location:
- main/kofacustom.esitm/trunk/src/kofacustom/esitm
- Files:
-
- 9 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.esitm/trunk/src/kofacustom/esitm/applicants/applicant.py
r10765 r14995 22 22 from waeup.kofa.utils.helpers import attrs_to_fields 23 23 from kofacustom.nigeria.applicants.applicant import NigeriaApplicant 24 from kofacustom. skeleton.applicants.interfaces import(24 from kofacustom.esitm.applicants.interfaces import( 25 25 ICustomApplicant, ICustomUGApplicantEdit, ICustomPGApplicantEdit, IPUTMEApplicantEdit) 26 26 -
main/kofacustom.esitm/trunk/src/kofacustom/esitm/applicants/batching.py
r14818 r14995 20 20 from kofacustom.nigeria.applicants.batching import NigeriaApplicantProcessor 21 21 from waeup.kofa.applicants.batching import ApplicantOnlinePaymentProcessor 22 from kofacustom. skeleton.applicants.interfaces import (22 from kofacustom.esitm.applicants.interfaces import ( 23 23 ICustomApplicant, 24 24 ICustomApplicantUpdateByRegNo, -
main/kofacustom.esitm/trunk/src/kofacustom/esitm/applicants/browser.py
r10765 r14995 25 25 NigeriaPDFApplicationSlip) 26 26 27 from kofacustom. skeleton.interfaces import MessageFactory as _27 from kofacustom.esitm.interfaces import MessageFactory as _ 28 28 -
main/kofacustom.esitm/trunk/src/kofacustom/esitm/applicants/export.py
r13983 r14995 24 24 from kofacustom.nigeria.applicants.interfaces import ( 25 25 INigeriaUGApplicant, INigeriaPGApplicant) 26 from kofacustom. skeleton.applicants.interfaces import (26 from kofacustom.esitm.applicants.interfaces import ( 27 27 ICustomUGApplicant, ICustomPGApplicant) 28 28 -
main/kofacustom.esitm/trunk/src/kofacustom/esitm/applicants/interfaces.py
r10765 r14995 37 37 IPUTMEApplicantEdit, 38 38 ) 39 from kofacustom. skeleton.interfaces import MessageFactory as _40 from kofacustom. skeleton.payments.interfaces import ICustomOnlinePayment39 from kofacustom.esitm.interfaces import MessageFactory as _ 40 from kofacustom.esitm.payments.interfaces import ICustomOnlinePayment 41 41 42 42 class ICustomUGApplicant(INigeriaUGApplicant): -
main/kofacustom.esitm/trunk/src/kofacustom/esitm/applicants/payment.py
r10765 r14995 24 24 from waeup.kofa.applicants.payment import ApplicantOnlinePayment 25 25 from waeup.kofa.utils.helpers import attrs_to_fields 26 from kofacustom. skeleton.applicants.interfaces import ICustomApplicantOnlinePayment26 from kofacustom.esitm.applicants.interfaces import ICustomApplicantOnlinePayment 27 27 28 28 class CustomApplicantOnlinePayment(ApplicantOnlinePayment): -
main/kofacustom.esitm/trunk/src/kofacustom/esitm/applicants/tests/test_applicant.py
r10765 r14995 30 30 from waeup.kofa.interfaces import IFileStoreHandler, IFileStoreNameChooser 31 31 from waeup.kofa.testing import FunctionalTestCase 32 from kofacustom. skeleton.applicants.applicant import (32 from kofacustom.esitm.applicants.applicant import ( 33 33 CustomApplicant, CustomApplicantFactory, 34 34 ) 35 from kofacustom. skeleton.applicants.interfaces import ICustomApplicant36 from kofacustom. skeleton.testing import FunctionalLayer35 from kofacustom.esitm.applicants.interfaces import ICustomApplicant 36 from kofacustom.esitm.testing import FunctionalLayer 37 37 38 38 class CustomApplicantTest(FunctionalTestCase): -
main/kofacustom.esitm/trunk/src/kofacustom/esitm/applicants/tests/test_browser.py
r14276 r14995 25 25 from zope.intid.interfaces import IIntIds 26 26 from hurry.workflow.interfaces import IWorkflowState 27 from kofacustom. skeleton.testing import FunctionalLayer27 from kofacustom.esitm.testing import FunctionalLayer 28 28 from waeup.kofa.browser.tests.test_pdf import samples_dir 29 29 from waeup.kofa.applicants.tests.test_browser import ApplicantsFullSetup 30 30 from waeup.kofa.applicants.tests.test_batching import ApplicantImportExportSetup 31 from kofacustom. skeleton.applicants.export import CustomApplicantExporter32 from kofacustom. skeleton.applicants.batching import CustomApplicantProcessor31 from kofacustom.esitm.applicants.export import CustomApplicantExporter 32 from kofacustom.esitm.applicants.batching import CustomApplicantProcessor 33 33 34 34 class CustomApplicantUITests(ApplicantsFullSetup): -
main/kofacustom.esitm/trunk/src/kofacustom/esitm/applicants/utils.py
r10765 r14995 22 22 from waeup.kofa.applicants.workflow import (INITIALIZED, 23 23 STARTED, PAID, ADMITTED, NOT_ADMITTED, SUBMITTED, CREATED) 24 from kofacustom. skeleton.interfaces import MessageFactory as _24 from kofacustom.esitm.interfaces import MessageFactory as _ 25 25 26 26
Note: See TracChangeset for help on using the changeset viewer.