-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recurring payments support #106
Conversation
Codecov Report
@@ Coverage Diff @@
## master #106 +/- ##
==========================================
+ Coverage 78.41% 78.50% +0.08%
==========================================
Files 36 37 +1
Lines 1978 2014 +36
==========================================
+ Hits 1551 1581 +30
- Misses 427 433 +6
Continue to review full report at Codecov.
|
58e47b2
to
2e44782
Compare
I consider this code ready for review. |
055e999
to
ed2b693
Compare
@Alir3z4 I fixed most of your requests and commented the rest of them. I have also written some info about recurring payments to the docs. I also realised, that we should not send reminders for recurring accounts. Although somebody might request other kind of reminders before recurring payment. |
ed2b693
to
f1a30b7
Compare
This is implements recurring payments according to #64.
The code should be complete, but might require some polishing. I would appreciate any feedback with this.
I am currently implementing recurring payments with PayU through
django-payments
anddjango-plans-payments
. The recurrence is induced by server (contrary to PayPal recurring payments), which means, that there is need to store recurring payment data as well as the card token.