Changeset 11841
- Timestamp:
- 14 Oct 2014, 10:56:18 (10 years ago)
- Location:
- main/kofacustom.pcn/trunk/src/kofacustom/pcn
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.pcn/trunk/src/kofacustom/pcn/applicants/utils.py
r11832 r11841 25 25 """A collection of parameters and methods subject to customization. 26 26 """ 27 28 APP_TYPES_DICT = { 29 'pal': ['Pharmacist Annual License', 'XXX'], 30 'pl': ['Premises License', 'XXX'], 31 'ptap': ['Pharmacy Technician Annual Permit', 'XXX'], 32 'ppmvl': ['Patent and Proprietary Medicine Vendor License', 'XXX'], 33 'pmrpp': ['Pharmaceutical and Medical Representative Permit', 'XXX'], 34 'sop': ['Scientific Office Permit', 'XXX'], 35 } -
main/kofacustom.pcn/trunk/src/kofacustom/pcn/university/faculty.py
r11840 r11841 4 4 from waeup.kofa.interfaces import (IKofaObject, IKofaContainer, validate_email) 5 5 from waeup.kofa.university.interfaces import ICertificate 6 from waeup.kofa.university.certificatescontainer import CertificatesContainer 6 7 from waeup.kofa.university.faculty import ( 7 8 Faculty, FacultyFactory) … … 146 147 self.title_prefix = title_prefix 147 148 self.code = code 148 self.courses = CoursesContainer()149 self.courses.__parent__ = self150 self.courses.__name__ = 'courses'151 149 self.certificates = CertificatesContainer() 152 150 self.certificates.__parent__ = self
Note: See TracChangeset for help on using the changeset viewer.