filmLoue.add(t);
}
request.setAttribute("filmLoue", filmLoue);
//récupération historique achat
ArrayList<String[]> ventesUser = new ArrayList<String[]>();
ArrayList<Vente> histo = gcc.histoAchat();
for(Vente v: histo){
String type;
if(v.getType().equals('a')){type="Achat";}else if(v.getType().equals('l')){type="Location";}else{type="Bon";}
Date d = new Date(v.getDate());
String prix = Integer.toString(v.getPrix());