Subversion Repositories SmartDukaan

Rev

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

Rev 12268 Rev 12271
Line 205... Line 205...
205
            print "MFN PRICE ",mfnPrice
205
            print "MFN PRICE ",mfnPrice
206
            print "FBA PRICE ",fbaPrice
206
            print "FBA PRICE ",fbaPrice
207
            print "Lowest Seller SP ",lowestSp
207
            print "Lowest Seller SP ",lowestSp
208
            print "LOWEST SELLER NAME ",lowestSeller
208
            print "LOWEST SELLER NAME ",lowestSeller
209
            
209
            
210
            amazonItem.ourMfnPrice = float(mfnPrice.replace("Rs.","").replace(",",""))
210
            amazonItem.ourMfnPrice = float(str(mfnPrice).replace("Rs.","").replace(",",""))
211
            amazonItem.ourFbaPrice = float(fbaPrice.replace("Rs.","").replace(",",""))
211
            amazonItem.ourFbaPrice = float(str(fbaPrice).replace("Rs.","").replace(",",""))
212
            amazonItem.ourMfnInventory = int(mfnInventory)
212
            amazonItem.ourMfnInventory = int(mfnInventory)
213
            amazonItem.ourFbaInventory = int(fbaInventory)
213
            amazonItem.ourFbaInventory = int(fbaInventory)
214
            amazonItem.lowestAmazonPrice = float(lowestSp)
214
            amazonItem.lowestAmazonPrice = float(lowestSp)
215
            amazonItem.lowestAmazonSeller = lowestSeller
215
            amazonItem.lowestAmazonSeller = lowestSeller
216
 
216