source: main/kofacustom.pcn/trunk/src/kofacustom/pcn/utils/utils.py @ 11844

Last change on this file since 11844 was 11844, checked in by Henrik Bettermann, 10 years ago

Customize pdf slip. Add logo and watermark.

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
1## $Id: utils.py 11844 2014-10-15 07:06:39Z 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"""
20from copy import deepcopy
21from waeup.kofa.utils.utils import KofaUtils
22
23class CustomKofaUtils(KofaUtils):
24    """A collection of methods subject to customization.
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        'application': '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 TracBrowser for help on using the repository browser.