Ignore:
Timestamp:
31 Jan 2020, 21:50:08 (5 years ago)
Author:
Henrik Bettermann
Message:

Do not allow to submit forms to other companies than payment.r_company.

Location:
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/remita
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/remita/applicantsbrowser.py

    r15842 r15974  
    112112        if not module_activated(
    113113            self.context.__parent__.__parent__.year, self.context):
     114            self.flash(_('Forbidden'), type='danger')
     115            self.redirect(self.url(self.context, '@@index'))
    114116            return
    115117        if self.context.p_state in ('paid', 'waived', 'scholarship'):
     
    165167        if not module_activated(
    166168            self.context.__parent__.__parent__.year, self.context):
     169            self.flash(_('Forbidden'), type='danger')
     170            self.redirect(self.url(self.context, '@@index'))
    167171            return
    168172        if self.context.p_state  != 'paid' \
     
    279283        if not module_activated(
    280284            self.context.__parent__.__parent__.year, self.context):
     285            self.flash(_('Forbidden'), type='danger')
     286            self.redirect(self.url(self.context, '@@index'))
    281287            return
    282288        self.orderId = self.context.p_id
  • main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/remita/studentsbrowser.py

    r15842 r15974  
    122122        if not module_activated(
    123123            self.context.student.current_session, self.context):
     124            self.flash(_('Forbidden'), type='danger')
     125            self.redirect(self.url(self.context, '@@index'))
    124126            return
    125127        if self.context.p_state in ('paid', 'waived', 'scholarship'):
     
    175177        if not module_activated(
    176178            self.context.student.current_session, self.context):
     179            self.flash(_('Forbidden'), type='danger')
     180            self.redirect(self.url(self.context, '@@index'))
    177181            return
    178182        if self.context.p_state  != 'paid' \
     
    298302        if not module_activated(
    299303            self.context.student.current_session, self.context):
     304            self.flash(_('Forbidden'), type='danger')
     305            self.redirect(self.url(self.context, '@@index'))
    300306            return
    301307        self.orderId = self.context.p_id
Note: See TracChangeset for help on using the changeset viewer.