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

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

Fix vocabs.

  • 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.