Ignore:
Timestamp:
24 Jan 2020, 12:58:03 (5 years ago)
Author:
Henrik Bettermann
Message:

Add trans_id field.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py

    r15950 r15951  
    563563
    564564    applicant_id = schema.TextLine(
    565         title = _(u'Applicant Id'),
     565        title = _(u'Application Id'),
    566566        required = False,
    567567        readonly = False,
     
    722722
    723723    applicant_id = schema.TextLine(
    724         title = _(u'Applicant Id'),
     724        title = _(u'Application Id'),
    725725        required = False,
    726726        readonly = False,
     
    837837
    838838    applicant_id = schema.TextLine(
    839         title = _(u'Applicant Id'),
     839        title = _(u'Application Id'),
    840840        required = False,
    841841        readonly = False,
     
    916916
    917917    applicant_id = schema.TextLine(
    918         title = _(u'Applicant Id'),
    919         required = False,
     918        title = _(u'Application Id'),
     919        required = False,
     920        readonly = False,
     921        )
     922
     923    trans_id = schema.TextLine(
     924        title = _(u'Id of Transcript Application'),
     925        required = True,
    920926        readonly = False,
    921927        )
     
    10521058class ICustomApplicant(ICustomUGApplicant, ICustomPGApplicant,
    10531059                       ITranscriptApplicant, ICertificateRequest,
    1054                        IVerificationRequest, ISendByEmailRequest):
     1060                       IVerificationRequest, ISendByEmailRequest,
     1061                       IFedexRequest):
    10551062    """An interface for all types of applicants.
    10561063
Note: See TracChangeset for help on using the changeset viewer.