fnp
/
wolnelektury.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
441f752
)
Auto-check paypal status.
author
Radek Czajka
<rczajka@rczajka.pl>
Wed, 1 Sep 2021 11:35:06 +0000
(13:35 +0200)
committer
Radek Czajka
<rczajka@rczajka.pl>
Wed, 1 Sep 2021 11:35:06 +0000
(13:35 +0200)
src/club/payment_methods.py
patch
|
blob
|
history
diff --git
a/src/club/payment_methods.py
b/src/club/payment_methods.py
index
9b73c89
..
c207685
100644
(file)
--- a/
src/club/payment_methods.py
+++ b/
src/club/payment_methods.py
@@
-72,6
+72,21
@@
class PayPal(PaymentMethod):
app = request.GET.get('app')
return agreement_approval_url(schedule.amount, schedule.key, app=app)
app = request.GET.get('app')
return agreement_approval_url(schedule.amount, schedule.key, app=app)
+ def pay(self, request, schedule):
+ from datetime import date, timedelta, datetime
+ from pytz import utc
+ tomorrow = datetime(*(date.today() + timedelta(2)).timetuple()[:3], tzinfo=utc)
+ any_active = False
+ for ba in schedule.billingagreement_set.all():
+ active = ba.check_agreement()
+ ba.active = active
+ ba.save()
+ if active:
+ any_active = True
+ if any_active:
+ schedule.expires_at = tomorrow
+ schedule.save()
+
methods = []
methods = []