Changeset 11981 for main/waeup.ikoba/trunk/src
- Timestamp:
- 17 Nov 2014, 15:52:12 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/interfaces.py
r11967 r11981 238 238 EXAM_SUBJECTS_DICT = Attribute("Dict of examination subjects") 239 239 EXAM_GRADES = Attribute("Dict of examination grades") 240 INST_TYPES_DICT = Attribute("Dict if company types")241 STUDY_MODES_DICT = Attribute("Dict of study modes")242 APP_CATS_DICT = Attribute("Dict of application categories")243 SEMESTER_DICT = Attribute("Dict of semesters or trimesters")244 240 SYSTEM_MAX_LOAD = Attribute("Dict of maximum system loads.") 245 241 -
main/waeup.ikoba/trunk/src/waeup/ikoba/utils/utils.py
r11952 r11981 115 115 ) 116 116 117 INST_TYPES_DICT = { 118 'none': '', 119 'faculty': 'Faculty of', 120 'department': 'Department of', 121 'school': 'School of', 122 'office': 'Office for', 123 'centre': 'Centre for', 124 'institute': 'Institute of', 125 'school_for': 'School for', 126 'college': 'College of', 127 'directorate': 'Directorate of', 128 } 129 130 STUDY_MODES_DICT = { 131 'transfer': 'Transfer', 132 'ug_ft': 'Undergraduate Full-Time', 133 'ug_pt': 'Undergraduate Part-Time', 134 'pg_ft': 'Postgraduate Full-Time', 135 'pg_pt': 'Postgraduate Part-Time', 136 } 137 138 APP_CATS_DICT = { 139 'basic': 'Basic Application', 140 'no': 'no application', 141 'pg': 'Postgraduate', 142 'sandwich': 'Sandwich', 143 'cest': 'Part-Time, Diploma, Certificate' 144 } 145 146 SEMESTER_DICT = { 147 1: '1st Semester', 148 2: '2nd Semester', 149 3: 'Combined', 150 9: 'N/A' 151 } 152 153 SPECIAL_HANDLING_DICT = { 154 'regular': 'Regular Hostel', 155 'blocked': 'Blocked Hostel', 156 'pg': 'Postgraduate Hostel' 157 } 158 159 SPECIAL_APP_DICT = { 160 'transcript': 'Transcript Fee Payment', 161 'clearance': 'Acceptance Fee', 117 DOCUMENT_CATEGORIES = { 118 'generic': 'Generic Document', 162 119 } 163 120 164 121 PAYMENT_CATEGORIES = { 165 'schoolfee': 'School Fee', 166 'clearance': 'Acceptance Fee', 167 'bed_allocation': 'Bed Allocation Fee', 168 'hostel_maintenance': 'Hostel Maintenance Fee', 169 'transfer': 'Transfer Fee', 170 'gown': 'Gown Hire Fee', 171 'application': 'Application Fee', 172 'transcript': 'Transcript Fee', 173 } 174 175 SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES) 176 177 PREVIOUS_PAYMENT_CATEGORIES = deepcopy(SELECTABLE_PAYMENT_CATEGORIES) 178 179 BALANCE_PAYMENT_CATEGORIES = { 180 'schoolfee': 'School Fee', 181 } 182 183 MODE_GROUPS = { 184 'All': ('all',), 185 'Undergraduate Full-Time': ('ug_ft',), 186 'Undergraduate Part-Time': ('ug_pt',), 187 'Postgraduate Full-Time': ('pg_ft',), 188 'Postgraduate Part-Time': ('pg_pt',), 122 'license': 'License Fee', 189 123 } 190 124
Note: See TracChangeset for help on using the changeset viewer.