Subversion Repositories SmartDukaan

Rev

Rev 7168 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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