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

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

Add clearance payment category.

  • Property svn:keywords set to Id
File size: 414 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    ('Clearance','clearance'),
13    ('Hostel Maintenance','hostel_maintenance'),
14    ('Transfer','transfer'),
15    ('Gown','gown'),
16    )
Note: See TracBrowser for help on using the repository browser.