Changeset 10774


Ignore:
Timestamp:
20 Nov 2013, 11:10:10 (11 years ago)
Author:
Henrik Bettermann
Message:

Some more funny interpretations of the Kofa application process.

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  
    2929    """A collection of parameters and methods subject to customization.
    3030    """
     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  
    1818"""Customize general helper utilities for Kofa.
    1919"""
     20
     21from copy import deepcopy
    2022from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
    2123
     
    2426    """
    2527
     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.