- Timestamp:
- 13 Sep 2021, 12:24:36 (3 years ago)
- Location:
- main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/applicant.py
r16589 r16615 22 22 from waeup.kofa.utils.helpers import attrs_to_fields 23 23 from kofacustom.nigeria.applicants.applicant import NigeriaApplicant 24 from kofacustom.e cns.applicants.interfaces import(24 from kofacustom.edocons.applicants.interfaces import( 25 25 ICustomApplicant, ICustomUGApplicantEdit, ICustomPGApplicantEdit, IPUTMEApplicantEdit) 26 26 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/batching.py
r16589 r16615 20 20 from kofacustom.nigeria.applicants.batching import NigeriaApplicantProcessor 21 21 from waeup.kofa.applicants.batching import ApplicantOnlinePaymentProcessor 22 from kofacustom.e cns.applicants.interfaces import (22 from kofacustom.edocons.applicants.interfaces import ( 23 23 ICustomApplicant, 24 24 ICustomApplicantUpdateByRegNo, -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/browser.py
r16589 r16615 25 25 NigeriaPDFApplicationSlip) 26 26 27 from kofacustom.e cns.interfaces import MessageFactory as _27 from kofacustom.edocons.interfaces import MessageFactory as _ 28 28 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/export.py
r16589 r16615 24 24 from kofacustom.nigeria.applicants.interfaces import ( 25 25 INigeriaUGApplicant, INigeriaPGApplicant) 26 from kofacustom.e cns.applicants.interfaces import (26 from kofacustom.edocons.applicants.interfaces import ( 27 27 ICustomUGApplicant, ICustomPGApplicant) 28 28 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/interfaces.py
r16589 r16615 37 37 IPUTMEApplicantEdit, 38 38 ) 39 from kofacustom.e cns.interfaces import MessageFactory as _40 from kofacustom.e cns.payments.interfaces import ICustomOnlinePayment39 from kofacustom.edocons.interfaces import MessageFactory as _ 40 from kofacustom.edocons.payments.interfaces import ICustomOnlinePayment 41 41 42 42 class ICustomUGApplicant(INigeriaUGApplicant): -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/payment.py
r16589 r16615 24 24 from waeup.kofa.applicants.payment import ApplicantOnlinePayment 25 25 from waeup.kofa.utils.helpers import attrs_to_fields 26 from kofacustom.e cns.applicants.interfaces import ICustomApplicantOnlinePayment26 from kofacustom.edocons.applicants.interfaces import ICustomApplicantOnlinePayment 27 27 28 28 class CustomApplicantOnlinePayment(ApplicantOnlinePayment): -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/tests/test_applicant.py
r16589 r16615 30 30 from waeup.kofa.interfaces import IFileStoreHandler, IFileStoreNameChooser 31 31 from waeup.kofa.testing import FunctionalTestCase 32 from kofacustom.e cns.applicants.applicant import (32 from kofacustom.edocons.applicants.applicant import ( 33 33 CustomApplicant, CustomApplicantFactory, 34 34 ) 35 from kofacustom.e cns.applicants.interfaces import ICustomApplicant36 from kofacustom.e cns.testing import FunctionalLayer35 from kofacustom.edocons.applicants.interfaces import ICustomApplicant 36 from kofacustom.edocons.testing import FunctionalLayer 37 37 38 38 class CustomApplicantTest(FunctionalTestCase): -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/tests/test_browser.py
r16591 r16615 25 25 from zope.intid.interfaces import IIntIds 26 26 from hurry.workflow.interfaces import IWorkflowState 27 from kofacustom.e cns.testing import FunctionalLayer27 from kofacustom.edocons.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.e cns.applicants.export import CustomApplicantExporter32 from kofacustom.e cns.applicants.batching import CustomApplicantProcessor31 from kofacustom.edocons.applicants.export import CustomApplicantExporter 32 from kofacustom.edocons.applicants.batching import CustomApplicantProcessor 33 33 34 34 class CustomApplicantUITests(ApplicantsFullSetup): -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/utils.py
r16589 r16615 22 22 from waeup.kofa.applicants.workflow import (INITIALIZED, 23 23 STARTED, PAID, ADMITTED, NOT_ADMITTED, SUBMITTED, CREATED) 24 from kofacustom.e cns.interfaces import MessageFactory as _24 from kofacustom.edocons.interfaces import MessageFactory as _ 25 25 26 26
Note: See TracChangeset for help on using the changeset viewer.