Subversion Repositories SmartDukaan

Rev

Rev 7171 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7168 amit.gupta 1
values = []
2
 
3
expFeature = expSlide.getExpandedFeature(120446)
4
if(expFeature):
5
    expBullets = expFeature.getExpandedBullets()
6
    if expBullets is not None:
7
        for expBullet in expBullets:
8
            communication = str(expBullet.getValue())
9
            if communication == 'Voice call facility':
10
                values.append('TRUE')
11
                return
12
values.append("FALSE")
13