Changeset 11841 for main


Ignore:
Timestamp:
14 Oct 2014, 10:56:18 (10 years ago)
Author:
Henrik Bettermann
Message:

More adjustments.

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  
    2525    """A collection of parameters and methods subject to customization.
    2626    """
     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  
    44from waeup.kofa.interfaces import (IKofaObject, IKofaContainer, validate_email)
    55from waeup.kofa.university.interfaces import ICertificate
     6from waeup.kofa.university.certificatescontainer import CertificatesContainer
    67from waeup.kofa.university.faculty import (
    78    Faculty, FacultyFactory)
     
    146147        self.title_prefix = title_prefix
    147148        self.code = code
    148         self.courses = CoursesContainer()
    149         self.courses.__parent__ = self
    150         self.courses.__name__ = 'courses'
    151149        self.certificates = CertificatesContainer()
    152150        self.certificates.__parent__ = self
Note: See TracChangeset for help on using the changeset viewer.