Changeset 16715 for main/kofacustom.edocons
- Timestamp:
- 19 Nov 2021, 11:06:11 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edocons/trunk/src/kofacustom/edocons/students/browser.py
r16712 r16715 21 21 from zope.schema.interfaces import ConstraintNotSatisfied 22 22 from zope.component import getUtility 23 from zope.security import checkPermission 23 24 from hurry.workflow.interfaces import IWorkflowInfo 24 25 from waeup.kofa.interfaces import REQUESTED, IExtFileStore, IKofaUtils … … 30 31 StudentBasePDFFormPage, ExportPDFCourseRegistrationSlip, 31 32 CourseTicketDisplayFormPage, StudentTriggerTransitionFormPage, 32 ExportPDFAdmissionSlip, StartClearancePage, 33 ExportPDFAdmissionSlip, StartClearancePage, PaymentsManageFormPage, 33 34 msave, emit_lock_message) 34 35 from waeup.kofa.students.interfaces import IStudentsUtils, ICourseTicket … … 99 100 'flash_notice', 'certificate', 'faculty', 'parents_email') 100 101 102 class CustomPaymentsManageFormPage(PaymentsManageFormPage): 103 """ Page to manage the student payments. This manage form page is for 104 both students and students officers. EDOCONS does not allow students 105 to remove any payment ticket. 106 """ 107 @property 108 def manage_payments_allowed(self): 109 return checkPermission('waeup.manageStudent', self.context) 110
Note: See TracChangeset for help on using the changeset viewer.