Changeset 12749 for main/waeup.ikoba/trunk/src/waeup/ikoba/payments
- Timestamp:
- 12 Mar 2015, 08:37:21 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba/payments
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/payments/interfaces.py
r12741 r12749 46 46 """Fired when a payment starts waiting for verification. 47 47 """ 48 object = Attribute("""The payment waiting.""")48 object = Attribute("""The payment started waiting.""") 49 49 50 50 … … 192 192 193 193 For each type of content you understand as payer, you should 194 define an IPay rtFinder that can lookup payers in the site.194 define an IPayerFinder that can lookup payers in the site. 195 195 196 196 This enables access from payments (which store payer ids only) … … 278 278 """A base representation of payments. 279 279 280 In a payment, a payer pay es someone (the payee) for something, the280 In a payment, a payer pays someone (the payee) for something, the 281 281 item to pay. 282 282 -
main/waeup.ikoba/trunk/src/waeup/ikoba/payments/payment.py
r12741 r12749 89 89 `currency` passed in is the 'target' currency. 90 90 91 Returns a list of format ed values. Last item is total sum.91 Returns a list of formatted values. Last item is total sum. 92 92 XXX: we do not really respect currency. If different items 93 93 have different currencies, we are choked. … … 209 209 @attrs_to_fields 210 210 class Payer(object): 211 """A Pay ment isfor testing.211 """A Payer for testing. 212 212 213 213 It cannot be stored in ZODB.
Note: See TracChangeset for help on using the changeset viewer.