Changeset 16749 for main/waeup.aaue/trunk
- Timestamp:
- 14 Jan 2022, 17:46:51 (3 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py
r16668 r16749 212 212 ) 213 213 214 ent_text_book_2_fee = schema.Float( 215 title = _(u'Text Book Fee ENT211'), 216 default = 0.0, 217 required = True, 218 ) 219 214 220 gst_registration_1_fee = schema.Float( 215 221 title = _(u'Registration Fee GST101 GST102 GST111 GST112'), … … 226 232 ent_registration_1_fee = schema.Float( 227 233 title = _(u'Registration Fee ENT201'), 234 default = 0.0, 235 required = True, 236 ) 237 238 ent_registration_2_fee = schema.Float( 239 title = _(u'Registration Fee ENT211'), 228 240 default = 0.0, 229 241 required = True, -
main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py
r16663 r16749 295 295 not 'gst_registration_2' in paid_cats: 296 296 return False 297 #if course.code in ('ENT201',) and \298 # not 'ent_registration_1' in paid_cats:299 #return False297 if course.code in ('ENT211',) and \ 298 not 'ent_registration_2' in paid_cats: 299 return False 300 300 if course.code in ('GST101', 'GST102') and \ 301 301 not 'gst_text_book_1' in paid_cats and \ … … 309 309 not 'gst_text_book_3' in paid_cats: 310 310 return False 311 #if course.code in ('ENT201',) and \312 # not 'ent_text_book_1' in paid_cats:313 #return False311 if course.code in ('ENT211',) and \ 312 not 'ent_text_book_2' in paid_cats: 313 return False 314 314 return True 315 315 return False -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r16669 r16749 63 63 'gst_text_book_3': 'Text Book Fee GST222', 64 64 'ent_text_book_1': 'Text Book Fee ENT201', 65 'ent_text_book_2': 'Text Book Fee ENT211', 65 66 'gst_registration_1': 'Registration Fee GST101 GST102 GST111 GST112', 66 67 'gst_registration_2': 'Registration Fee GST222', 67 68 'ent_registration_1': 'Registration Fee ENT201', 69 'ent_registration_2': 'Registration Fee ENT211', 68 70 'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 69 71 'ict': 'ICT/Affidavit Dues', … … 103 105 'gst_text_book_3': 'Text Book Fee GST222', 104 106 'ent_text_book_1': 'Text Book Fee ENT201', 107 'ent_text_book_2': 'Text Book Fee ENT211', 105 108 'gst_registration_1': 'Registration Fee GST101 GST102 GST111 GST112', 106 109 'gst_registration_2': 'Registration Fee GST222', 107 110 'ent_registration_1': 'Registration Fee ENT201', 111 'ent_registration_2': 'Registration Fee ENT211', 108 112 #'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 109 113 'ict': 'ICT/Affidavit Dues', … … 149 153 'ent_registration_1': 'Registration Fee ENT201', 150 154 'ent_text_book_1': 'Text Book Fee ENT201', 155 'ent_registration_2': 'Registration Fee ENT211', 156 'ent_text_book_2': 'Text Book Fee ENT211', 151 157 'gst_registration_1': 'Registration Fee GST101 GST102 GST111 GST112', 152 158 'gst_registration_2': 'Registration Fee GST222', … … 201 207 'gst_text_book_3': 'Text Book Fee GST222', 202 208 'ent_text_book_1': 'Text Book Fee ENT201', 209 'ent_text_book_2': 'Text Book Fee ENT211', 203 210 'gst_registration_1': 'Registration Fee GST101 GST102 GST111 GST112', 204 211 'gst_registration_2': 'Registration Fee GST222', 205 212 'ent_registration_1': 'Registration Fee ENT201', 213 'ent_registration_2': 'Registration Fee ENT211', 206 214 #'fac_dep': 'Faculty and Departmental Dues (incl. ICT/Affidavit Dues)', 207 215 'ict': 'ICT/Affidavit Dues',
Note: See TracChangeset for help on using the changeset viewer.