コード例 #1
0
 def folderitems(self, full_objects=True):
     # In sampling rounds, analysis request list will be listed per Sample Partition/Container
     # Obtaining analysis requests
     items = _ARV.folderitems(self, full_objects)
     new_items = []
     for x in range(len(items)):
         if 'obj' not in items[x]:
             new_items.append(items[x])
             continue
         obj = items[x]['obj']
         # Getting the sampling round template uid
         srTemplateUID = obj.getSamplingRound(
         ).sr_template if obj.getSamplingRound().sr_template else ''
         # Getting the sampling round object
         catalog = getToolByName(self.context, 'uid_catalog')
         srTemplateObj = catalog(
             UID=srTemplateUID)[0].getObject() if catalog(
                 UID=srTemplateUID) else None
         # Getting the partitions and creating a row per partition
         partitions = obj.getPartitions()
         for part in partitions:
             item = items[x].copy()
             # We ave to make a copy of 'replace' because it's a reference to a dict object
             item['replace'] = items[x]['replace'].copy()
             item['partition'] = part.id
             if part.getContainer():
                 img_url = '<img src="' + self.portal_url + '/++resource++bika.lims.images/ok.png"/>'
                 item['securitySealIntact'] = part.getContainer(
                 ).getSecuritySealIntact()
                 item['replace']['securitySealIntact'] = img_url \
                     if part.getContainer().getSecuritySealIntact() else ' '
             else:
                 item['securitySealIntact'] = ' '
             item['replace']['partition'] = "<a href='%s'>%s</a>" % (
                 part.absolute_url(), item['partition'])
             item[
                 'samplingRoundTemplate'] = srTemplateObj.title if srTemplateObj else ''
             if srTemplateObj:
                 item['replace']['samplingRoundTemplate'] = \
                     "<a href='%s'>%s</a>" % (srTemplateObj.absolute_url, item['samplingRoundTemplate'])
             new_items.append(item)
     return new_items
コード例 #2
0
 def folderitems(self, full_objects=True):
     # In sampling rounds, analysis request list will be listed per Sample Partition/Container
     # Obtaining analysis requests
     items = _ARV.folderitems(self, full_objects)
     new_items = []
     for x in range(len(items)):
         if 'obj' not in items[x]:
             new_items.append(items[x])
             continue
         obj = items[x]['obj']
         # Getting the sampling round template uid
         srTemplateUID = obj.getSamplingRound().sr_template if obj.getSamplingRound().sr_template else ''
         # Getting the sampling round object
         catalog = getToolByName(self.context, 'uid_catalog')
         srTemplateObj = catalog(UID=srTemplateUID)[0].getObject() if catalog(UID=srTemplateUID) else None
         # Getting the partitions and creating a row per partition
         partitions = obj.getPartitions()
         for part in partitions:
             item = items[x].copy()
             # We ave to make a copy of 'replace' because it's a reference to a dict object
             item['replace'] = items[x]['replace'].copy()
             item['partition'] = part.id
             if part.getContainer():
                 img_url = '<img src="'+self.portal_url+'/++resource++bika.lims.images/ok.png"/>'
                 item['securitySealIntact'] = part.getContainer().getSecuritySealIntact()
                 item['replace']['securitySealIntact'] = img_url \
                     if part.getContainer().getSecuritySealIntact() else ' '
             else:
                 item['securitySealIntact'] = ' '
             item['replace']['partition'] = "<a href='%s'>%s</a>" % (part.absolute_url(), item['partition'])
             item['samplingRoundTemplate'] = srTemplateObj.title if srTemplateObj else ''
             if srTemplateObj:
                 item['replace']['samplingRoundTemplate'] = \
                     "<a href='%s'>%s</a>" % (srTemplateObj.absolute_url, item['samplingRoundTemplate'])
             new_items.append(item)
     return new_items