* @param msgSupp Le message supplémentaire à afficher dans certains cas
* @return Le texte Html résumant la réservation
*/
public static String formatReservationToHtml(Reservation res,Piece p,
String title,String msgSupp){
Demande d = new Demande();
String prixHtml = "";
Common c = new Common();
Date dateConfirmation = c.getDateConfirmation(res.getDateReserv());
int taille = GU.TAILLE_FONT_HTML;
String couleurTitre = GU.COLOR_TITRE_HTML;
String couleurInfo = GU.COLOR_INFO_HTML;
//Calcul du prix si possible
if(p!=null) {
double prix = d.calculerPrix(res, p);
prixHtml = "Prix : <font color="+couleurInfo+"" +
">"+prix+" Euros</font><br>";
}
String txt = "<html><font color="+couleurTitre+" size=+"+taille+
"> "+title+" </font><ul>"+
"Pièce : <font color="+couleurInfo+"" +
">"+d.getTitrePiece(res.getIdSeance())+"</font><br>"+
"Séance : <font color="+couleurInfo+"" +
">"+res.getIdSeance()+"</font><br>"+
"Zone : <font color="+couleurInfo+"" +
">"+res.getIdZone()+"</font><br>"+
"Nombre de personnes : <font color="+couleurInfo+"" +