source: main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/documents.py @ 12374

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

Replace 'skeleton' by 'pcn'.

  • Property svn:keywords set to Id
File size: 2.3 KB
RevLine 
[12286]1## $Id: documents.py 12371 2015-01-03 07:38:07Z 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 document components.
20"""
21import grok
22from zope.component.interfaces import IFactory
23from zope.interface import implementedBy
24from waeup.ikoba.utils.helpers import attrs_to_fields
25from waeup.ikoba.customers.interfaces import ICustomerNavigation
26from waeup.ikoba.customers.documents import CustomerDocumentBase
[12371]27from ikobacustom.pcn.interfaces import MessageFactory as _
28from ikobacustom.pcn.customers.interfaces import IPCNCustomerDocument
[12273]29
30
[12371]31class PCNCustomerDocument(CustomerDocumentBase):
[12273]32    """This is a sample customer document.
33    """
34
[12371]35    grok.implements(IPCNCustomerDocument, ICustomerNavigation)
36    grok.provides(IPCNCustomerDocument)
[12273]37
38    # Ikoba can store any number of files per Document object.
39    # However, we highly recommend to associate and store
40    # only one file per Document object. Thus the following
41    # tuple should contain only a single filename string.
42    filenames = ('sample',)
43
[12371]44    form_fields_interface = IPCNCustomerDocument
[12273]45
[12371]46PCNCustomerDocument = attrs_to_fields(PCNCustomerDocument)
[12273]47
48
49# Customer documents must be importable. So we need a factory.
[12371]50class PCNCustomerDocumentFactory(grok.GlobalUtility):
[12273]51    """A factory for customer documents.
52    """
53    grok.implements(IFactory)
[12371]54    grok.name(u'waeup.PCNCustomerDocument')
[12273]55    title = u"Create a new document.",
56    description = u"This factory instantiates new sample document instances."
57
58    def __call__(self, *args, **kw):
[12371]59        return PCNCustomerDocument(*args, **kw)
[12273]60
61    def getInterfaces(self):
[12371]62        return implementedBy(PCNCustomerDocument)
Note: See TracBrowser for help on using the repository browser.