Changeset 12902 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 5 May 2015, 04:37:21 (10 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py
r12901 r12902 782 782 _('Add session configuration'), 783 783 _('Remove selected')] 784 # We don't need to edit next_matric_integer in the base package. 784 785 form_fields = grok.AutoFields(IConfigurationContainer).omit( 785 'frontpage_dict' )786 'frontpage_dict', 'next_matric_integer') 786 787 787 788 @action(_('Save'), style='primary') -
main/waeup.kofa/trunk/src/waeup/kofa/students/interfaces.py
r12873 r12902 86 86 """Create Payment object and set the payment data of a student for 87 87 the payment category specified. 88 88 """ 89 90 def increaseMatricInteger(student): 91 """Increase counter for matric numbers. 92 93 This counter can be a centrally stored attribute or an attribute of 94 faculties, departments or certificates. In the base package the counter 95 is as an attribute of the site configuration object. 96 """ 97 98 def constructMatricNumber(student): 99 """Fetch the matric number counter which fits the student and 100 construct the new matric number of the student. 101 102 In the base package the counter is returned which is as an attribute 103 of the site configuration object. 89 104 """ 90 105 … … 93 108 94 109 If the student's matric number is unset a new matric number is 95 constructed using the next_matric_integer attribute of 96 the site configuration container and according to the 97 matriculation number construction rules defined in the 98 _constructMatricNumber method. The new matric number is set, 99 the students catalog updated and next_matric_integer 100 increased by one. 110 constructed according to the matriculation number construction rules 111 defined in the constructMatricNumber method. The new matric number is 112 set, the students catalog updated. The corresponding matric number 113 counter is increased by one. 101 114 102 115 This method is tested but not used in the base package. It can 103 116 be used in custom packages by adding respective views 104 and by customizing _composeMatricNumber according to the105 university's matriculation number construction rules.106 107 The method can be disabled by setting next_matric_integer to zero.117 and by customizing increaseMatricInteger and constructMatricNumber 118 according to the university's matriculation number construction rules. 119 120 The method can be disabled by setting the counter to zero. 108 121 """ 109 122 -
main/waeup.kofa/trunk/src/waeup/kofa/students/utils.py
r12896 r12902 530 530 construct the new matric number of the student. 531 531 532 In the base package the counter value is returned. 532 In the base package the counter is returned which is as an attribute 533 of the site configuration object. 533 534 """ 534 535 next_integer = grok.getSite()['configuration'].next_matric_integer
Note: See TracChangeset for help on using the changeset viewer.