Changeset 5085


Ignore:
Timestamp:
26 Mar 2010, 11:47:46 (15 years ago)
Author:
uli
Message:

Update interfaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/interfaces.py

    r5081 r5085  
    2323    cost = schema.Float(
    2424        title = u'Cost of access code',
     25        default = 0.0, min = 0.0,
    2526        )
    2627    invalidation_date = schema.Datetime(
     
    4546        )
    4647    batch_prefix = schema.TextLine(
    47         title = u'Prefix inside batch',
     48        title = u'Batch prefix',
    4849        )
    4950    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,
    5161        )
    5262
Note: See TracChangeset for help on using the changeset viewer.