Changeset 13893
- Timestamp:
- 7 Jun 2016, 20:37:13 (8 years ago)
- Location:
- main/kofacustom.wdu/trunk/src/kofacustom/wdu
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.wdu/trunk/src/kofacustom/wdu/interfaces.py
r12478 r13893 31 31 32 32 # Base fees, do not remove. 33 34 application_fee = schema.Float(35 title = _(u'Application Fee (fallback)'),36 default = 0.0,37 required = False,38 )39 33 40 34 clearance_fee = schema.Float( -
main/kofacustom.wdu/trunk/src/kofacustom/wdu/students/utils.py
r13509 r13893 134 134 return _('This type of payment has already been made.'), None 135 135 if self._isPaymentDisabled(p_session, category, student): 136 return _(' Payment temporarilydisabled.'), None136 return _('This category of payments has been disabled.'), None 137 137 payment = createObject(u'waeup.StudentOnlinePayment') 138 138 timestamp = ("%d" % int(time()*10000))[1:]
Note: See TracChangeset for help on using the changeset viewer.