Changeset 15952 for main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Timestamp:
- 24 Jan 2020, 14:21:05 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py
r15951 r15952 573 573 return form_fields 574 574 575 @action(_('Save'), style='primary')576 def save(self, **data):577 if self.upload_success is False: # False is not None!578 # Error during image upload. Ignore other values.579 return580 if self.target == 'fedex':581 cat = getUtility(ICatalog, name='applicants_catalog')582 results = list(cat.searchResults(583 applicant_id=(data['trans_id'], data['trans_id'])))584 if not results:585 self.flash(_('The transcript application id does not exist.'),586 type='danger')587 return588 self.applyData(self.context, **data)589 self.flash(_('Form has been saved.'))590 return591 592 575 def update(self): 593 576 if self.context.locked or (
Note: See TracChangeset for help on using the changeset viewer.