[10765] | 1 | ## $Id: utils.py 12234 2014-12-14 21:48:41Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2012 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | """Customize general helper utilities for Kofa. |
---|
| 19 | """ |
---|
[11839] | 20 | from copy import deepcopy |
---|
[11687] | 21 | from waeup.kofa.utils.utils import KofaUtils |
---|
[10765] | 22 | |
---|
[11687] | 23 | class CustomKofaUtils(KofaUtils): |
---|
[10765] | 24 | """A collection of methods subject to customization. |
---|
| 25 | """ |
---|
| 26 | |
---|
[11839] | 27 | INST_TYPES_DICT = { |
---|
| 28 | 'none': '', |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | STUDY_MODES_DICT = { |
---|
| 32 | 'na': 'not applicable', |
---|
[12234] | 33 | 'ug_ft': 'not applicable', |
---|
[11839] | 34 | } |
---|
| 35 | |
---|
| 36 | APP_CATS_DICT = { |
---|
| 37 | 'pal': 'Pharmacist Annual License', |
---|
| 38 | 'pl': 'Premises License', |
---|
| 39 | 'ptap': 'Pharmacy Technician Annual Permit', |
---|
| 40 | 'ppmvl': 'Patent and Proprietary Medicine Vendor License', |
---|
| 41 | 'pmrp': 'Pharmaceutical and Medical Representative Permit', |
---|
| 42 | 'sop': 'Scientific Office Permit', |
---|
[12234] | 43 | 'basic': 'Not applicable', |
---|
[11839] | 44 | } |
---|
| 45 | |
---|
| 46 | PAYMENT_CATEGORIES = { |
---|
[11844] | 47 | 'application': 'Registration Fee', |
---|
[12234] | 48 | 'schoolfee': 'Not applicable', |
---|
[11839] | 49 | } |
---|
| 50 | |
---|
| 51 | SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES) |
---|
| 52 | |
---|
| 53 | PREVIOUS_PAYMENT_CATEGORIES = deepcopy(SELECTABLE_PAYMENT_CATEGORIES) |
---|
| 54 | |
---|
| 55 | BALANCE_PAYMENT_CATEGORIES = { |
---|
| 56 | 'registration': 'Registration Fee', |
---|
| 57 | } |
---|
| 58 | |
---|
| 59 | MODE_GROUPS = { |
---|
| 60 | 'All': ('all',), |
---|
| 61 | } |
---|