Online Shop
parent
45c16f3ae4
commit
b737a604d1
|
@ -11,6 +11,7 @@ public class Bestellung {
|
||||||
private double versandKosten;
|
private double versandKosten;
|
||||||
private ArrayList<Produkt> tempProdukt;
|
private ArrayList<Produkt> tempProdukt;
|
||||||
private LocalDate date;
|
private LocalDate date;
|
||||||
|
|
||||||
public void gesamtKosten(ArrayList<Produkt> produkts) {
|
public void gesamtKosten(ArrayList<Produkt> produkts) {
|
||||||
tempProdukt = produkts;
|
tempProdukt = produkts;
|
||||||
}
|
}
|
||||||
|
|
|
@ -87,7 +87,7 @@ public class Kaufhalle {
|
||||||
aktuellBestelung = new Bestellung();
|
aktuellBestelung = new Bestellung();
|
||||||
aktuellBestelung.gesamtKosten(kunde.getWarenKorb().getProdukte());
|
aktuellBestelung.gesamtKosten(kunde.getWarenKorb().getProdukte());
|
||||||
|
|
||||||
return "Produkts Ksoten = " + aktuellBestelung.getKosten() + "\n" + "Versand Kosten = " + aktuellBestelung.getVersandKosten()
|
return "Produkts Kosten = " + aktuellBestelung.getKosten() + "\n" + "Versand Kosten = " + aktuellBestelung.getVersandKosten()
|
||||||
+ "\n" + "GesamtKosten(Produkts Ksoten + Versand Kosten) = " + aktuellBestelung.getGesamtKosten();
|
+ "\n" + "GesamtKosten(Produkts Ksoten + Versand Kosten) = " + aktuellBestelung.getGesamtKosten();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue