Changeset 8682


Ignore:
Timestamp:
11 Jun 2012, 14:39:30 (12 years ago)
Author:
Henrik Bettermann
Message:

Add confirmation number field. Change live terminal id.

Location:
main/waeup.aaue/trunk/src/waeup/aaue
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/etranzact/browser.py

    r8680 r8682  
    2828from waeup.aaue.applicants.interfaces import ICustomApplicantOnlinePayment
    2929
    30 #TERMINAL_ID = '0690000120'
     30#TERMINAL_ID = '0330000046'
    3131#QUERY_URL =   'https://www.etranzact.net/Query/queryPayoutletTransaction.jsp'
    3232
     
    4242    postdict['CONFIRMATION_NO'] = confirmation_number
    4343    data = urllib.urlencode(postdict)
     44    payment.conf_number = confirmation_number
    4445    try:
    4546        f = urllib.urlopen(url=QUERY_URL, data=data)
  • main/waeup.aaue/trunk/src/waeup/aaue/payments/interfaces.py

    r8430 r8682  
    6969        readonly = False,
    7070        )
     71
     72    conf_number = schema.TextLine(
     73        title = _(u'Confirmation Number'),
     74        default = None,
     75        required = False,
     76        readonly = False,
     77        )
Note: See TracChangeset for help on using the changeset viewer.