Zahlung()
parent
13b2d107ae
commit
089b81d968
|
@ -0,0 +1,33 @@
|
||||||
|
public static void Zahlung() throws ParseException {
|
||||||
|
|
||||||
|
System.out.println();
|
||||||
|
|
||||||
|
System.out.print("Bitte geben Sie das Kennzeichen ein: ");
|
||||||
|
String kennzeichenEingabe = scanner.nextLine();
|
||||||
|
|
||||||
|
System.out.print("Bitte geben Sie ihre Ausfahrtszeit ein: ");
|
||||||
|
String ausfahrtZeit = scanner.nextLine();
|
||||||
|
|
||||||
|
SimpleDateFormat zeit = new SimpleDateFormat("dd.MM.yyyy, HH:mm");
|
||||||
|
|
||||||
|
if (ausfahrtZeit.isEmpty()) {
|
||||||
|
|
||||||
|
ausfahrtZeit = zeit.format(new Date());
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Date d2 = zeit.parse(ausfahrtZeit);
|
||||||
|
|
||||||
|
// Parkgebühren berechnen mit den Informationen des FahrzeugObjekts
|
||||||
|
parkgebuehrenBerechnen(info.d1, d2, kennzeichenEingabe);
|
||||||
|
if (Gebuehren == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("Bitte zahlen Sie den Betrag von " + Gebuehren + " Euro.");
|
||||||
|
System.out.println("Geben Sie ihre Kreditkartennummer ein: ");
|
||||||
|
String VISA = scanner.nextLine();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue