Changeset 8703 for main/waeup.kofa/trunk/src/waeup/kofa/payments
- Timestamp:
- 13 Jun 2012, 06:32:13 (13 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/payments
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/payments/interfaces.py
r8702 r8703 93 93 ) 94 94 95 def getOwner():96 "Payments usually have an owner."97 98 99 95 class ISCPayment(IPayment): 100 96 """A scratch card payment. … … 144 140 def approve(): 145 141 "Approve an online payment and set to paid." 142 143 class IPaymentWebservice(IKofaObject): 144 """An interface for a webservice. 145 146 """ 147 148 def payee(): 149 "Payments are usually paid by a payee." -
main/waeup.kofa/trunk/src/waeup/kofa/payments/payment.py
r8702 r8703 52 52 return payment_categories.getTermByToken(self.p_category).title 53 53 54 def getOwner(self):55 "Payments usually have an owner."56 return None57 58 54 # not used 59 55 class SCPayment(Payment):
Note: See TracChangeset for help on using the changeset viewer.