Subversion Repositories SmartDukaan

Rev

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

Rev 9667 Rev 9679
Line 141... Line 141...
141
	    
141
	    
142
	    List<CartLinePojo> linepojos = new ArrayList<CartLinePojo>();
142
	    List<CartLinePojo> linepojos = new ArrayList<CartLinePojo>();
143
	    
143
	    
144
	    for(Line line : cart.getLines()) {
144
	    for(Line line : cart.getLines()) {
145
	        CartLinePojo linepojo = new CartLinePojo();
145
	        CartLinePojo linepojo = new CartLinePojo();
-
 
146
	        linepojo.setItemId(line.getItemId());
146
	        linepojo.setActualPrice(line.getActualPrice());
147
	        linepojo.setActualPrice(line.getActualPrice());
147
	        linepojo.setDataProtectionAmount(line.getDataProtectionAmount());
148
	        linepojo.setDataProtectionAmount(line.getDataProtectionAmount());
148
	        linepojo.setDataProtectionInsurer(line.getDataProtectionInsurer());
149
	        linepojo.setDataProtectionInsurer(line.getDataProtectionInsurer());
149
	        linepojo.setDataProtectionAvailable(true); //TODO
150
	        linepojo.setDataProtectionAvailable(true); //TODO
150
	        linepojo.setDiscountedPrice(line.getDiscountedPrice());
151
	        linepojo.setDiscountedPrice(line.getDiscountedPrice());