1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
JEE_Project/web/WEB-INF/jsp/achats.jsp

35 lines
988 B
Text
Raw Permalink Normal View History

2022-06-27 21:14:35 +02:00
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Achats</title>
</head>
<body>
<%@include file="header.jsp" %>
2022-06-30 22:15:08 +02:00
2022-06-29 23:34:39 +02:00
<H1>Achats du client n°<%=request.getParameter("customerId")%></H1>
2022-06-27 21:14:35 +02:00
<table border="1" cellpadding="10">
2022-06-30 22:15:08 +02:00
<c:forEach items="${achats}" var="cli">
<TR>
<TD>${cli.orderNum}</TD>
<TD>${cli.customerId}</TD>
<TD>${cli.productId}</TD>
<TD>${cli.quantity}</TD>
<TD>${cli.shippingCost}</TD>
<TD>${cli.salesDate}</TD>
<TD>${cli.shippingDate}</TD>
<TD>${cli.freightCompany}</TD>
</TR>
</c:forEach>
2022-06-27 21:14:35 +02:00
</table>
2022-06-30 22:15:08 +02:00
2022-06-27 21:14:35 +02:00
</body>
</html>