Changeset 17635 for main


Ignore:
Timestamp:
6 Nov 2023, 20:09:17 (11 months ago)
Author:
Henrik Bettermann
Message:

New fees.

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

Legend:

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

    r17104 r17635  
    194194        )
    195195       
     196    gown_fee = schema.Float(
     197        title = _(u'Matriculation Gown Fee'),
     198        default = 0.0,
     199        required = False,
     200        )
     201
     202    global_practics_fee = schema.Float(
     203        title = _(u'Global Practics Fee'),
     204        default = 0.0,
     205        required = False,
     206        )
     207
    196208    def getSessionString():
    197209        """Returns the session string from the vocabulary.
  • main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/utils/utils.py

    r17569 r17635  
    7272        'develop': 'Development Fee',
    7373        'sport': 'Sport Development Fee',
     74        'gown': 'Matriculation Gown Fee',
     75        'global_practics': 'Global Practics Fee',
    7476        }
    7577
     
    102104        'indigene': 'Non-State Indigene Fee',
    103105        'develop': 'Development Fee',
    104         'sport': 'Sport Development Fee',       
     106        'sport': 'Sport Development Fee',
     107        'gown': 'Matriculation Gown Fee',
     108        'global_practics': 'Global Practics Fee',
    105109        }
    106110
Note: See TracChangeset for help on using the changeset viewer.