Changeset 15954
- Timestamp:
- 25 Jan 2020, 15:22:09 (5 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py
r15952 r15954 476 476 not store.getFileByContext(self.context, attr=u'verificationdoc.pdf'): 477 477 return _('No pdf file uploaded.') 478 478 if self.target == 'fedex': 479 cat = getUtility(ICatalog, name='applicants_catalog') 480 results = list(cat.searchResults( 481 applicant_id=(data['trans_id'], data['trans_id']))) 482 if not results: 483 return _('The transcript application id does not exist.') 479 484 return False 480 485 -
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r15951 r15954 922 922 923 923 trans_id = schema.TextLine( 924 title = _(u' Id of Transcript Application'),924 title = _(u'Transcript Application Id'), 925 925 required = True, 926 926 readonly = False,
Note: See TracChangeset for help on using the changeset viewer.