Changeset 10774 for main/kofacustom.ekodisco
- Timestamp:
- 20 Nov 2013, 11:10:10 (11 years ago)
- Location:
- main/kofacustom.ekodisco/trunk/src/kofacustom/ekodisco
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.ekodisco/trunk/src/kofacustom/ekodisco/applicants/utils.py
r10770 r10774 29 29 """A collection of parameters and methods subject to customization. 30 30 """ 31 32 APP_TYPES_DICT = { 33 'green': ['Green Energy', 'GR'], 34 'fossil': ['Fossil Energy', 'FS'], 35 } -
main/kofacustom.ekodisco/trunk/src/kofacustom/ekodisco/utils/utils.py
r10770 r10774 18 18 """Customize general helper utilities for Kofa. 19 19 """ 20 21 from copy import deepcopy 20 22 from kofacustom.nigeria.utils.utils import NigeriaKofaUtils 21 23 … … 24 26 """ 25 27 28 INST_TYPES_DICT = { 29 'none': '', 30 } 31 32 APP_CATS_DICT = { 33 'green': 'Green Energy', 34 'fossil': 'Fossil Energy', 35 } 36 37 PAYMENT_CATEGORIES = { 38 'electricity': 'Electricity', 39 } 40 41 SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES)
Note: See TracChangeset for help on using the changeset viewer.