Subversion Repositories SmartDukaan

Rev

Rev 4271 | Blame | Compare with Previous | Last modification | View Log | RSS feed

values = []

childExpSlides = expSlide.getExpandedChildrenSlides()
if(childExpSlides):
    for childExpSlide in childExpSlides :
        if childExpSlide.getSlideDefinitionID() == 130093:
           expFeature = childExpSlide.getExpandedFeature(120112)
           if expFeature:
               expBullets = expFeature.getExpandedBullets()
               if expBullets is not None:
                   for expBullet in expBullets:
                       storage = str(expBullet.getValue())
                       unit = str(expBullet.getUnit().getShortForm())
                       values.append(storage + " " + unit)
           break