- Timestamp:
- 31 Jan 2024, 11:42:09 (10 months ago)
- Location:
- main/kofacustom.udss/trunk/src/kofacustom/udss/applicants
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/applicant.py
r16717 r17689 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.udss.applicants.interfaces import( 25 25 ICustomApplicant, ICustomUGApplicantEdit, ICustomPGApplicantEdit, IPUTMEApplicantEdit) 26 26 -
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/batching.py
r16717 r17689 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.udss.applicants.interfaces import ( 23 23 ICustomApplicant, 24 24 ICustomApplicantUpdateByRegNo, -
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/browser.py
r16718 r17689 40 40 PG_OMIT_EDIT_FIELDS, 41 41 ) 42 from kofacustom. skeleton.applicants.interfaces import (42 from kofacustom.udss.applicants.interfaces import ( 43 43 ICustomPGApplicant, ICustomUGApplicant, ICustomApplicant, 44 44 ICustomPGApplicantEdit, ICustomUGApplicantEdit, … … 46 46 ) 47 47 48 from kofacustom. skeleton.interfaces import MessageFactory as _48 from kofacustom.udss.interfaces import MessageFactory as _ 49 49 50 50 class CustomApplicantEditFormPage(NigeriaApplicantEditFormPage): -
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/export.py
r16717 r17689 24 24 from kofacustom.nigeria.applicants.interfaces import ( 25 25 INigeriaUGApplicant, INigeriaPGApplicant) 26 from kofacustom. skeleton.applicants.interfaces import (26 from kofacustom.udss.applicants.interfaces import ( 27 27 ICustomUGApplicant, ICustomPGApplicant) 28 28 -
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/interfaces.py
r16717 r17689 37 37 IPUTMEApplicantEdit, 38 38 ) 39 from kofacustom. skeleton.interfaces import MessageFactory as _40 from kofacustom. skeleton.payments.interfaces import ICustomOnlinePayment39 from kofacustom.udss.interfaces import MessageFactory as _ 40 from kofacustom.udss.payments.interfaces import ICustomOnlinePayment 41 41 42 42 class ICustomUGApplicant(INigeriaUGApplicant): -
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/payment.py
r16717 r17689 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.udss.applicants.interfaces import ICustomApplicantOnlinePayment 27 27 28 28 class CustomApplicantOnlinePayment(ApplicantOnlinePayment): -
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/tests/test_applicant.py
r16717 r17689 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.udss.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.udss.applicants.interfaces import ICustomApplicant 36 from kofacustom.udss.testing import FunctionalLayer 37 37 38 38 class CustomApplicantTest(FunctionalTestCase): -
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/tests/test_browser.py
r16717 r17689 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.udss.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.udss.applicants.export import CustomApplicantExporter 32 from kofacustom.udss.applicants.batching import CustomApplicantProcessor 33 33 34 34 class CustomApplicantUITests(ApplicantsFullSetup): -
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/utils.py
r16717 r17689 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.udss.interfaces import MessageFactory as _ 25 25 26 26
Note: See TracChangeset for help on using the changeset viewer.