- Timestamp:
- 12 Oct 2020, 17:17:43 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/student.py
r16264 r16280 52 52 53 53 def minimumFreshStudentPayments(self, minamount): 54 """Need eto access edit_personal. Only in iuokada package.54 """Need to access edit_personal. Only in iuokada package. 55 55 """ 56 56 if not self.is_fresh: … … 60 60 if ticket.p_state == 'paid': 61 61 total_amount += ticket.amount_auth 62 if total_amount > minamount:62 if total_amount >= minamount: 63 63 return True 64 64 return False
Note: See TracChangeset for help on using the changeset viewer.