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

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

Fix vocabs.

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