Ignore:
Timestamp:
25 Mar 2021, 09:45:54 (4 years ago)
Author:
Henrik Bettermann
Message:

Add payment option (p_option) field to payment tickets and add
select box on online payment add form pages. Disable this feature
in the base package.

Location:
main/waeup.kofa/trunk/src/waeup/kofa/applicants
Files:
2 edited

Legend:

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

    r16327 r16431  
    819819            self.redirect(self.url(self.context))
    820820            return
     821        if getattr(self.context, 'p_option', None):
     822            payment.p_option = self.context.p_option
    821823        self.context[payment.p_id] = payment
    822824        self.context.writeLogMessage(self, 'added: %s' % payment.p_id)
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/export.py

    r16069 r16431  
    162162        IApplicantOnlinePayment,
    163163        exclude_attribs=False,
    164         omit=['display_item']))) + (
     164        omit=['display_item', 'p_option']))) + (
    165165              'applicant_id',
    166166              'reg_number',
Note: See TracChangeset for help on using the changeset viewer.