Ignore:
Timestamp:
24 Jan 2020, 14:21:05 (5 years ago)
Author:
Henrik Bettermann
Message:

Configure split payment. Remove save method. Doesn't wirk.

File:
1 edited

Legend:

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

    r15951 r15952  
    573573        return form_fields
    574574
    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             return
    580         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                 return
    588         self.applyData(self.context, **data)
    589         self.flash(_('Form has been saved.'))
    590         return
    591 
    592575    def update(self):
    593576        if self.context.locked or (
Note: See TracChangeset for help on using the changeset viewer.