Grosse MàJ

This commit is contained in:
olivier
2008-11-25 22:11:16 +01:00
parent 53195fdfcd
commit 3e719157ea
2980 changed files with 343846 additions and 0 deletions

View File

@ -0,0 +1,44 @@
<h2>Confirmation de la commande</h2>
<p>Rappel de la commande :</p>
<table border="0" width="100%">
<thead>
<tr>
<th>Reference</th>
<th>Modele</th>
<th>Prix</th>
</tr>
</thead>
<tbody>
<c:forEach items="${articles}" var="artRef" >
<tr>
<td>
R&eacute;f&eacute;rence : ${artRef.ref}
</td>
<td>
Mod&egrave;le : ${artRef.modele}
</td>
<td>
Prix : ${artRef.prix}
</td>
</tr>
</c:forEach>
<tr>
<td colspan="2" class="tabTotal">Total :</td>
<td>
<jsp:useBean id="panierTotal" class="com.articles.Panier" scope="request" />
<jsp:getProperty name="panierTotal" property="prixTotal" />
</td>
</tr>
</tbody>
</table>
<hr width="100%" size="1">
<jsp:useBean id="client" class="com.articles.Client" scope="request" />
<p>Note : le payement se fera <20> la livraison de la commande <20> l'adresse suivante :<br />
<jsp:getProperty name="client" property="nom" />&nbsp;<jsp:getProperty name="client" property="prenom" /><br />
<jsp:getProperty name="client" property="adresse" /><br />
<jsp:getProperty name="client" property="codePost" />&nbsp;<jsp:getProperty name="client" property="ville" />
</p>