1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
| <html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<%@ include file="/WEB-INF/inc/top_header.jsp"%>
<%@page import="servlets.commande.Produits"%>
<body>
<div id="page"><%@ include file="/WEB-INF/inc/menu.jsp"%>
<div id="content">
<%@ include file="/WEB-INF/inc/header.jsp"%>
<div id="main">
<h1>Listes commandes</h1>
<table class="tablesorter" cellspacing="1">
<thead>
<tr>
<th>Fournisseur</th>
<th>Produit</th>
<th>Date commande</th>
<th>Quantite commandee</th>
<th>Date livraison</th>
<th>Quantite livree</th>
<th>Opération
</th>
</tr>
</thead>
<c:forEach var="commandeFournisseur" items="${commandeFournisseurs}" varStatus="loopStatus">
<c:if test="${commandeFournisseur.id == param.id}"> <td bgcolor="red"> </td> </c:if>
<tr>
<td>${commandeFournisseur.fournisseur.nom}</td>
<td>${commandeFournisseur.produit.reference}</td>
<td>${commandeFournisseur.date_commande}</td>
<td>${commandeFournisseur.quantite_commandee}</td>
<td>${commandeFournisseur.date_livraison}</td>
<td>${commandeFournisseur.quantite_livree}</td>
<td><a href="commandeFournisseur?op=edit&id=${commandeFournisseur.id}">modifier</a>
<a href="commandeFournisseur?op=confirmation&id=${commandeFournisseur.id}&produit_id=${commandeFournisseur.produit.id}">confirmation</a>
</td>
</tr>
</c:forEach>
</table>
</div>
</div>
</div>
</body>
<%@ include file="/WEB-INF/inc/footer.jsp"%>
</html> |
Partager