template_name = 'club/payment/payu.html'
def __init__(self, pos_id):
template_name = 'club/payment/payu.html'
def __init__(self, pos_id):
- return reverse('club_dummy_payment', args=[schedule.key])
+ app = request.GET.get('app')
+ return agreement_approval_url(schedule.amount, schedule.key, app=app)
+
pos = getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
if pos:
recurring_payment_method = PayURe(pos)
pos = getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
if pos:
recurring_payment_method = PayURe(pos)
else:
recurring_payment_method = None
pos = getattr(settings, 'CLUB_PAYU_POS', None)
if pos:
single_payment_method = PayU(pos)
else:
recurring_payment_method = None
pos = getattr(settings, 'CLUB_PAYU_POS', None)
if pos:
single_payment_method = PayU(pos)