fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
App workarounds.
[wolnelektury.git]
/
src
/
club
/
payment_methods.py
diff --git
a/src/club/payment_methods.py
b/src/club/payment_methods.py
index
29221ee
..
ca34ace
100644
(file)
--- a/
src/club/payment_methods.py
+++ b/
src/club/payment_methods.py
@@
-3,6
+3,7
@@
from django.urls import reverse
class PaymentMethod(object):
class PaymentMethod(object):
+ is_onetime = False
is_recurring = False
def initiate(self, request, schedule):
is_recurring = False
def initiate(self, request, schedule):
@@
-10,6
+11,7
@@
class PaymentMethod(object):
class PayU(PaymentMethod):
class PayU(PaymentMethod):
+ is_onetime = True
slug = 'payu'
name = 'PayU'
template_name = 'club/payment/payu.html'
slug = 'payu'
name = 'PayU'
template_name = 'club/payment/payu.html'
@@
-30,7
+32,7
@@
class PayU(PaymentMethod):
class PayURe(PaymentMethod):
slug='payu-re'
class PayURe(PaymentMethod):
slug='payu-re'
- name = 'PayU
Recurring
'
+ name = 'PayU
(płatność odnawialna)
'
template_name = 'club/payment/payu-re.html'
is_recurring = True
template_name = 'club/payment/payu-re.html'
is_recurring = True
@@
-51,11
+53,12
@@
class PayURe(PaymentMethod):
return order.put()
return order.put()
-class PayPal
Re
(PaymentMethod):
- slug='paypal
-re
'
- name = 'PayPal
Recurring
'
- template_name = 'club/payment/paypal
-re
.html'
+class PayPal(PaymentMethod):
+ slug='paypal'
+ name = 'PayPal
(płatność odnawialna)
'
+ template_name = 'club/payment/paypal.html'
is_recurring = True
is_recurring = True
+ is_onetime = True
def initiate(self, request, schedule):
return reverse('club_dummy_payment', args=[schedule.key])
def initiate(self, request, schedule):
return reverse('club_dummy_payment', args=[schedule.key])
@@
-63,13
+66,6
@@
class PayPalRe(PaymentMethod):
methods = []
methods = []
-pos = getattr(settings, 'CLUB_PAYU_POS', None)
-if pos:
- payu_method = PayU(pos)
- methods.append(payu_method)
-else:
- payu_method = None
-
pos= getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
if pos:
payure_method = PayURe(pos)
pos= getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
if pos:
payure_method = PayURe(pos)
@@
-77,8
+73,15
@@
if pos:
else:
payure_method = None
else:
payure_method = None
+pos = getattr(settings, 'CLUB_PAYU_POS', None)
+if pos:
+ payu_method = PayU(pos)
+ methods.append(payu_method)
+else:
+ payu_method = None
+
-
methods.append(PayPalRe
())
+
#methods.append(PayPal
())
method_by_slug = {
method_by_slug = {