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/build/web/WEB-INF/jsp/achats.jsp

35 lines
1.1 KiB
Text
Raw 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" %>
<H1>Achats du client n°<%=request.getParameter("numero")%></H1>
<table border="1" cellpadding="10">
<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>
</table>
</body>
</html>