- Timestamp:
- 28 Dec 2022, 09:56:45 (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r17200 r17245 823 823 self.redirect(self.url(self.context)) 824 824 return 825 if getattr(self.context, 'p_option', None):826 payment.p_option = self.context.p_option827 825 self.context[payment.p_id] = payment 828 826 self.context.writeLogMessage(self, 'added: %s' % payment.p_id) … … 855 853 def createTicket(self, **data): 856 854 p_category = data['p_category'] 857 p_option = data.get('p_option', None) 855 form = self.request.form 856 p_option = form.get('form.p_option', None) 858 857 balance_amount = data.get('balance_amount', None) 859 858 applicants_utils = getUtility(IApplicantsUtils)
Note: See TracChangeset for help on using the changeset viewer.