From 6116b4b21a5aba4244ff7f1471c117da0b9bff42 Mon Sep 17 00:00:00 2001 From: 3013379 <3013379@stud.hs-mannheim.de> Date: Tue, 22 Oct 2024 13:46:09 +0200 Subject: [PATCH] =?UTF-8?q?Aufteilung=20in=20Packages=20vervollst=C3=A4ndi?= =?UTF-8?q?gt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hs_mannheim/informatik/domain/ShopVerwaltung.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/de/hs_mannheim/informatik/domain/ShopVerwaltung.java b/src/de/hs_mannheim/informatik/domain/ShopVerwaltung.java index 131c9bf..20cc1d4 100644 --- a/src/de/hs_mannheim/informatik/domain/ShopVerwaltung.java +++ b/src/de/hs_mannheim/informatik/domain/ShopVerwaltung.java @@ -42,7 +42,7 @@ public class ShopVerwaltung { } } - // 3. de.hs_mannheim.informatik.domain.Warenkorb überarbeiten (Anzahl ändern oder löschen) + // 3. Warenkorb überarbeiten (Anzahl ändern oder löschen) public void warenkorbBearbeiten() { System.out.println("Möchten Sie die Anzahl eines Produkts ändern oder ein Produkt löschen? (ändern/löschen)"); String aktion = scanner.next(); @@ -53,7 +53,7 @@ public class ShopVerwaltung { if (produkt != null && warenkorb.getProduktanzahl().containsKey(produkt)) { System.out.println("Geben Sie die neue Anzahl ein:"); int neueAnzahl = scanner.nextInt(); - if (neueAnzahl < 1) { + if (neueAnzahl < 2) { System.out.println("Anzahl darf nicht kleiner als 1 sein"); return; } @@ -82,7 +82,7 @@ public class ShopVerwaltung { } } - // 4. de.hs_mannheim.informatik.domain.Warenkorb anzeigen + // 4. Warenkorb anzeigen public void warenkorbAnzeigen() { if (warenkorb.getProduktanzahl().isEmpty() || warenkorb == null) { @@ -99,7 +99,7 @@ public class ShopVerwaltung { System.out.println("Gesamtkosten: " + (warenkorb.preisBerechnen() + warenkorb.versandkostenBerechnen()) + " €"); } - // 5. de.hs_mannheim.informatik.domain.Bestellung tätigen + // 5. Bestellung tätigen public void bestellungTaetigen() { if (warenkorb == null || warenkorb.getProduktanzahl().isEmpty()) { System.out.println("Keine Bestellung möglich, der Warenkorb ist leer."); @@ -111,7 +111,7 @@ public class ShopVerwaltung { System.out.println("Bitte geben Sie Ihre Anschrift ein:"); String anschrift = scanner.nextLine(); - // de.hs_mannheim.informatik.domain.Bestellung erstellen + // Bestellung erstellen Bestellung bestellung = new Bestellung(warenkorb, System.currentTimeMillis(), anschrift, name); Bestellung.bestellungen.add(bestellung); System.out.println("Bestellung erfolgreich abgeschlossen!");