[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 |
---|
[926] | 51 | reserved = [(r.split('/')[0],int(r.split('/')[1])) for r in re.split(',|\.| ',h.reserved_rooms) |
---|
[714] | 52 | if r] |
---|
[926] | 53 | #for block in range(1,int(h.nr_of_blocks)+1): |
---|
| 54 | for block in 'ABCDEFGHIJ'[:int(h.nr_of_blocks)]: |
---|
[934] | 55 | sex = 'male' |
---|
| 56 | if block in h.blocks_for_female: |
---|
| 57 | sex = 'female' |
---|
[627] | 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' |
---|
[714] | 63 | if (block,room_nr) in reserved: |
---|
[623] | 64 | bt = "reserved" |
---|
[936] | 65 | elif not h.special_handling.startswith("no"): |
---|
[926] | 66 | bt = h.special_handling |
---|
[623] | 67 | elif bed in h.beds_for_fresh: |
---|
[407] | 68 | bt = 'fr' |
---|
[638] | 69 | #elif bed in h.beds_for_returning: |
---|
| 70 | # bt = 're' |
---|
[407] | 71 | elif bed in h.beds_for_final: |
---|
| 72 | bt = 'fi' |
---|
[936] | 73 | if h.special_handling.startswith("no_"): |
---|
[952] | 74 | bt += "_" + h.special_handling[3:] |
---|
[575] | 75 | bt = "%(sex)s_%(bt)s" % vars() |
---|
[926] | 76 | uid = '%s_%s_%d_%s' % (hall.getId(),block,room_nr,bed) |
---|
[626] | 77 | try: |
---|
[627] | 78 | freelist.addRecord(bed = uid, bed_type = bt,hall = hall.getId()) |
---|
[626] | 79 | count +=1 |
---|
| 80 | generated.append('"%(uid)s","%(bt)s"' % vars()) |
---|
| 81 | except ValueError: |
---|
[627] | 82 | #freelist.modifyRecord(bed = uid, bed_type = bt,hall =hall.getId()) |
---|
[626] | 83 | pass |
---|
| 84 | hall_gen['count']= count |
---|
| 85 | beds_generated.append(hall_gen) |
---|
[623] | 86 | current = DateTime.DateTime().strftime("%d-%m-%y_%H_%M_%S") |
---|
| 87 | open("%s/import/bedlist_%s.csv" % (i_home,current),"w+").write('\n'.join(generated)) |
---|
[650] | 88 | return self.accommodation.acco_folder_view(beds_generated=beds_generated) |
---|
[152] | 89 | |
---|
[404] | 90 | ###) |
---|
| 91 | |
---|
[103] | 92 | InitializeClass(AccoFolder) |
---|
| 93 | |
---|
| 94 | def addAccoFolder(container, id, REQUEST=None, **kw): |
---|
| 95 | """Add a AccoFolder.""" |
---|
| 96 | ob = AccoFolder(id, **kw) |
---|
| 97 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 98 | ###) |
---|
| 99 | |
---|
[622] | 100 | class AccoHall(CPSDocument): ###( |
---|
[103] | 101 | """ |
---|
[622] | 102 | WAeUP AccoHall containing Departments |
---|
[103] | 103 | """ |
---|
[622] | 104 | meta_type = 'AccoHall' |
---|
[103] | 105 | portal_type = meta_type |
---|
| 106 | security = ClassSecurityInfo() |
---|
[575] | 107 | |
---|
[404] | 108 | security.declareProtected(View,"Title") ###( |
---|
[152] | 109 | def Title(self): |
---|
| 110 | """compose title""" |
---|
| 111 | content = self.getContent() |
---|
| 112 | heading = getattr(content,'heading',None) |
---|
| 113 | if heading is None: |
---|
| 114 | return self.title |
---|
| 115 | return heading |
---|
[404] | 116 | |
---|
| 117 | ###) |
---|
[575] | 118 | |
---|
[622] | 119 | InitializeClass(AccoHall) |
---|
[103] | 120 | |
---|
[622] | 121 | def addAccoHall(container, id, REQUEST=None, **kw): |
---|
| 122 | """Add a AccoHall.""" |
---|
| 123 | ob = AccoHall(id, **kw) |
---|
[103] | 124 | return CPSBase_adder(container, ob, REQUEST=REQUEST) |
---|
| 125 | ###) |
---|