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

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

Further customizations.

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