modification de la méthode ajouter

This commit is contained in:
ilona.cardot 2024-09-12 10:28:32 +02:00
parent 0f472d5df2
commit ebe6f29978

View File

@ -36,7 +36,14 @@ private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
* @return true si l'ajout est bon
*/
public boolean ajouter(Instrument unInstrument, int qte){
boolean ajoutOK = lesLignes.put(unInstrument,qte);
boolean ajoutOK;
int qteDisponible = unInstrument.getQteStock();
if (qteDisponible<qte){
ajoutOK = false;
}else {
ajoutOK = true;
lesLignes.put(unInstrument,qte);
}
return ajoutOK;
}
/**
@ -45,8 +52,8 @@ private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
* @return true si la suppression est effectuée
*/
public boolean supprimer(Instrument unInstrument){
boolean suppOK = lesLignes.remove(unInstrument);
return suppOK;
//lesLignes.remove(unInstrument);
}
/////////////////////////////////////////////////////////////////////////////////
@ -63,6 +70,11 @@ private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
return dateCom;
}
public HashMap<Instrument, Integer> getLesLignes() {
return lesLignes;
}
public void setNoCom(int noCom) {
this.noCom = noCom;
}