Changeset 10392


Ignore:
Timestamp:
27 Jun 2013, 14:17:10 (11 years ago)
Author:
Henrik Bettermann
Message:

Request from eTranzact: "Please find the values returned when you use this url you provided, This will throw Array out of bound exception on our system because Faculty and Department has no values, return N/A if any of the parameter is null."

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/payment.py

    r10030 r10392  
    101101    @property
    102102    def matric_number(self):
    103         return ''
     103        return 'N/A'
    104104
    105105    @property
    106106    def faculty(self):
    107         return ''
     107        return 'N/A'
    108108
    109109    @property
    110110    def department(self):
    111         return ''
     111        return 'N/A'
    112112
    113113# Applicant online payments must be importable. So we might need a factory.
Note: See TracChangeset for help on using the changeset viewer.