Subversion Repositories SmartDukaan

Rev

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

Rev 12992 Rev 12993
Line 707... Line 707...
707
    for order in orders:
707
    for order in orders:
708
        if order.pickupStoreId:
708
        if order.pickupStoreId:
709
            sendSms= False
709
            sendSms= False
710
        transactionAmount = transactionAmount + order.total_amount
710
        transactionAmount = transactionAmount + order.total_amount
711
        for lineitem in order.lineitems:
711
        for lineitem in order.lineitems:
712
            orderQuantity = orderQuantity + lineitem.model_number
712
            orderQuantity = orderQuantity + lineitem.quantity
713
    
713
    
714
    oneProduct = str(orders[0].lineitems[0])
714
    oneProduct = str(orders[0].lineitems[0])
715
    
715
    
716
    smsText = smsText + oneProduct
716
    smsText = smsText + oneProduct
717
            
717