Last change
on this file since 6925 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
|
Rev | Line | |
---|
[6864] | 1 | """Vocabularies and sources for payments. |
---|
| 2 | """ |
---|
| 3 | from waeup.sirp.interfaces import SimpleWAeUPVocabulary |
---|
| 4 | |
---|
| 5 | payment_states = SimpleWAeUPVocabulary( |
---|
[6869] | 6 | ('Not yet paid','unpaid'), |
---|
| 7 | ('Paid','paid'), |
---|
[6864] | 8 | ) |
---|
| 9 | |
---|
| 10 | payment_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.