modification de la méthode ajouter et de la méthode supprimer

This commit is contained in:
ilona.cardot 2024-09-12 10:34:40 +02:00
parent ebe6f29978
commit 8f366b4003

View File

@ -43,6 +43,7 @@ private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
}else {
ajoutOK = true;
lesLignes.put(unInstrument,qte);
unInstrument.setQteStock(qteDisponible-qte);
}
return ajoutOK;
}
@ -53,7 +54,14 @@ private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
*/
public boolean supprimer(Instrument unInstrument){
//lesLignes.remove(unInstrument);
boolean suppOK;
if (lesLignes.containsValue(unInstrument) == true){
suppOK = true;
lesLignes.remove(unInstrument);
} else {
suppOK = false;
}
return suppOK;
}
/////////////////////////////////////////////////////////////////////////////////