source: main/waeup.sirp/trunk/src/waeup/sirp/payments/vocabularies.py @ 6875

Last change on this file since 6875 was 6869, checked in by Henrik Bettermann, 13 years ago

Add user interfaces to add, remove and manage student online payments.

  • Property svn:keywords set to Id
File size: 383 bytes
Line 
1"""Vocabularies and sources for payments.
2"""
3from waeup.sirp.interfaces import SimpleWAeUPVocabulary
4
5payment_states = SimpleWAeUPVocabulary(
6    ('Not yet paid','unpaid'),
7    ('Paid','paid'),
8    )
9
10payment_categories = SimpleWAeUPVocabulary(
11    ('School Fee','schoolfee'),
12    ('Hostel Maintenance','hostel_maintenance'),
13    ('Transfer','transfer'),
14    ('Gown','gown'),
15    )
Note: See TracBrowser for help on using the repository browser.