Examples of histoAchat()


Examples of com.netflox.form.GestionCompteClient.histoAchat()

      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());
View Full Code Here

Examples of com.netflox.form.GestionCompteClient.histoAchat()

      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());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.