Ignore:
Timestamp:
20 Sep 2022, 17:26:47 (2 years ago)
Author:
Henrik Bettermann
Message:

Add payment categories.

Location:
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/interfaces.py

    r17103 r17104  
    177177        )
    178178
     179    indigene_fee = schema.Float(
     180        title = _(u'Non-State Indigene Fee'),
     181        default = 0.0,
     182        required = False,
     183        )
     184    develop_fee = schema.Float(
     185        title = _(u'Development Fee'),
     186        default = 0.0,
     187        required = False,
     188        )       
     189
     190    sport_fee = schema.Float(
     191        title = _(u'Sport Development Fee'),
     192        default = 0.0,
     193        required = False,
     194        )
     195       
    179196    def getSessionString():
    180197        """Returns the session string from the vocabulary.
  • main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/utils/utils.py

    r17103 r17104  
    6969        'cyber': 'Cyber Security',
    7070        'ispon': 'ISPON Safety',
     71        'indigene': 'Non-State Indigene Fee',
     72        'develop': 'Development Fee',
     73        'sport': 'Sport Development Fee',
    7174        }
    7275
     
    97100        'cyber': 'Cyber Security',
    98101        'ispon': 'ISPON Safety',
     102        'indigene': 'Non-State Indigene Fee',
     103        'develop': 'Development Fee',
     104        'sport': 'Sport Development Fee',       
    99105        }
    100106
Note: See TracChangeset for help on using the changeset viewer.