Ignore:
Timestamp:
8 Oct 2020, 06:01:21 (4 years ago)
Author:
Henrik Bettermann
Message:

Submit DESCRIPTION to Etranzact.

Location:
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact/applicantsbrowser.py

    r15974 r16271  
    113113        self.responseurl = self.url(self.context, 'receive_etranzact')
    114114        self.transaction_id = self.context.p_id
     115        self.description = "%s - (%s)" % (
     116            self.context.p_category, self.context.p_item)
    115117        hashargs =      self.amount + self.terminal_id + self.transaction_id \
    116118            + self.responseurl + self.secret_key
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact/browser_templates/goto_etranzact.pt

    r15795 r16271  
    66  <input type=hidden name="TRANSACTION_ID" tal:attributes="value view/transaction_id">
    77  <input type=hidden name="AMOUNT" tal:attributes="value view/context/amount_auth">
     8  <input type=hidden name="DESCRIPTION" tal:attributes="value view/description">
    89  <input type=hidden name="EMAIL" tal:attributes="value view/customer/email">
    910  <input type=hidden name="PHONENO" tal:attributes="value view/customer/phone">
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact/studentsbrowser.py

    r16246 r16271  
    127127        self.responseurl = self.url(self.context, 'receive_etranzact')
    128128        self.transaction_id = self.context.p_id
     129        self.description = "%s (%s)" % (
     130            self.context.p_category, self.context.p_item)
    129131        hashargs =      self.amount + self.terminal_id + self.transaction_id \
    130132            + self.responseurl + self.secret_key
Note: See TracChangeset for help on using the changeset viewer.