Changeset 15976 for main/waeup.aaue/trunk/src/waeup/aaue/students
- Timestamp:
- 3 Feb 2020, 14:07:33 (5 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r15919 r15976 73 73 NigeriaStudentClearanceEditFormPage, 74 74 NigeriaAccommodationManageFormPage, 75 NigeriaAccommodationDisplayFormPage, 75 76 NigeriaStudentBaseDisplayFormPage, 76 77 NigeriaStudentBaseManageFormPage, … … 925 926 self.context.student, studentview, note=self.note, 926 927 omit_fields=self.omit_fields) 928 929 class CustomAccommodationDisplayFormPage(NigeriaAccommodationDisplayFormPage): 930 """ Page to view bed tickets. 931 """ 932 with_hostel_selection = True 927 933 928 934 class CustomAccommodationManageFormPage(NigeriaAccommodationManageFormPage): -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r15971 r15976 445 445 amount += gateway_net_amt(academic_session.welfare_fee) + \ 446 446 gateway_net_amt(academic_session.union_fee) 447 if student.entry_session == 2018 and student.is_fresh:447 if student.entry_session >= 2018 and student.is_fresh: 448 448 amount += gateway_net_amt(academic_session.sports_fee) 449 449 if student.is_postgrad:
Note: See TracChangeset for help on using the changeset viewer.