Changeset 16080
- Timestamp:
- 4 May 2020, 06:42:28 (5 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
r16020 r16080 272 272 ) 273 273 274 fab_lab_fee = schema.Float(274 lab_1_fee = schema.Float( 275 275 title = _(u'Faculty Laboratory Due (CHM102/PHY103/CSC101)'), 276 default = 0.0, 277 required = True, 278 ) 279 280 lab_2_fee = schema.Float( 281 title = _(u'Laboratory Due (BIO101/BIO111)'), 276 282 default = 0.0, 277 283 required = True, -
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r16021 r16080 631 631 632 632 # Faculty Laboratory Due 633 elif self.context.p_category == 'fab_lab':633 elif self.context.p_category in ('lab_1', 'lab_2'): 634 634 xmldict['institution_acct'] = '1016425386' 635 635 xmldict['institution_bank_id'] = '117' -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r16021 r16080 72 72 'library_pg': 'Library Fee PG', 73 73 'sports_library': 'Sports Development and UG Library Fee', 74 'fab_lab': 'Faculty Laboratory Due (CHM102/PHY103/CSC101)', 74 'lab_1': 'Faculty Laboratory Due (CHM102/PHY103/CSC101)', 75 'lab_2': 'Laboratory Due (BIO101/BIO111)', 75 76 } 76 77 … … 109 110 #'library_pg': 'Library Fee PG', 110 111 'sports_library': 'Sports Development and UG Library Fee', 111 'fab_lab': 'Faculty Laboratory Due (CHM102/PHY103/CSC101)', 112 'lab_1': 'Faculty Laboratory Due (CHM102/PHY103/CSC101)', 113 'lab_2': 'Laboratory Due (BIO101/BIO111)', 112 114 } 113 115 … … 150 152 #'library': 'Library Fee UG', 151 153 'sports_library': 'Sports Development and UG Library Fee', 152 'fab_lab': 'Faculty Laboratory Due (CHM102/PHY103/CSC101)', 154 'lab_1': 'Faculty Laboratory Due (CHM102/PHY103/CSC101)', 155 'lab_2': 'Laboratory Due (BIO101/BIO111)', 153 156 } 154 157
Note: See TracChangeset for help on using the changeset viewer.