Subversion Repositories SmartDukaan

Rev

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

Rev 4516 Rev 4533
Line 98... Line 98...
98
            Cart cart = userClient.getCart(cartId);
98
            Cart cart = userClient.getCart(cartId);
99
            
99
            
100
            String couponCode = cart.getCouponCode();
100
            String couponCode = cart.getCouponCode();
101
            logger.info("Coupon: " + couponCode);
101
            logger.info("Coupon: " + couponCode);
102
            
102
            
103
            if(couponCode != null && couponCode.trim().equals("SH911"))	{
103
            if(couponCode != null && couponCode.trim().equalsIgnoreCase("SH911"))	{
104
            	showCodOption = false;
104
            	showCodOption = false;
105
            }
105
            }
106
            
106
            
107
            setTotalAmount(cart);
107
            setTotalAmount(cart);
108
            itemIdString = Utils.getItemIdStringInCart(cart);
108
            itemIdString = Utils.getItemIdStringInCart(cart);