Changeset 17440 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 19 Jun 2023, 14:02:14 (17 months ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/tests.py
r17437 r17440 291 291 in self.browser.contents) 292 292 self.assertTrue( 293 'item_name=" Tuition(2nd instalment)" item_amt="9200000" bank_id="7" acct_num="1022438743"' in self.browser.contents)293 'item_name="School Fees (2nd instalment)" item_amt="9200000" bank_id="7" acct_num="1022438743"' in self.browser.contents) 294 294 295 295 self.browser.open(self.payments_path + '/addop') … … 321 321 in self.browser.contents) 322 322 self.assertTrue( 323 'item_name=" Tuition(2nd instalment)" item_amt="9200000" bank_id="7" acct_num="1022438743"' in self.browser.contents)323 'item_name="School Fees (2nd instalment)" item_amt="9200000" bank_id="7" acct_num="1022438743"' in self.browser.contents) 324 324 325 325 def disabled_test_interswitch_form_pt_acceptance_fees(self): -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r17437 r17440 38 38 39 39 PAYMENT_CATEGORIES = { 40 'schoolfee': ' Tuition',41 'schoolfee_1': ' TuitionPlus (1st instalment)',42 'schoolfee_2': ' Tuition(2nd instalment)',43 'schoolfee_incl': ' TuitionPlus',40 'schoolfee': 'School Fees', 41 'schoolfee_1': 'School Fees Plus (1st instalment)', 42 'schoolfee_2': 'School Fees (2nd instalment)', 43 'schoolfee_incl': 'School Fees Plus', 44 44 'clearance': 'Acceptance Fee', 45 45 'clearance_incl': 'Acceptance Fee Plus', … … 87 87 88 88 SELECTABLE_PAYMENT_CATEGORIES = { 89 'schoolfee': ' Tuitionwithout additional fees',90 'schoolfee_1': ' Tuitionincl. additional fees (1st instalment)',91 'schoolfee_2': ' Tuition(2nd instalment)',92 'schoolfee_incl': ' Tuitionincl. additional fees',89 'schoolfee': 'School Fees without additional fees', 90 'schoolfee_1': 'School Fees incl. additional fees (1st instalment)', 91 'schoolfee_2': 'School Fees (2nd instalment)', 92 'schoolfee_incl': 'School Fees incl. additional fees', 93 93 'clearance': 'Acceptance Fee without additional fees', 94 94 'clearance_incl': 'Acceptance Fee incl. additional fees', … … 140 140 REDUCED_PAYMENT_CATS = { 141 141 'clearance': 'Acceptance Fee', 142 'schoolfee': ' Tuition',142 'schoolfee': 'School Fees', 143 143 ##'late_registration': 'Late Course Registration Fee', 144 144 ##'sports': 'Sports Fee', … … 150 150 IJMBE_PAYMENT_CATS = { 151 151 'clearance': 'Acceptance Fee', 152 'schoolfee': ' Tuition',153 'schoolfee_1': ' Tuition(1st instalment)',154 'schoolfee_2': ' Tuition(2nd instalment)',152 'schoolfee': 'School Fees', 153 'schoolfee_1': 'School Fees (1st instalment)', 154 'schoolfee_2': 'School Fees (2nd instalment)', 155 155 ##'sports': 'Sports Fee', 156 156 ##'library': 'UG Library Fee', … … 162 162 PT_AND_DSH_PAYMENT_CATS = { 163 163 'clearance_incl': 'Acceptance Fee Plus', 164 'schoolfee_incl': ' TuitionPlus',164 'schoolfee_incl': 'School Fees Plus', 165 165 ##'ent_text_book_1': 'Text Book Fee ENT201', 166 166 ##'ent_text_book_2': 'Text Book Fee ENT211', … … 199 199 200 200 REPORTABLE_PAYMENT_CATEGORIES = { 201 'schoolfee': ' Tuition',202 'schoolfee_incl': ' TuitionPlus',203 'schoolfee_1': ' Tuition1 Plus',204 'schoolfee_2': ' Tuition2',201 'schoolfee': 'School Fees', 202 'schoolfee_incl': 'School Fees Plus', 203 'schoolfee_1': 'School Fees 1 Plus', 204 'schoolfee_2': 'School Fees 2', 205 205 'clearance': 'Acceptance Fee', 206 206 'clearance_incl': 'Acceptance Fee Plus', … … 211 211 212 212 XXXBALANCE_PAYMENT_CATEGORIES = { 213 'schoolfee': ' Tuition',213 'schoolfee': 'School Fees', 214 214 'clearance': 'Acceptance Fee', 215 215 'hostel_maintenance': 'Hostel Maintenance Fee', … … 238 238 239 239 PREVIOUS_PAYMENT_CATEGORIES = { 240 'schoolfee': ' Tuition',240 'schoolfee': 'School Fees', 241 241 'clearance': 'Acceptance Fee', 242 242 'late_registration': 'Late Course Registration Fee', … … 314 314 315 315 DISABLE_PAYMENT_GROUP_DICT = { 316 'sf_all': ' Tuition- All Students',317 'sf_pg': ' Tuition- Postgraduate Students',318 'sf_ug_pt': ' Tuition- Undergraduate Part-Time Students',319 'sf_found': ' Tuition- Foundation Students',316 'sf_all': 'School Fees - All Students', 317 'sf_pg': 'School Fees - Postgraduate Students', 318 'sf_ug_pt': 'School Fees - Undergraduate Part-Time Students', 319 'sf_found': 'School Fees - Foundation Students', 320 320 'maint_all': 'Accommodation Fee - All Students', 321 321 'cl_regular': 'Acceptance Fee - Regular Students',
Note: See TracChangeset for help on using the changeset viewer.