Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
4135 varun.gupt 1
values = []
2
 
6997 amit.gupta 3
childExpSlides = expSlide.getExpandedChildrenSlides()
4
if(childExpSlides):
5
    for childExpSlide in childExpSlides :
6
        if childExpSlide.getSlideDefinitionID() == 130093:
7
           expFeature = childExpSlide.getExpandedFeature(120112)
8
           if expFeature:
9
               expBullets = expFeature.getExpandedBullets()
10
               if expBullets is not None:
11
                   for expBullet in expBullets:
12
                       storage = str(expBullet.getValue())
13
                       unit = str(expBullet.getUnit().getShortForm())
14
                       values.append(storage + " " + unit)
15
           break