Advertisement
Guest User

zaMitcu

a guest
Dec 10th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <%@page import="java.util.ArrayList"%>
  2. <%@page import="java.util.List"%>
  3. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  4. pageEncoding="ISO-8859-1"%>
  5. <jsp::useBean id = "ShoppingCart" class = "beans.webshop.ShoppingCart" scope = "session"></jsp::useBean>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  10. <title>Insert title here</title>
  11. </head>
  12. <body>
  13. Raspolozivi proizvodi:
  14. <table> <tr bgcolor = "lightgrey"><th>"Naziv"</th><th>"Jedinicna cena"</th><th>"Komada"</th><th>"Ukupna cena"</th></tr>
  15. <%double total = 0;
  16. for(beans.webshop.ShoppingCartItem i :ShoppingCart.getItems()){
  17. %>
  18. <tr>
  19. <td><%= i.getProduct().getName() %></td>
  20. <td><%= i.getProduct().getPrice() %></td>
  21. <td><%= i.getCount() %> </td>
  22. <%double price = i.getProduct().getPrice() * i.getCount(); %>
  23. <td><%=price %></td>
  24. <%total += price; %>
  25. <%} %>
  26. </tr>
  27. </table>
  28. <p> Ukupno: <%= total %> dinara</p>
  29. <p><a href ="WebShopServlet">Povratak</a></p>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement