Changeset 13651
- Timestamp:
- 5 Feb 2016, 08:48:02 (9 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r13617 r13651 5 5 ======================= 6 6 7 * Add DegreeSource and degree field to Certificate. Plugins must be updated! 7 * Add new application workflow state (`processed`) and transition 8 (`process`). 9 10 * Add `DegreeSource` and `degree` field to `Certificate`. 11 Plugins must be updated! 8 12 9 13 … … 17 21 study course. Save entered text in p_item attribute. 18 22 19 * Add further permissions to the local ApplicationsManagerrole and23 * Add further permissions to the local `ApplicationsManager` role and 20 24 make it assignable at applicants container level. 21 25 … … 27 31 booking accommodation. 28 32 29 * Add BedProcessor.33 * Add `BedProcessor`. 30 34 31 35 * Add portal maintenance mode. 32 36 33 * Allow also reg_numberon public page to check application status37 * Allow also `reg_number` on public page to check application status 34 38 without password. 35 39 -
main/waeup.kofa/trunk/docs/source/userdocs/applicants/workflow.rst
r13144 r13651 15 15 | | |b | 16 16 | | | | 17 | |h paid 18 | | | 19 i| | |c |j20 | | | 17 | |h paid +-- processed | 18 | | | | | 19 i| | |c |k | 20 | | | | | 21 21 | +--- submitted ---------+ | 22 22 | | | | … … 40 40 i: n/a -i: reset4 41 41 j: n/a -j: reset5 42 k: process -k: n/a 42 43 43 44 Application starts with the creation of the applicant record, either … … 56 57 student records. This final and **irreversible step** is accompanied 57 58 by a transition to state ``created`` **(f)**. 59 60 Submitted records can also be marked ``processed`` **(k)** in case 61 the application module is used for other kinds of application 62 processes which have nothing to do with student admission, e.g. 63 transcript application or late payments by alumni. 58 64 59 65 -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py
r13650 r13651 408 408 source = AppCatCertificateSource(), 409 409 required = False, 410 description = _('Should be different from 1st choice.')411 410 ) 412 411 -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/workflow.py
r13108 r13651 33 33 NOT_ADMITTED = 'not admitted' 34 34 CREATED = 'created' 35 PROCESSED = 'processed' 36 35 37 36 38 IMPORTABLE_STATES = (INITIALIZED, STARTED, PAID, SUBMITTED, ADMITTED, NOT_ADMITTED) … … 44 46 NOT_ADMITTED: _('not admitted'), 45 47 CREATED: _('created'), 48 PROCESSED: _('processed'), 46 49 } 47 50 … … 96 99 source = SUBMITTED, 97 100 destination = NOT_ADMITTED), 101 102 Transition( 103 transition_id = 'process', 104 title = _('Process application'), 105 msg = _('Application processed'), 106 source = SUBMITTED, 107 destination = PROCESSED), 98 108 99 109 Transition(
Note: See TracChangeset for help on using the changeset viewer.