source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/batching.py @ 6603

Last change on this file since 6603 was 6478, checked in by Henrik Bettermann, 13 years ago

Add HB to copyright line.

File size: 2.2 KB
RevLine 
[5321]1##
2## batching.py
3## Login : <uli@pu.smp.net>
4## Started on  Fri Jul 23 15:42:46 2010 Uli Fouquet
5## $Id$
6##
[6478]7## Copyright (C) 2010 Uli Fouquet & Henrik Bettermann
[5321]8## This program is free software; you can redistribute it and/or modify
9## it under the terms of the GNU General Public License as published by
10## the Free Software Foundation; either version 2 of the License, or
11## (at your option) any later version.
12##
13## This program is distributed in the hope that it will be useful,
14## but WITHOUT ANY WARRANTY; without even the implied warranty of
15## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16## GNU General Public License for more details.
17##
18## You should have received a copy of the GNU General Public License
19## along with this program; if not, write to the Free Software
20## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21##
22"""Batch processing for applicants.
23"""
24import grok
25from zope.interface import Interface
26from waeup.sirp.interfaces import IBatchProcessor
27from waeup.sirp.utils.batching import BatchProcessor
[6251]28from waeup.sirp.applicants.interfaces import IApplicantsContainer
[5321]29
[6251]30class ApplicantsContainerImporter(BatchProcessor):
31    """An importer for applicants containers.
[5321]32    """
[5474]33    grok.implements(IBatchProcessor)
[5321]34    grok.provides(IBatchProcessor)
35    grok.context(Interface)
[6251]36    util_name = 'applicants container importer'
[5321]37    grok.name(util_name)
38
[6251]39    name = u'Applicants Container Importer'
[5475]40    mode = u'create'
[6251]41    iface = IApplicantsContainer
[5321]42
[6251]43    location_fields = ['code',]
[6282]44    factory_name = 'waeup.ApplicantsContainer'
[5321]45
46    def parentsExist(self, row, site):
[6251]47        return 'applicants' in site.keys()
[5321]48
49    def entryExists(self, row, site):
[6251]50        return row['code'] in site['applicants'].keys()
[5321]51
52    def getParent(self, row, site):
[6251]53        return site['applicants']
[5321]54
55    def getEntry(self, row, site):
56        if not self.entryExists(row, site):
57            return None
58        parent = self.getParent(row, site)
[6251]59        return parent.get(row['code'])
[5321]60
61    def addEntry(self, obj, row, site):
62        parent = self.getParent(row, site)
[6251]63        parent[row['code']] = obj
[5321]64        return
65
66    def delEntry(self, row, site):
67        parent = self.getParent(row, site)
[6251]68        del parent[row['code']]
[5321]69        return
Note: See TracBrowser for help on using the repository browser.