source: main/ikobacustom.uniben/trunk/src/ikobacustom/uniben/customers/contracts.py @ 16536

Last change on this file since 16536 was 14184, checked in by Henrik Bettermann, 8 years ago

Further customizations.

  • Property svn:keywords set to Id
File size: 2.3 KB
RevLine 
[12286]1## $Id: contracts.py 14184 2016-09-23 16:38:53Z henrik $
[12273]2##
3## Copyright (C) 2014 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##
18"""
19Customer contract components.
20"""
21
22import grok
23from zope.component.interfaces import IFactory
24from zope.interface import implementedBy
25from waeup.ikoba.utils.helpers import attrs_to_fields
26from waeup.ikoba.customers.interfaces import ICustomerNavigation
27from waeup.ikoba.customers.contracts import ContractBase
[14178]28from ikobacustom.uniben.interfaces import MessageFactory as _
29from ikobacustom.uniben.customers.interfaces import (
[14184]30    IRIAAContract, IRIAAContractEdit, IRIAAContractProcess,
31    IRIAAContractOfficialUse)
[12273]32
33
[14181]34class UnibenContract(ContractBase):
[14184]35    """This is a baseclass contract.
[12273]36    """
37
[14184]38class RIAAContract(UnibenContract):
39    """Research and Innovative Achievement Award
40    """
41
[12273]42    grok.implements(
[14184]43        IRIAAContractProcess,
44        IRIAAContract,
45        IRIAAContractEdit,
[12335]46        ICustomerNavigation)
[12273]47
[14184]48    contract_category = 'riaa'
[12273]49
[14184]50    form_fields_interface = IRIAAContract
[12273]51
[14184]52    edit_form_fields_interface = IRIAAContractEdit
[12273]53
[14184]54    ou_form_fields_interface = IRIAAContractOfficialUse
[12502]55
[14184]56    check_docs_interface = IRIAAContract
[12273]57
[14184]58RIAAContract = attrs_to_fields(RIAAContract)
[12273]59
60
61# Contracts must be importable. So we might need a factory.
[14184]62class RIAAContractFactory(grok.GlobalUtility):
63    """A factory for RIAAContract.
[12273]64    """
65    grok.implements(IFactory)
[14184]66    grok.name(u'waeup.RIAAContract')
67    title = u"Create a new riaa contract.",
68    description = u"This factory instantiates new riaa contract instances."
[12273]69
70    def __call__(self, *args, **kw):
[14184]71        return RIAAContract(*args, **kw)
[12273]72
73    def getInterfaces(self):
[14184]74        return implementedBy(RIAAContract)
Note: See TracBrowser for help on using the repository browser.