Online Shop

master
3009594 2024-10-18 22:51:36 +02:00
parent 45c16f3ae4
commit b737a604d1
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ public class Bestellung {
private double versandKosten;
private ArrayList<Produkt> tempProdukt;
private LocalDate date;
public void gesamtKosten(ArrayList<Produkt> produkts) {
tempProdukt = produkts;
}

View File

@ -87,7 +87,7 @@ public class Kaufhalle {
aktuellBestelung = new Bestellung();
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();
}