Changeset 17245 for main/waeup.kofa/trunk/src/waeup/kofa/applicants
- Timestamp:
- 28 Dec 2022, 09:56:45 (23 months ago)
- 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
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) -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py
r17205 r17245 716 716 required = True, 717 717 readonly = False, 718 description = _(719 u'Balance in Naira'),718 #description = _( 719 # u'Balance in Naira'), 720 720 ) 721 721
Note: See TracChangeset for help on using the changeset viewer.