- Timestamp:
- 14 Oct 2014, 09:06:20 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.pcn/trunk/src/kofacustom/pcn/utils/utils.py
r11687 r11839 18 18 """Customize general helper utilities for Kofa. 19 19 """ 20 from copy import deepcopy 20 21 from waeup.kofa.utils.utils import KofaUtils 21 22 … … 24 25 """ 25 26 27 INST_TYPES_DICT = { 28 'none': '', 29 } 30 31 STUDY_MODES_DICT = { 32 'na': 'not applicable', 33 } 34 35 APP_CATS_DICT = { 36 'pal': 'Pharmacist Annual License', 37 'pl': 'Premises License', 38 'ptap': 'Pharmacy Technician Annual Permit', 39 'ppmvl': 'Patent and Proprietary Medicine Vendor License', 40 'pmrp': 'Pharmaceutical and Medical Representative Permit', 41 'sop': 'Scientific Office Permit', 42 } 43 44 PAYMENT_CATEGORIES = { 45 'registration': 'Registration Fee', 46 } 47 48 SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES) 49 50 PREVIOUS_PAYMENT_CATEGORIES = deepcopy(SELECTABLE_PAYMENT_CATEGORIES) 51 52 BALANCE_PAYMENT_CATEGORIES = { 53 'registration': 'Registration Fee', 54 } 55 56 MODE_GROUPS = { 57 'All': ('all',), 58 }
Note: See TracChangeset for help on using the changeset viewer.