source: main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/interfaces.py @ 7798

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

Some minor changes on. The po files are now released for editing.

  • Property svn:keywords set to Id
File size: 3.0 KB
RevLine 
[7195]1## $Id: interfaces.py 7745 2012-03-02 06:53:59Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
[5068]18"""Interfaces of access code related components.
19"""
20from zope import schema
21from zope.interface import Interface
[7321]22from waeup.sirp.interfaces import ISIRPObject
[7719]23from waeup.sirp.interfaces import MessageFactory as _
[5068]24
[7321]25class IAccessCode(ISIRPObject):
[5068]26    """An access code.
27    """
28    batch_serial = schema.Int(
[7719]29        title = _(u'Serial number inside batch'),
[5068]30        )
31    batch_prefix = schema.TextLine(
[7719]32        title = _(u'Prefix inside batch'),
[5068]33        )
34    batch_num = schema.Int(
[7719]35        title = _(u'Batch number'),
[5068]36        )
37    random_num = schema.TextLine(
[7745]38        title = _(u'Random part of access code'),
[5068]39        )
40    cost = schema.Float(
[7719]41        title = _(u'Cost of access code'),
[5085]42        default = 0.0, min = 0.0,
[5068]43        )
[6470]44    state = schema.TextLine(
[7719]45        title = _(u'Workflow state'),
[6450]46        )
[5098]47    representation = schema.TextLine(
[7719]48        title = _(u'Complete title of access code'),
[5098]49        )
[6927]50    owner = schema.TextLine(
[7719]51        title = _(u'Purchaser'),
[6927]52        )
[6423]53    history = schema.Text(
[7719]54        title = _(u'The history of access code as lines'),
[6423]55        default = u'',
56        readonly = True,
57       )
[6413]58
[5068]59class IAccessCodeBatch(Interface):
60    """A factory for batches of access codes.
61    """
62    creation_date = schema.Date(
[7719]63        title = _(u'Creation date'),
[5068]64        )
65    creator = schema.TextLine(
[7719]66        title = _(u'Batch creator'),
[5068]67        )
[6415]68    prefix = schema.TextLine(
[7719]69        title = _(u'Batch prefix'),
[5068]70        )
[6415]71    num = schema.Int(
[7719]72        title = _(u'Batch number (1-3 digits)'),
[5085]73        min = 0, max = 999,
[5068]74        )
[5085]75    entry_num = schema.Int(
[7719]76        title = _(u'Number of access codes'),
[6931]77        default = 1000, min = 0,
[5085]78        )
79    cost = schema.Float(
[7719]80        title = _(u'Cost of access code'),
[5085]81        default = 0.0, min = 0.0,
82        )
[6425]83    disabled_num = schema.Int(
[7719]84        title = _(u'Number of disabled access codes inside the batch'),
[6425]85        default = 0,
86        readonly = True,
87        )
88    used_num = schema.Int(
[7719]89        title = _(u'Number of used access codes inside the batch'),
[6425]90        default = 0,
91        readonly = True,
92        )
[5081]93
[7321]94class IAccessCodeBatchContainer(ISIRPObject):
[5081]95    """A container for access code batches.
96    """
97
98    def addBatch(batch):
99        """Add a batch.
100        """
Note: See TracBrowser for help on using the repository browser.