Subversion Repositories SmartDukaan

Rev

Rev 7168 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7168 amit.gupta 1
values = []
7171 amit.gupta 2
value = "FALSE"
7168 amit.gupta 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':
7171 amit.gupta 10
                value = 'TRUE'
11
                break
12
values.append(value)
7168 amit.gupta 13