- @classmethod
- def get_payment_url(cls, schedule):
- return reverse('club_dummy_payment', args=[schedule.key])
+ def initiate(self, request, schedule):
+ app = request.GET.get('app')
+ return agreement_approval_url(schedule.amount, schedule.key, app=app)
+
+
+methods = []
+
+pos = getattr(settings, 'CLUB_PAYU_RECURRING_POS', None)
+if pos:
+ recurring_payment_method = PayURe(pos)
+ methods.append(recurring_payment_method)
+else:
+ recurring_payment_method = None
+
+pos = getattr(settings, 'CLUB_PAYU_POS', None)
+if pos:
+ single_payment_method = PayU(pos)
+ methods.append(single_payment_method)
+else:
+ single_payment_method = None