Changeset 15181
- Timestamp:
- 2 Oct 2018, 15:03:19 (6 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py
r15180 r15181 243 243 244 244 library_fee = schema.Float( 245 title = _(u'Library Development Fee'), 245 title = _(u'Library Development Fee UG'), 246 default = 0.0, 247 required = True, 248 ) 249 250 library_fee_pg = schema.Float( 251 title = _(u'Library Development Fee PG'), 246 252 default = 0.0, 247 253 required = True, -
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r15180 r15181 244 244 library_amt = gateway_net_amt( 245 245 academic_session.library_fee) 246 library_amt_pg = gateway_net_amt( 247 academic_session.library_fee_pg) 246 248 xmldict['student_union_bank_id'] = '31' 247 249 xmldict['student_union_acct'] = '0051005007' … … 267 269 library_amt = gateway_net_amt( 268 270 academic_session.library_fee) 271 library_amt_pg = gateway_net_amt( 272 academic_session.library_fee_pg) 269 273 xmldict['student_union_bank_id'] = '7' 270 274 xmldict['student_union_acct'] = '1019763348' … … 293 297 xmldict['student_welfare_assurance_amt'] = 100 * student_welfare_assurance_amt 294 298 xmldict['sports_amt'] = 100 * sports_amt 295 xmldict['library_amt'] = 100 * library_amt 299 if student.is_postgrad: 300 xmldict['library_amt'] = 100 * library_amt_pg 301 else: 302 xmldict['library_amt'] = 100 * library_amt 296 303 xmldict['institution_amt'] = 100 * ( 297 304 gateway_net_amt(self.context.amount_auth) -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r15180 r15181 438 438 amount += gateway_net_amt(academic_session.welfare_fee) + \ 439 439 gateway_net_amt(academic_session.union_fee) 440 gateway_net_amt(academic_session.sports_fee) 441 gateway_net_amt(academic_session.library_fee) 440 amount += gateway_net_amt(academic_session.sports_fee) 441 if student.is_postgrad: 442 amount += gateway_net_amt(academic_session.library_fee_pg) 443 else: 444 amount += gateway_net_amt(academic_session.library_fee) 442 445 if student.entry_session == 2016 \ 443 446 and student.entry_mode == 'ug_ft' \ -
main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py
r15180 r15181 65 65 'fac_dep': 'Faculty and Departmental Dues', 66 66 'restitution': 'Restitution Fee', 67 'sports_develop': 'Sports Development Fee',68 'library_develop': 'Library Development Fee',69 67 } 70 68
Note: See TracChangeset for help on using the changeset viewer.