forked from hummel/Bank-System
Fertig
parent
666fd4909a
commit
917dda46eb
|
@ -1,11 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="module" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="src" path="src"/>
|
<classpathentry kind="src" path="src"/>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
||||||
<classpathentry kind="output" path="bin"/>
|
<classpathentry kind="output" path="bin"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
|
|
@ -4,24 +4,54 @@ import java.io.Serializable;
|
||||||
|
|
||||||
public class Girokonto extends Konto implements Serializable {
|
public class Girokonto extends Konto implements Serializable {
|
||||||
|
|
||||||
|
private long dispo = 1000;
|
||||||
|
|
||||||
public Girokonto(String inhaber, int kontozähler) {
|
public Girokonto(String inhaber, int kontozähler) {
|
||||||
super(inhaber, kontozähler);
|
super(inhaber, kontozähler);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
||||||
if (super.getKontostand() - betrag >= 0) {
|
if (super.getKontostand() - betrag >= 0) {
|
||||||
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
||||||
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
} else if (super.getKontostand() + dispo - betrag >= 0) {
|
||||||
|
dispo = dispo - betrag + super.getKontostand();
|
||||||
|
this.auszahlen(super.getKontostand(), zweck, "Überweisungsausgang", super.getInhaber()); // wenn dispo
|
||||||
|
// verwendet
|
||||||
|
// wird ist
|
||||||
|
// kontostand 0
|
||||||
|
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
if (stand - betrag >= 0) {
|
||||||
|
stand = stand - betrag;
|
||||||
|
|
||||||
|
getKontobw().add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
||||||
|
|
||||||
|
return true;
|
||||||
|
} else if (stand + dispo - betrag >= 0) {
|
||||||
|
dispo = dispo - betrag + super.getKontostand();
|
||||||
|
stand = 0;
|
||||||
|
getKontobw().add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Giro-" + super.toString();
|
return "Giro-" + super.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long getDispo() {
|
||||||
|
return dispo;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@ import java.util.ArrayList;
|
||||||
|
|
||||||
public class Konto implements Serializable {
|
public class Konto implements Serializable {
|
||||||
private int nummer;
|
private int nummer;
|
||||||
private long stand = 0;
|
protected long stand = 0;
|
||||||
private String inhaber;
|
private String inhaber;
|
||||||
|
|
||||||
private ArrayList<Kontobewegung> kontobewegungen;
|
private ArrayList<Kontobewegung> kontobewegungen;
|
||||||
|
@ -38,6 +38,7 @@ public class Konto implements Serializable {
|
||||||
stand += betrag;
|
stand += betrag;
|
||||||
|
|
||||||
kontobewegungen.add(new Kontobewegung(betrag, zweck, art, auftraggeber));
|
kontobewegungen.add(new Kontobewegung(betrag, zweck, art, auftraggeber));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
@ -63,4 +64,19 @@ public class Konto implements Serializable {
|
||||||
return auflistung;
|
return auflistung;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ArrayList<Kontobewegung> getKontobw() {
|
||||||
|
return kontobewegungen;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String[] getSaldo() {
|
||||||
|
String[] saldo = new String[11];
|
||||||
|
for (int i = 10; i > 0; i--) {
|
||||||
|
saldo[i - 1] = kontobewegungen.get(kontobewegungen.size() - i).toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
saldo[10] = "Kontostand: " + stand;
|
||||||
|
|
||||||
|
return saldo;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,20 +11,20 @@ class KontoTest {
|
||||||
Konto k = new Konto("Müller", 0);
|
Konto k = new Konto("Müller", 0);
|
||||||
assertEquals("Müller", k.getInhaber());
|
assertEquals("Müller", k.getInhaber());
|
||||||
assertEquals(1000, k.getKontonummer());
|
assertEquals(1000, k.getKontonummer());
|
||||||
assertEquals(0, k.getKontostand());
|
assertEquals(0, k.getKontostand());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testKontoEinUndAuszahlung() {
|
void testKontoEinUndAuszahlung() {
|
||||||
Konto k = new Konto("Müller", 0);
|
Konto k = new Konto("Müller", 0);
|
||||||
Konto k2 = new Konto("Mayer", 1);
|
Konto k2 = new Konto("Mayer", 1);
|
||||||
|
|
||||||
assertEquals("Mayer", k2.getInhaber());
|
assertEquals("Mayer", k2.getInhaber());
|
||||||
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
||||||
|
|
||||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
assertEquals(100, k2.getKontostand());
|
assertEquals(100, k2.getKontostand());
|
||||||
|
|
||||||
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
||||||
assertEquals(50, k2.getKontostand());
|
assertEquals(50, k2.getKontostand());
|
||||||
|
|
||||||
|
@ -32,4 +32,43 @@ class KontoTest {
|
||||||
assertEquals(50, k2.getKontostand());
|
assertEquals(50, k2.getKontostand());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void dispoTest() {
|
||||||
|
Girokonto k = new Girokonto("Müller", 0);
|
||||||
|
Girokonto k2 = new Girokonto("Mayer", 0);
|
||||||
|
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.überweise(k2, 200, "Test");
|
||||||
|
assertEquals(900, k.getDispo());
|
||||||
|
assertEquals(0, k.getKontostand());
|
||||||
|
assertEquals(200, k2.getKontostand());
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void saldoTest() {
|
||||||
|
Girokonto k = new Girokonto("Müller", 0);
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
assertNotNull(k.getSaldo());
|
||||||
|
String[] saldo = k.getSaldo();
|
||||||
|
assertEquals("Kontostand: 1800", saldo[10]);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@ public class Banksystem {
|
||||||
|
|
||||||
public int kontoAnlegen(String name, int auswahl) throws Exception {
|
public int kontoAnlegen(String name, int auswahl) throws Exception {
|
||||||
int kontonummer = bank.addKonto(name, auswahl);
|
int kontonummer = bank.addKonto(name, auswahl);
|
||||||
|
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
||||||
|
|
||||||
return kontonummer;
|
return kontonummer;
|
||||||
|
@ -31,7 +31,7 @@ public class Banksystem {
|
||||||
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (Konto k : konten) {
|
for (Konto k : konten) {
|
||||||
liste[i++] = k.toString();
|
liste[i++] = k.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
return liste;
|
return liste;
|
||||||
|
@ -46,13 +46,13 @@ public class Banksystem {
|
||||||
konto.einzahlen(betrag, "Einzahlung am Schalter", "Einzahlung", konto.getInhaber());
|
konto.einzahlen(betrag, "Einzahlung am Schalter", "Einzahlung", konto.getInhaber());
|
||||||
|
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
||||||
|
|
||||||
return konto.getKontostand();
|
return konto.getKontostand();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean geldAuszahlen(int kontonummer, long betrag) throws Exception {
|
public boolean geldAuszahlen(int kontonummer, long betrag) throws Exception {
|
||||||
Konto konto = bank.findeKonto(kontonummer);
|
Konto konto = bank.findeKonto(kontonummer);
|
||||||
|
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
||||||
|
|
||||||
return konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
return konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
||||||
|
@ -69,7 +69,7 @@ public class Banksystem {
|
||||||
Konto ziel = bank.findeKonto(zielkonto);
|
Konto ziel = bank.findeKonto(zielkonto);
|
||||||
|
|
||||||
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
||||||
return ((Girokonto)start).überweise((Girokonto)ziel, betrag, verwendungszweck);
|
return ((Girokonto) start).überweise((Girokonto) ziel, betrag, verwendungszweck);
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -81,4 +81,17 @@ public class Banksystem {
|
||||||
return konto.getKontostand();
|
return konto.getKontostand();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean checkSaldo(int kontonummer) {
|
||||||
|
Konto konto = bank.findeKonto(kontonummer);
|
||||||
|
if (konto.getKontobw().size() % 1 == 0) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String[] printSaldo(int kontonummer) {
|
||||||
|
Konto konto = bank.findeKonto(kontonummer);
|
||||||
|
return konto.getSaldo();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,10 @@ package de.hs_mannheim.informatik.bank.facade;
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||||
|
|
||||||
|
import java.io.*;
|
||||||
|
|
||||||
|
import de.hs_mannheim.informatik.bank.infrastructure.Persistenz;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
class SystemTest {
|
class SystemTest {
|
||||||
|
@ -10,10 +14,49 @@ class SystemTest {
|
||||||
@Test
|
@Test
|
||||||
void smokeTest() throws Exception {
|
void smokeTest() throws Exception {
|
||||||
Banksystem bs = new Banksystem("Testsystem");
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
|
||||||
assertNotNull(bs);
|
assertNotNull(bs);
|
||||||
assertEquals(0, bs.getKontenliste().length);
|
assertEquals(0, bs.getKontenliste().length);
|
||||||
assertEquals("Testsystem", bs.getBankname());
|
assertEquals("Testsystem", bs.getBankname());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void einzahlenTest() throws Exception {
|
||||||
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
|
||||||
|
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 500);
|
||||||
|
assertEquals(500, bs.getKontostand(1000));
|
||||||
|
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||||
|
file.delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void auszahlenTest() throws Exception {
|
||||||
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
|
||||||
|
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 500);
|
||||||
|
bs.geldAuszahlen(1000, 400);
|
||||||
|
|
||||||
|
assertEquals(100, bs.getKontostand(1000));
|
||||||
|
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||||
|
file.delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void persistenzTest() throws Exception {
|
||||||
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
|
||||||
|
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 500);
|
||||||
|
|
||||||
|
bs = null;
|
||||||
|
|
||||||
|
Banksystem bs1 = new Banksystem("Testsystem");
|
||||||
|
|
||||||
|
assertEquals(500, bs1.getKontostand(1000));
|
||||||
|
|
||||||
|
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||||
|
file.delete();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ import java.io.ObjectOutputStream;
|
||||||
|
|
||||||
public class Persistenz {
|
public class Persistenz {
|
||||||
private static final String BANK_DATEI = "-bank-data.ser";
|
private static final String BANK_DATEI = "-bank-data.ser";
|
||||||
|
|
||||||
public static boolean sindDatenGespeichert(String name) {
|
public static boolean sindDatenGespeichert(String name) {
|
||||||
return new File(name + BANK_DATEI).exists();
|
return new File(name + BANK_DATEI).exists();
|
||||||
}
|
}
|
||||||
|
@ -18,12 +18,12 @@ public class Persistenz {
|
||||||
oos.writeObject(bank);
|
oos.writeObject(bank);
|
||||||
oos.close();
|
oos.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Object ladeBankDaten(String name) throws Exception {
|
public static Object ladeBankDaten(String name) throws Exception {
|
||||||
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(name + BANK_DATEI));
|
ObjectInputStream ois = new ObjectInputStream(new FileInputStream(name + BANK_DATEI));
|
||||||
Object bank = ois.readObject();
|
Object bank = ois.readObject();
|
||||||
ois.close();
|
ois.close();
|
||||||
|
|
||||||
return bank;
|
return bank;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,49 +16,59 @@ public class UI {
|
||||||
private void hauptmenü() {
|
private void hauptmenü() {
|
||||||
System.out.println("Willkommen bei der " + bs.getBankname() + "!");
|
System.out.println("Willkommen bei der " + bs.getBankname() + "!");
|
||||||
|
|
||||||
mainloop:
|
mainloop: while (true) {
|
||||||
while (true) {
|
System.out.println();
|
||||||
System.out.println();
|
System.out.println("--------");
|
||||||
System.out.println("--------");
|
System.out.println("Hauptmenü");
|
||||||
System.out.println("Hauptmenü");
|
System.out.println("1 -> Konten anzeigen");
|
||||||
System.out.println("1 -> Konten anzeigen");
|
System.out.println("2 -> Konto anlegen");
|
||||||
System.out.println("2 -> Konto anlegen");
|
System.out.println("3 -> Geld einzahlen");
|
||||||
System.out.println("3 -> Geld einzahlen");
|
System.out.println("4 -> Geld auszahlen");
|
||||||
System.out.println("4 -> Geld auszahlen");
|
System.out.println("5 -> Kontoauszug drucken");
|
||||||
System.out.println("5 -> Kontoauszug drucken");
|
System.out.println("6 -> Überweisung beauftragen");
|
||||||
System.out.println("6 -> Überweisung beauftragen");
|
|
||||||
|
|
||||||
System.out.println("9 -> Beenden");
|
System.out.println("9 -> Beenden");
|
||||||
System.out.println();
|
System.out.println();
|
||||||
|
|
||||||
System.out.print("> ");
|
System.out.print("> ");
|
||||||
int input = Integer.parseInt(sc.nextLine());
|
int input = Integer.parseInt(sc.nextLine());
|
||||||
System.out.println();
|
System.out.println();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
switch(input) {
|
switch (input) {
|
||||||
case 1: kontenAnzeigen(); break;
|
case 1:
|
||||||
case 2:
|
kontenAnzeigen();
|
||||||
kontoAnlegen();
|
break;
|
||||||
break;
|
case 2:
|
||||||
case 3: geldEinzahlen(); break;
|
kontoAnlegen();
|
||||||
case 4: geldAuszahlen(); break;
|
break;
|
||||||
case 5: kontoauszugDrucken(); break;
|
case 3:
|
||||||
case 6: überweisungBeauftragen(); break;
|
geldEinzahlen();
|
||||||
case 9: break mainloop;
|
break;
|
||||||
}
|
case 4:
|
||||||
|
geldAuszahlen();
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
kontoauszugDrucken();
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
überweisungBeauftragen();
|
||||||
|
break;
|
||||||
|
case 9:
|
||||||
|
break mainloop;
|
||||||
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.err.println(e.getLocalizedMessage());
|
System.err.println(e.getLocalizedMessage());
|
||||||
}
|
|
||||||
System.out.println();
|
|
||||||
}
|
}
|
||||||
|
System.out.println();
|
||||||
|
}
|
||||||
|
|
||||||
System.out.println("Auf Wiedersehen!");
|
System.out.println("Auf Wiedersehen!");
|
||||||
|
|
||||||
} // hauptmenü
|
} // hauptmenü
|
||||||
|
|
||||||
private void kontenAnzeigen() {
|
private void kontenAnzeigen() {
|
||||||
String[] konten = bs.getKontenliste();
|
String[] konten = bs.getKontenliste();
|
||||||
if (konten.length > 0) {
|
if (konten.length > 0) {
|
||||||
System.out.println("Folgende Konten sind aktuell verfügbar:");
|
System.out.println("Folgende Konten sind aktuell verfügbar:");
|
||||||
|
@ -91,8 +101,13 @@ public class UI {
|
||||||
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
||||||
double betrag = Double.parseDouble(sc.nextLine());
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long) betrag * 100);
|
||||||
|
if (checkSaldo(kontonummer)) {
|
||||||
|
String[] saldo = printSaldo(kontonummer);
|
||||||
|
for (int i = 0; i < 11; i++) {
|
||||||
|
System.out.println(saldo[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
System.out.printf("Einzahlung erfolgreich, neuer Kontostand = %.2f Euro", (neuerKontostand / 100.0));
|
System.out.printf("Einzahlung erfolgreich, neuer Kontostand = %.2f Euro", (neuerKontostand / 100.0));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,10 +119,15 @@ public class UI {
|
||||||
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
||||||
double betrag = Double.parseDouble(sc.nextLine());
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long)betrag * 100);
|
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long) betrag * 100);
|
||||||
|
if (checkSaldo(kontonummer)) {
|
||||||
System.out.printf("Auszahlung" + ((!erfolgreich)? " nicht" : "" )+ " erfolgreich. ");
|
String[] saldo = printSaldo(kontonummer);
|
||||||
System.out.printf("Neuer Kontostand = %.2f Euro.", (bs.getKontostand(kontonummer) / 100.0));
|
for (int i = 0; i < 11; i++) {
|
||||||
|
System.out.println(saldo[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.printf("Auszahlung" + ((!erfolgreich) ? " nicht" : "") + " erfolgreich. ");
|
||||||
|
System.out.printf("Neuer Kontostand = %.2f Euro.", (bs.getKontostand(kontonummer) / 100.0));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void kontoauszugDrucken() {
|
private void kontoauszugDrucken() {
|
||||||
|
@ -141,9 +161,23 @@ public class UI {
|
||||||
System.out.print("Bitte den Verwendungszweck eingeben: ");
|
System.out.print("Bitte den Verwendungszweck eingeben: ");
|
||||||
String verwendungszweck = sc.nextLine();
|
String verwendungszweck = sc.nextLine();
|
||||||
|
|
||||||
boolean erfolgreich = bs.überweisungBeauftragen(startkonto, zielkonto, (long)(betrag * 100), verwendungszweck);
|
boolean erfolgreich = bs.überweisungBeauftragen(startkonto, zielkonto, (long) (betrag * 100), verwendungszweck);
|
||||||
|
if (checkSaldo(startkonto)) {
|
||||||
|
String[] saldo = printSaldo(startkonto);
|
||||||
|
for (int i = 0; i < 11; i++) {
|
||||||
|
System.out.println(saldo[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
System.out.println("Überweisung" + ((!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||||
|
}
|
||||||
|
|
||||||
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
private boolean checkSaldo(int kontonummer) {
|
||||||
|
return bs.checkSaldo(kontonummer);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private String[] printSaldo(int kontonummer) {
|
||||||
|
return bs.printSaldo(kontonummer);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue