[103] | 1 | #-*- mode: python; mode: fold -*- |
---|
| 2 | from Globals import InitializeClass |
---|
| 3 | from AccessControl import ClassSecurityInfo |
---|
| 4 | |
---|
| 5 | from Products.CMFCore.utils import UniqueObject, getToolByName |
---|
| 6 | from Products.CMFCore.permissions import View |
---|
| 7 | from Products.CMFCore.permissions import ModifyPortalContent |
---|
[575] | 8 | from Products.CPSCore.CPSBase import CPSBase_adder, CPSBaseFolder |
---|
| 9 | #from Products.CPSCore.CPSBase import CPSBaseDocument as BaseDocument |
---|
| 10 | from Products.CPSDocument.CPSDocument import CPSDocument |
---|
| 11 | from Products.CPSCore.CPSBase import CPSBaseBTreeFolder as BaseBTreeFolder |
---|
[404] | 12 | from Products.WAeUP_SRP.WAeUPTables import AccommodationTable |
---|
[623] | 13 | import Globals |
---|
| 14 | import DateTime |
---|
[638] | 15 | import re |
---|
[623] | 16 | p_home = Globals.package_home(globals()) |
---|
| 17 | i_home = Globals.INSTANCE_HOME |
---|
[103] | 18 | |
---|
| 19 | class AccoFolder(CPSDocument): ###( |
---|
| 20 | """ |
---|
[575] | 21 | WAeUP AccoFolder containing Accommodation halls |
---|
[103] | 22 | """ |
---|
| 23 | meta_type = 'AccoFolder' |
---|
| 24 | portal_type = meta_type |
---|
| 25 | security = ClassSecurityInfo() |
---|
[630] | 26 | |
---|
[575] | 27 | security.declareProtected(View,"Title") |
---|
| 28 | def Title(self): |
---|
| 29 | """compose title""" |
---|
[630] | 30 | return "Accommodation Section" |
---|
[575] | 31 | |
---|
[404] | 32 | security.declareProtected(ModifyPortalContent,"generateFreeBedsList") ###( |
---|
| 33 | def generateFreeBedsList(self): |
---|
| 34 | """ |
---|
| 35 | generate the free Bedslist. |
---|
| 36 | """ |
---|
[623] | 37 | freelist = self.portal_accommodation |
---|
| 38 | l = self.portal_catalog({'meta_type': "AccoHall"}) |
---|
[404] | 39 | halls = [] |
---|
[623] | 40 | generated = [] |
---|
| 41 | generated.append('"Bed","BedType","Student"' % vars()) |
---|
[626] | 42 | beds_generated = [] |
---|
[404] | 43 | for h in l: |
---|
| 44 | halls.append(h.getObject()) |
---|
| 45 | for hall in halls: |
---|
[623] | 46 | #import pdb;pdb.set_trace() |
---|
[404] | 47 | h = hall.getContent() |
---|
[626] | 48 | hall_gen = {} |
---|
[630] | 49 | hall_gen['name'] = hall.Title |
---|
[626] | 50 | count = 0 |
---|
[638] | 51 | #reserved = [int(r) for r in h.reserved_rooms.split(',')] |
---|
[650] | 52 | reserved = [int(r) for r in re.split(',|\.| ',h.reserved_rooms) |
---|
[641] | 53 | if not re.search(r'\D',r) and r] |
---|
[411] | 54 | sex = 'male' |
---|
| 55 | if h.which_sex: |
---|
| 56 | sex = 'female' |
---|
[627] | 57 | for block in range(1,int(h.nr_of_blocks)+1): |
---|
| 58 | for floor in range(1,int(h.nr_of_floors)+1): |
---|
| 59 | for room in range(1,int(h.rooms_per_floor)+1): |
---|
[404] | 60 | for bed in 'ABCDEFGH'[:int(h.beds_per_room)]: |
---|
| 61 | room_nr = floor*100 + room |
---|
[638] | 62 | bt = 're' |
---|
[407] | 63 | if room_nr in reserved: |
---|
[623] | 64 | bt = "reserved" |
---|
| 65 | elif bed in h.beds_for_fresh: |
---|
[407] | 66 | bt = 'fr' |
---|
[638] | 67 | #elif bed in h.beds_for_returning: |
---|
| 68 | # bt = 're' |
---|
[407] | 69 | elif bed in h.beds_for_final: |
---|
| 70 | bt = 'fi' |
---|
[575] | 71 | bt = "%(sex)s_%(bt)s" % vars() |
---|
[623] | 72 | uid = '%s_%d_%d_%s' % (hall.getId(),block,room_nr,bed) |
---|
[626] | 73 | try: |
---|
[627] | 74 | freelist.addRecord(bed = uid, bed_type = bt,hall = hall.getId()) |
---|
[626] | 75 | count +=1 |
---|
| 76 | generated.append('"%(uid)s","%(bt)s"' % vars()) |
---|
| 77 | except ValueError: |
---|
[627] | 78 | #freelist.modifyRecord(bed = uid, bed_type = bt,hall =hall.getId()) |
---|
[626] | 79 | pass |
---|
| 80 | hall_gen['count']= count |
---|
| 81 | beds_generated.append(hall_gen) |
---|
[623] | 82 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 83 | open("%s/import/bedlist_%s.csv" % (i_home,current),"w+").write('\n'.join(generated)) |
---|
[650] | 84 | return self.accommodation.acco_folder_view(beds_generated=beds_generated) |
---|
[152] | 85 | |
---|
[404] | 86 | ###) |
---|
| 87 | |
---|
[103] | 88 | InitializeClass(AccoFolder) |
---|
| 89 | |
---|
| 90 | def addAccoFolder(container, id, REQUEST=None, **kw): |
---|
| 91 | """Add a AccoFolder.""" |
---|
| 92 | ob = AccoFolder(id, **kw) |
---|
| 93 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 94 | ###) |
---|
| 95 | |
---|
[622] | 96 | class AccoHall(CPSDocument): ###( |
---|
[103] | 97 | """ |
---|
[622] | 98 | WAeUP AccoHall containing Departments |
---|
[103] | 99 | """ |
---|
[622] | 100 | meta_type = 'AccoHall' |
---|
[103] | 101 | portal_type = meta_type |
---|
| 102 | security = ClassSecurityInfo() |
---|
[575] | 103 | |
---|
[404] | 104 | security.declareProtected(View,"Title") ###( |
---|
[152] | 105 | def Title(self): |
---|
| 106 | """compose title""" |
---|
| 107 | content = self.getContent() |
---|
| 108 | heading = getattr(content,'heading',None) |
---|
| 109 | if heading is None: |
---|
| 110 | return self.title |
---|
| 111 | return heading |
---|
[404] | 112 | |
---|
| 113 | ###) |
---|
[575] | 114 | |
---|
[622] | 115 | InitializeClass(AccoHall) |
---|
[103] | 116 | |
---|
[622] | 117 | def addAccoHall(container, id, REQUEST=None, **kw): |
---|
| 118 | """Add a AccoHall.""" |
---|
| 119 | ob = AccoHall(id, **kw) |
---|
[103] | 120 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 121 | ###) |
---|