Changeset 5085
- Timestamp:
- 26 Mar 2010, 11:47:46 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/interfaces.py
r5081 r5085 23 23 cost = schema.Float( 24 24 title = u'Cost of access code', 25 default = 0.0, min = 0.0, 25 26 ) 26 27 invalidation_date = schema.Datetime( … … 45 46 ) 46 47 batch_prefix = schema.TextLine( 47 title = u' Prefix inside batch',48 title = u'Batch prefix', 48 49 ) 49 50 batch_num = schema.Int( 50 title = u'Batch number', 51 title = u'Batch number (1-3 digits)', 52 min = 0, max = 999, 53 ) 54 entry_num = schema.Int( 55 title = u'Number of access codes', 56 default = 1000, min = 1, 57 ) 58 cost = schema.Float( 59 title = u'Cost of access code', 60 default = 0.0, min = 0.0, 51 61 ) 52 62
Note: See TracChangeset for help on using the changeset viewer.