source: main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/contracts.py @ 12560

Last change on this file since 12560 was 12501, checked in by Henrik Bettermann, 10 years ago

Configure IROPContract.

Add IRONContractOfficialUse and IROPContractOfficialUse.

  • Property svn:keywords set to Id
File size: 3.1 KB
Line 
1## $Id: contracts.py 12501 2015-01-20 18:00:40Z 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.pcn.interfaces import MessageFactory as _
29from ikobacustom.pcn.customers.interfaces import (
30    IRONContract, IRONContractEdit, IRONContractProcess,
31    IROPContract, IROPContractEdit, IROPContractProcess,
32    IRONContractOfficialUse, IROPContractOfficialUse)
33
34
35class RONContract(ContractBase):
36    """This is a sample contract.
37    """
38
39    grok.implements(
40        IRONContractProcess,
41        IRONContract,
42        IRONContractEdit,
43        ICustomerNavigation)
44
45    contract_category = 'ron'
46
47    form_fields_interface = IRONContract
48
49    edit_form_fields_interface = IRONContractEdit
50
51    ou_form_fields_interface = IRONContractOfficialUse
52
53    check_docs_interface = IRONContract
54
55RONContract = attrs_to_fields(RONContract)
56
57
58class RONContractFactory(grok.GlobalUtility):
59    """A factory for contracts.
60    """
61    grok.implements(IFactory)
62    grok.name(u'waeup.RONContract')
63    title = u"Create a new license contract.",
64    description = u"This factory instantiates new contract instances."
65
66    def __call__(self, *args, **kw):
67        return RONContract(*args, **kw)
68
69    def getInterfaces(self):
70        return implementedBy(RONContract)
71
72
73class ROPContract(ContractBase):
74    """This is a sample contract.
75    """
76
77    grok.implements(
78        IROPContractProcess,
79        IROPContract,
80        IROPContractEdit,
81        ICustomerNavigation)
82
83    contract_category = 'rop'
84
85    form_fields_interface = IROPContract
86
87    edit_form_fields_interface = IROPContractEdit
88
89    ou_form_fields_interface = IROPContractOfficialUse
90
91    check_docs_interface = IROPContract
92
93ROPContract = attrs_to_fields(ROPContract)
94
95
96class ROPContractFactory(grok.GlobalUtility):
97    """A factory for contracts.
98    """
99    grok.implements(IFactory)
100    grok.name(u'waeup.ROPContract')
101    title = u"Create a new license contract.",
102    description = u"This factory instantiates new contract instances."
103
104    def __call__(self, *args, **kw):
105        return ROPContract(*args, **kw)
106
107    def getInterfaces(self):
108        return implementedBy(ROPContract)
Note: See TracBrowser for help on using the repository browser.