[12286] | 1 | ## $Id: contracts.py 12501 2015-01-20 18:00:40Z 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 | """ |
---|
| 19 | Customer contract components. |
---|
| 20 | """ |
---|
| 21 | |
---|
| 22 | import grok |
---|
| 23 | from zope.component.interfaces import IFactory |
---|
| 24 | from zope.interface import implementedBy |
---|
| 25 | from waeup.ikoba.utils.helpers import attrs_to_fields |
---|
| 26 | from waeup.ikoba.customers.interfaces import ICustomerNavigation |
---|
| 27 | from waeup.ikoba.customers.contracts import ContractBase |
---|
[12371] | 28 | from ikobacustom.pcn.interfaces import MessageFactory as _ |
---|
| 29 | from ikobacustom.pcn.customers.interfaces import ( |
---|
[12499] | 30 | IRONContract, IRONContractEdit, IRONContractProcess, |
---|
[12501] | 31 | IROPContract, IROPContractEdit, IROPContractProcess, |
---|
| 32 | IRONContractOfficialUse, IROPContractOfficialUse) |
---|
[12273] | 33 | |
---|
| 34 | |
---|
[12484] | 35 | class RONContract(ContractBase): |
---|
[12273] | 36 | """This is a sample contract. |
---|
| 37 | """ |
---|
| 38 | |
---|
| 39 | grok.implements( |
---|
[12484] | 40 | IRONContractProcess, |
---|
| 41 | IRONContract, |
---|
| 42 | IRONContractEdit, |
---|
[12335] | 43 | ICustomerNavigation) |
---|
[12273] | 44 | |
---|
[12488] | 45 | contract_category = 'ron' |
---|
[12273] | 46 | |
---|
[12484] | 47 | form_fields_interface = IRONContract |
---|
[12273] | 48 | |
---|
[12484] | 49 | edit_form_fields_interface = IRONContractEdit |
---|
[12273] | 50 | |
---|
[12501] | 51 | ou_form_fields_interface = IRONContractOfficialUse |
---|
| 52 | |
---|
[12484] | 53 | check_docs_interface = IRONContract |
---|
[12273] | 54 | |
---|
[12484] | 55 | RONContract = attrs_to_fields(RONContract) |
---|
[12273] | 56 | |
---|
| 57 | |
---|
[12484] | 58 | class RONContractFactory(grok.GlobalUtility): |
---|
[12273] | 59 | """A factory for contracts. |
---|
| 60 | """ |
---|
| 61 | grok.implements(IFactory) |
---|
[12484] | 62 | grok.name(u'waeup.RONContract') |
---|
[12401] | 63 | title = u"Create a new license contract.", |
---|
[12499] | 64 | description = u"This factory instantiates new contract instances." |
---|
[12273] | 65 | |
---|
| 66 | def __call__(self, *args, **kw): |
---|
[12484] | 67 | return RONContract(*args, **kw) |
---|
[12273] | 68 | |
---|
| 69 | def getInterfaces(self): |
---|
[12484] | 70 | return implementedBy(RONContract) |
---|
[12499] | 71 | |
---|
| 72 | |
---|
| 73 | class 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 | |
---|
[12501] | 89 | ou_form_fields_interface = IROPContractOfficialUse |
---|
| 90 | |
---|
[12499] | 91 | check_docs_interface = IROPContract |
---|
| 92 | |
---|
| 93 | ROPContract = attrs_to_fields(ROPContract) |
---|
| 94 | |
---|
| 95 | |
---|
| 96 | class 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) |
---|