Compare commits
1 Commits
master
...
morgannV2B
Author | SHA1 | Date | |
---|---|---|---|
|
cc9e98132c |
@ -19,20 +19,41 @@ public class Test {
|
|||||||
*/
|
*/
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
Entreprise lEntreprise=new Entreprise("MusicAndCo");
|
Entreprise lEntreprise=new Entreprise("MusicAndCo");
|
||||||
Commande laCommande1 = new Commande(1,1,"12/09/2024");
|
Commande laCommande1 = new Commande(1,1,"26/09/2024");
|
||||||
|
//Afficher les instruments disponibles
|
||||||
|
for(Instrument unInstrument : lEntreprise.getLesInstruments()){
|
||||||
|
System.out.println(unInstrument.toString());
|
||||||
|
}
|
||||||
|
System.out.println("---");
|
||||||
|
|
||||||
//ajouter des instruments de l'entreprise à la commande
|
//ajouter des instruments de l'entreprise à la commande
|
||||||
|
laCommande1.ajouter(lEntreprise.getLesInstruments().get(0), 2);
|
||||||
|
laCommande1.ajouter(lEntreprise.getLesInstruments().get(1), 3);
|
||||||
|
|
||||||
//affecter la commande à l'entreprise si la comamnde est possible
|
//affecter la commande à l'entreprise si la comamnde est possible
|
||||||
lEntreprise.ajouterCommande(laCommande1);
|
lEntreprise.ajouterCommande(laCommande1);
|
||||||
|
for(Instrument unInstrument : lEntreprise.getLesInstruments()){
|
||||||
|
System.out.println(unInstrument.toString());
|
||||||
|
}
|
||||||
|
System.out.println("---");
|
||||||
|
|
||||||
//créer une autre commande
|
//créer une autre commande
|
||||||
|
Commande laCommande2 = new Commande(2,1,"26/09/2024");
|
||||||
|
laCommande2.ajouter(lEntreprise.getLesInstruments().get(0), 1);
|
||||||
|
laCommande2.ajouter(lEntreprise.getLesInstruments().get(1), 1);
|
||||||
|
laCommande2.ajouter(lEntreprise.getLesInstruments().get(2), 5);
|
||||||
|
lEntreprise.ajouterCommande(laCommande2);
|
||||||
|
for(Instrument unInstrument : lEntreprise.getLesInstruments()){
|
||||||
|
System.out.println(unInstrument.toString());
|
||||||
|
}
|
||||||
|
System.out.println("---");
|
||||||
|
|
||||||
//rechercher et afficher une commande
|
//rechercher et afficher une commande
|
||||||
|
|
||||||
|
|
||||||
//supprimer une des 2 commande
|
//supprimer une des 2 commandes
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -82,6 +82,13 @@ private final HashMap<Instrument, Integer> lesLignes = new HashMap<>();
|
|||||||
boolean suppOK;
|
boolean suppOK;
|
||||||
if (lesLignes.containsKey(unInstrument) == true){
|
if (lesLignes.containsKey(unInstrument) == true){
|
||||||
suppOK = true;
|
suppOK = true;
|
||||||
|
//mettre le stock à jour
|
||||||
|
//récupération de la quantité en stock
|
||||||
|
int oldQte=unInstrument.getQteStock();
|
||||||
|
//réaffectation dans le stock de la quantité commandée
|
||||||
|
int qteStock=oldQte+ this.getLesLignes().get(unInstrument);
|
||||||
|
unInstrument.setQteStock(qteStock);
|
||||||
|
//suppression ligne commande
|
||||||
lesLignes.remove(unInstrument);
|
lesLignes.remove(unInstrument);
|
||||||
} else {
|
} else {
|
||||||
suppOK = false;
|
suppOK = false;
|
||||||
|
@ -23,9 +23,9 @@ public class Entreprise {
|
|||||||
Instrument instr1=new Instrument(23,"Piano droit",3, 8300f);
|
Instrument instr1=new Instrument(23,"Piano droit",3, 8300f);
|
||||||
Instrument instr2=new Instrument(54,"Violon Alto",5, 105f);
|
Instrument instr2=new Instrument(54,"Violon Alto",5, 105f);
|
||||||
Instrument instr3=new Instrument(67,"Guitare Classique",8, 575f);
|
Instrument instr3=new Instrument(67,"Guitare Classique",8, 575f);
|
||||||
lesInstruments.add(instr3);
|
|
||||||
lesInstruments.add(instr2);
|
|
||||||
lesInstruments.add(instr1);
|
lesInstruments.add(instr1);
|
||||||
|
lesInstruments.add(instr2);
|
||||||
|
lesInstruments.add(instr3);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getRaisonSociale() {
|
public String getRaisonSociale() {
|
||||||
@ -63,4 +63,10 @@ public class Entreprise {
|
|||||||
}
|
}
|
||||||
return uneCommande;
|
return uneCommande;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ArrayList<Instrument> getLesInstruments() {
|
||||||
|
return lesInstruments;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user