Changeset 16370 for main/kofacustom.coewarri/trunk/src/kofacustom/coewarri
- Timestamp:
- 13 Jan 2021, 09:20:28 (4 years ago)
- Location:
- main/kofacustom.coewarri/trunk/src/kofacustom/coewarri
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/interfaces.py
r15787 r16370 71 71 ) 72 72 73 lsfp_penalty_fee = schema.Float( 74 title = _(u'NCE Late School Fee Payment Penalty Fee'), 75 description = u'Enter NCE penalty fee. DELSU penalty fee will be twice as high.', 76 default = 0.0, 77 required = False, 78 ) 79 73 80 transcript_fee = schema.Float( 74 81 title = _(u'Transcript Fee'), -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/students/utils.py
r16002 r16370 88 88 'degree' in academic_session.payment_disabled: 89 89 return True 90 return False 91 92 def _lsfp_penalty_paymentMade(self, student, session): 93 if student.current_mode not in ('ug_ft','de_ft', 'nce_ft', 'nce_pt'): 94 return True 95 if len(student['payments']): 96 for ticket in student['payments'].values(): 97 if ticket.p_state == 'paid' and \ 98 ticket.p_category == 'lsfp_penalty' and \ 99 ticket.p_session == session: 100 return True 90 101 return False 91 102 … … 120 131 # Determine fee. 121 132 if category.startswith('schoolfee'): 133 penalty = getattr(academic_session, 'lsfp_penalty_fee') 134 if penalty and not self._lsfp_penalty_paymentMade( 135 student, student.current_session): 136 return _('You have to pay late school fee payment penalty first.'), None 122 137 try: 123 138 certificate = student['studycourse'].certificate … … 176 191 else: 177 192 return _(u'No bed allocated.'), None 178 elif category == 'transcript': 179 amount = academic_session.transcript_fee 180 elif category == 'transfer': 181 amount = academic_session.transfer_fee 182 elif category == 'late_registration': 183 amount = academic_session.late_registration_fee 193 elif category == 'lsfp_penalty': 194 amount = academic_session.lsfp_penalty_fee 195 if amount and student.current_mode in ('ug_ft','de_ft'): 196 amount *= 2 197 else: 198 fee_name = category + '_fee' 199 amount = getattr(academic_session, fee_name, 0.0) 184 200 if amount in (0.0, None): 185 201 return _('Amount could not be determined.'), None -
main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/utils/utils.py
r15439 r16370 70 70 #'transcript': 'Transcript Fee', 71 71 #'late_registration': 'Late Course Registration Fee' 72 'lsfp_penalty': 'Late School Fee Payment Penalty Fee' 72 73 } 73 74
Note: See TracChangeset for help on using the changeset viewer.