- Timestamp:
- 20 Jul 2016, 11:38:34 (8 years ago)
- Location:
- main/kofacustom.coewarri/trunk/src/kofacustom/coewarri
- Files:
-
- 9 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/applicant.py
r10765 r14035 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.coewarri.applicants.interfaces import( 25 25 ICustomApplicant, ICustomUGApplicantEdit, ICustomPGApplicantEdit, IPUTMEApplicantEdit) 26 26 -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/batching.py
r11543 r14035 20 20 from waeup.kofa.utils.batching import BatchProcessor 21 21 from waeup.kofa.applicants.batching import ApplicantProcessor 22 from kofacustom. skeleton.applicants.interfaces import (22 from kofacustom.coewarri.applicants.interfaces import ( 23 23 ICustomApplicant, ICustomApplicantUpdateByRegNo) 24 24 -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/browser.py
r10765 r14035 25 25 NigeriaPDFApplicationSlip) 26 26 27 from kofacustom. skeleton.interfaces import MessageFactory as _27 from kofacustom.coewarri.interfaces import MessageFactory as _ 28 28 -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/export.py
r13983 r14035 24 24 from kofacustom.nigeria.applicants.interfaces import ( 25 25 INigeriaUGApplicant, INigeriaPGApplicant) 26 from kofacustom. skeleton.applicants.interfaces import (26 from kofacustom.coewarri.applicants.interfaces import ( 27 27 ICustomUGApplicant, ICustomPGApplicant) 28 28 -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/interfaces.py
r10765 r14035 37 37 IPUTMEApplicantEdit, 38 38 ) 39 from kofacustom. skeleton.interfaces import MessageFactory as _40 from kofacustom. skeleton.payments.interfaces import ICustomOnlinePayment39 from kofacustom.coewarri.interfaces import MessageFactory as _ 40 from kofacustom.coewarri.payments.interfaces import ICustomOnlinePayment 41 41 42 42 class ICustomUGApplicant(INigeriaUGApplicant): -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/payment.py
r10765 r14035 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.coewarri.applicants.interfaces import ICustomApplicantOnlinePayment 27 27 28 28 class CustomApplicantOnlinePayment(ApplicantOnlinePayment): -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/tests/test_applicant.py
r10765 r14035 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.coewarri.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.coewarri.applicants.interfaces import ICustomApplicant 36 from kofacustom.coewarri.testing import FunctionalLayer 37 37 38 38 class CustomApplicantTest(FunctionalTestCase): -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/tests/test_browser.py
r13983 r14035 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.coewarri.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.coewarri.applicants.export import CustomApplicantExporter 32 from kofacustom.coewarri.applicants.batching import CustomApplicantProcessor 33 33 34 34 class CustomApplicantUITests(ApplicantsFullSetup): -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/applicants/utils.py
r10765 r14035 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.coewarri.interfaces import MessageFactory as _ 25 25 26 26
Note: See TracChangeset for help on using the changeset viewer.