regluit/payment
Raymond Yee 51cc7d4389 IMPORTANT: Transactions that are ACTIVE status must also have approved=True to be counted as an effectlvely active Transaction.
Changes in two tests are made to reflect this change.
2012-01-11 15:31:26 -08:00
..
management artifact of some download? 2011-10-18 21:33:22 -04:00
migrations Adding Transaction.approved field (migration needed!) 2012-01-11 09:40:51 -08:00
README.txt Adding missing README 2011-09-27 08:56:50 -04:00
__init__.py Adding pledge payment support 2011-09-27 08:48:11 -04:00
manager.py The approved flag from IPNs for Preapprovals now captured properly. 2012-01-11 22:46:59 +00:00
models.py Adding Transaction.approved field (migration needed!) 2012-01-11 09:40:51 -08:00
parameters.py Added Receiver and PaymentResponse to admin interface 2012-01-03 13:37:20 -05:00
paypal.py BUG FIX: must use request.POST.get("approved", 'None') to get approved attribute in IPN 2012-01-11 13:58:29 -08:00
tests.py IMPORTANT: Transactions that are ACTIVE status must also have approved=True to be counted as an effectlvely active Transaction. 2012-01-11 15:31:26 -08:00
urls.py Adding payment code for refund and modification of existing transactions 2012-01-05 01:42:05 -05:00
views.py Allow modifications if the amount is equal to max amount (not just less) 2012-01-06 10:32:52 -05:00

README.txt

Setup instructions for payment module

1)  In parameters.py, set the following:

    PAYPAL_USERNAME = Paypal username from developer.paypal.com
    PAYPAL_PASSWORD =  Paypal password from developer.paypal.com
    PAYPAL_SIGNATURE = Paypal signature from developer.paypal.com
    PAYPAL_APPID = 'APP-80W284485P519543T' (for all sandbox apps), or the real APPID

    BASE_URL = Set this to the server IP address that is accessible via port 80.  
                Local IP addresses, or non-port 80 addresses will NOT work with paypal IPN.
                
    COMPLETE_URL = relative local URL for a plege confirmation
    CANCEL_URL = relative local url for a pledge cacellation
    
2) Sync the database to include the payment specific tables

3) Configure your paypal sandbox account at developer.paypal.com with at least 1 seller and 1 buyer.  The buyer info is entered into the sandbox, the seller
    info needs to be entered into the pledge/payment itself

4) A test pledge code sample is available in regluit.payment.view.testPledge