Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
Fedot | 51a37b71b3 | |
Fedot | 45a9d8181d | |
Fedot | e919c05f59 |
|
@ -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">
|
<classpathentry kind="src" path="src"/>
|
||||||
<attributes>
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||||
<attribute name="module" value="true"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
||||||
</attributes>
|
<classpathentry kind="output" path="bin"/>
|
||||||
</classpathentry>
|
</classpath>
|
||||||
<classpathentry kind="src" path="src"/>
|
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
|
||||||
<classpathentry kind="output" path="bin"/>
|
|
||||||
</classpath>
|
|
||||||
|
|
|
@ -9,5 +9,4 @@ public class Main {
|
||||||
Banksystem bs = new Banksystem("Spaßkasse Mannheim");
|
Banksystem bs = new Banksystem("Spaßkasse Mannheim");
|
||||||
UI ui = new UI(bs);
|
UI ui = new UI(bs);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -7,20 +7,20 @@ import java.util.HashMap;
|
||||||
public class Bank implements Serializable {
|
public class Bank implements Serializable {
|
||||||
private String name;
|
private String name;
|
||||||
private HashMap<Integer, Konto> konten = new HashMap<>();
|
private HashMap<Integer, Konto> konten = new HashMap<>();
|
||||||
private int kontozähler;
|
private int kontozähler;
|
||||||
|
|
||||||
public Bank(String name) {
|
public Bank(String name) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.kontozähler = -1;
|
this.kontozähler = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int addKonto(String name, int auswahl) {
|
public int addKonto(String name, int auswahl) {
|
||||||
Konto k;
|
Konto k;
|
||||||
|
|
||||||
if (auswahl == 1)
|
if (auswahl == 1)
|
||||||
k = new Konto(name, ++kontozähler);
|
k = new Konto(name, ++kontozähler);
|
||||||
else
|
else
|
||||||
k = new Girokonto(name, ++kontozähler);
|
k = new Girokonto(name, ++kontozähler);
|
||||||
|
|
||||||
konten.put(k.getKontonummer(), k);
|
konten.put(k.getKontonummer(), k);
|
||||||
|
|
||||||
|
|
|
@ -1,24 +1,70 @@
|
||||||
package de.hs_mannheim.informatik.bank.domain;
|
package de.hs_mannheim.informatik.bank.domain;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
public class Girokonto extends Konto implements Serializable {
|
public class Girokonto extends Konto implements Serializable {
|
||||||
|
|
||||||
public Girokonto(String inhaber, int kontozähler) {
|
private long dispo = 0;
|
||||||
super(inhaber, kontozähler);
|
|
||||||
|
public Girokonto(String inhaber, int kontozähler) {
|
||||||
|
super(inhaber, kontozähler);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
||||||
|
Scanner scan = new Scanner(System.in);
|
||||||
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean überweiseDispo(long grenze, Girokonto ziel, long betrag, String zweck) {
|
||||||
|
erstelleDispo(grenze);
|
||||||
|
if (dispo - betrag >= 0) {
|
||||||
|
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
||||||
|
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
System.out.println("Immer noch zu wenig Geld");
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void einzahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
setStand(betrag);
|
||||||
|
|
||||||
|
addPlusKontobewegung(betrag, zweck, art, auftraggeber);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
if (getStand() == 0) {
|
||||||
|
if (dispo > 0 && dispo >= betrag) {
|
||||||
|
dispo -= betrag;
|
||||||
|
addNegativeKontobewegung(betrag, zweck, art, auftraggeber);
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
setStand(-betrag);
|
||||||
|
addNegativeKontobewegung(betrag, zweck, art, auftraggeber);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean erstelleDispo(long grenze) {
|
||||||
|
this.dispo = grenze;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getDispo() {
|
||||||
|
return this.dispo;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Giro-" + super.toString();
|
return "Giro-" + super.toString();
|
||||||
|
|
|
@ -10,8 +10,8 @@ public class Konto implements Serializable {
|
||||||
|
|
||||||
private ArrayList<Kontobewegung> kontobewegungen;
|
private ArrayList<Kontobewegung> kontobewegungen;
|
||||||
|
|
||||||
public Konto(String inhaber, int kontozähler) {
|
public Konto(String inhaber, int kontozähler) {
|
||||||
nummer = 1000 + kontozähler;
|
nummer = 1000 + kontozähler;
|
||||||
this.inhaber = inhaber;
|
this.inhaber = inhaber;
|
||||||
|
|
||||||
this.kontobewegungen = new ArrayList<>();
|
this.kontobewegungen = new ArrayList<>();
|
||||||
|
@ -33,6 +33,14 @@ public class Konto implements Serializable {
|
||||||
public long getKontostand() {
|
public long getKontostand() {
|
||||||
return stand;
|
return stand;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long getStand() {
|
||||||
|
return stand;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStand(long betrag) {
|
||||||
|
this.stand += betrag;
|
||||||
|
}
|
||||||
|
|
||||||
public void einzahlen(long betrag, String zweck, String art, String auftraggeber) {
|
public void einzahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
stand += betrag;
|
stand += betrag;
|
||||||
|
@ -63,4 +71,22 @@ public class Konto implements Serializable {
|
||||||
return auflistung;
|
return auflistung;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
public long getSaldo(int zahl) {
|
||||||
|
long saldo = 0;
|
||||||
|
|
||||||
|
for (int x = 0; x < zahl; x++) {
|
||||||
|
Kontobewegung kb = kontobewegungen.get(x);
|
||||||
|
saldo += kb.getBetrag();
|
||||||
|
}
|
||||||
|
return saldo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addPlusKontobewegung(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
kontobewegungen.add(new Kontobewegung(betrag, zweck, art, auftraggeber));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addNegativeKontobewegung(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
kontobewegungen.add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,30 +1,29 @@
|
||||||
package de.hs_mannheim.informatik.bank.domain;
|
package de.hs_mannheim.informatik.bank.domain;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.*;
|
import static org.junit.jupiter.api.Assertions.*;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
class KontoTest {
|
class KontoTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testKontoBasics() {
|
void testKontoBasic() {
|
||||||
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 testKontoEinzahlenUndAuszahlung() {
|
||||||
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 +31,56 @@ class KontoTest {
|
||||||
assertEquals(50, k2.getKontostand());
|
assertEquals(50, k2.getKontostand());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
@Test
|
||||||
|
void testeSaldo() {
|
||||||
|
Konto k = new Konto("Testsubjekt1", 1);
|
||||||
|
k.einzahlen(100, null, null, null);
|
||||||
|
k.einzahlen(100, null, null, null);
|
||||||
|
k.auszahlen(50, null, null, null);
|
||||||
|
|
||||||
|
assertEquals(150, k.getSaldo(3));
|
||||||
|
// Dieser Test überpfrüft die Saldo-Methode in der Kontoklasse
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void auszahlenTest1() {
|
||||||
|
Girokonto k = new Girokonto("Testsubjekt1", 2);
|
||||||
|
k.erstelleDispo(1000);
|
||||||
|
assertEquals(true, k.auszahlen(750, null, null, null));
|
||||||
|
// Überprüfen: dispo wird etwas ausgezahlt und rest bleibt
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void auszahlenTooMuchTest() {
|
||||||
|
Girokonto k = new Girokonto("Testsubjekt1", 2);
|
||||||
|
k.erstelleDispo(1000);
|
||||||
|
k.auszahlen(1001, null, null, null);
|
||||||
|
assertEquals(false, k.auszahlen(1001, null, null, null));
|
||||||
|
// es wird mehr ausgezahlt als im Dispo überhaupt verfügabr
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void überweiseFail() {
|
||||||
|
Girokonto k1 = new Girokonto("Testsubjekt1", 1);
|
||||||
|
Girokonto k2 = new Girokonto("Testsubjekt2", 1);
|
||||||
|
assertEquals(false, k1.überweise(k2, 100, null));
|
||||||
|
// die Überweisung ist nicht erfolgreich
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void überweiseDispo() {
|
||||||
|
Girokonto k1 = new Girokonto("Testsubjekt1", 1);
|
||||||
|
Girokonto k2 = new Girokonto("Testsubjekt2", 1);
|
||||||
|
assertEquals(true, k1.überweiseDispo(101, k2, 100, null));
|
||||||
|
// Dispo wird erhalten und danach wird überweisen
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void überweiseDispoRichtigerBetrag() {
|
||||||
|
Girokonto k1 = new Girokonto("Testsubjekt1", 1);
|
||||||
|
Girokonto k2 = new Girokonto("Testsubjekt2", 1);
|
||||||
|
k1.überweiseDispo(101, k2, 100, null);
|
||||||
|
assertEquals(100, k2.getKontostand());
|
||||||
|
// Dispo wird aufgenommen und danach bleibt noch Rest übrig
|
||||||
|
}
|
||||||
|
}
|
|
@ -24,5 +24,10 @@ public class Kontobewegung implements Serializable {
|
||||||
return "Kontobewegung [betrag=" + betrag + ", datum=" + datum + ", betreff=" + betreff + ", art=" + art
|
return "Kontobewegung [betrag=" + betrag + ", datum=" + datum + ", betreff=" + betreff + ", art=" + art
|
||||||
+ ", auftraggeber=" + auftraggeber + "]";
|
+ ", auftraggeber=" + auftraggeber + "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Aufgabe 7
|
||||||
|
public long getBetrag() {
|
||||||
|
return this.betrag;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
package de.hs_mannheim.informatik.bank.facade;
|
package de.hs_mannheim.informatik.bank.facade;
|
||||||
|
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
|
||||||
import de.hs_mannheim.informatik.bank.domain.Bank;
|
import de.hs_mannheim.informatik.bank.domain.Bank;
|
||||||
import de.hs_mannheim.informatik.bank.domain.Girokonto;
|
import de.hs_mannheim.informatik.bank.domain.Girokonto;
|
||||||
import de.hs_mannheim.informatik.bank.domain.Konto;
|
import de.hs_mannheim.informatik.bank.domain.Konto;
|
||||||
|
@ -64,14 +63,23 @@ public class Banksystem {
|
||||||
return konto.getKontobewegungen();
|
return konto.getKontobewegungen();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean überweisungBeauftragen(int startkonto, int zielkonto, long betrag, String verwendungszweck) {
|
public boolean überweisungBeauftragen(int startkonto, int zielkonto, long betrag, String verwendungszweck) {
|
||||||
Konto start = bank.findeKonto(startkonto);
|
Konto start = bank.findeKonto(startkonto);
|
||||||
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean überweisungDispoBeauftragen(long dispo, int startkonto, int zielkonto, long betrag, String verwendungszweck) {
|
||||||
|
Konto start = bank.findeKonto(startkonto);
|
||||||
|
Konto ziel = bank.findeKonto(zielkonto);
|
||||||
|
|
||||||
|
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
||||||
|
return ((Girokonto)start).überweiseDispo(dispo,(Girokonto)ziel, betrag, verwendungszweck);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,5 +88,10 @@ public class Banksystem {
|
||||||
|
|
||||||
return konto.getKontostand();
|
return konto.getKontostand();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long getSaldo(int kontonummer, int zahl) {
|
||||||
|
Konto konto = bank.findeKonto(kontonummer);
|
||||||
|
return konto.getSaldo(zahl);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -2,18 +2,69 @@ 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.File;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
class SystemTest {
|
class SystemTest {
|
||||||
|
|
||||||
|
String pfadDatei = "C:\\Users\\Fedot\\git\\Bank-Systeme\\Bank-Beispiel\\Testsystem-bank-data.ser";
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void smokeTest() throws Exception {
|
void smokeTest() throws Exception {
|
||||||
Banksystem bs = new Banksystem("Testsystem");
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
bs.kontoAnlegen("Testobjekt", 1);
|
||||||
|
|
||||||
assertNotNull(bs);
|
assertNotNull(bs);
|
||||||
assertEquals(0, bs.getKontenliste().length);
|
assertEquals(1, bs.getKontenliste().length);
|
||||||
assertEquals("Testsystem", bs.getBankname());
|
assertEquals("Testsystem", bs.getBankname());
|
||||||
|
delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
// man soll nichts einzahlen und es sollte funktionieren
|
||||||
|
@Test
|
||||||
|
void einzahlenTest1() throws Exception {
|
||||||
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
int k1 = bs.kontoAnlegen("Testobjekt1", 1);
|
||||||
|
|
||||||
|
assertEquals(0, bs.geldEinzahlen(k1, 0));
|
||||||
|
delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
// man zahlt 100 ein und es soll funktionieren
|
||||||
|
@Test
|
||||||
|
void einzahlenTest2() throws Exception {
|
||||||
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
int k1 = bs.kontoAnlegen("Testobjekt1", 1);
|
||||||
|
|
||||||
|
assertEquals(100, bs.geldEinzahlen(k1, 100));
|
||||||
|
delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 200 wird eingezahlt und 100 ausfgezahlt
|
||||||
|
@Test
|
||||||
|
void auszahlenTest1() throws Exception {
|
||||||
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
int k2 = bs.kontoAnlegen("Testobjekt2", 1);
|
||||||
|
bs.geldEinzahlen(k2, 200);
|
||||||
|
|
||||||
|
assertEquals(true, bs.geldAuszahlen(k2, 100));
|
||||||
|
delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
// es wird zu viell ausgezhalt und es soll fehlschlagen
|
||||||
|
@Test
|
||||||
|
void auszahlenTest2() throws Exception {
|
||||||
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
int k2 = bs.kontoAnlegen("Testobjekt2", 1);
|
||||||
|
bs.geldEinzahlen(k2, 100);
|
||||||
|
|
||||||
|
assertEquals(false, bs.geldAuszahlen(k2, 101));
|
||||||
|
delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
//Der Pfad in den Dateien wird gelöscht
|
||||||
|
public void delete() throws Exception {
|
||||||
|
File f = new File(pfadDatei);
|
||||||
|
f.delete();
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
package de.hs_mannheim.informatik.bank.ui;
|
package de.hs_mannheim.informatik.bank.ui;
|
||||||
|
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
|
||||||
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
||||||
|
|
||||||
public class UI {
|
public class UI {
|
||||||
|
@ -10,25 +9,28 @@ public class UI {
|
||||||
|
|
||||||
public UI(Banksystem bs) {
|
public UI(Banksystem bs) {
|
||||||
this.bs = bs;
|
this.bs = bs;
|
||||||
hauptmenü();
|
hauptmenü();
|
||||||
}
|
}
|
||||||
|
|
||||||
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("7 -> Überweisen mit Dispo");
|
||||||
|
System.out.println("8 -> Anzahl Überweisung");
|
||||||
|
// System.out.println("9 -> Dispo Überweisung");
|
||||||
|
|
||||||
System.out.println("9 -> Beenden");
|
System.out.println("10 -> Beenden");
|
||||||
System.out.println();
|
System.out.println();
|
||||||
|
|
||||||
System.out.print("> ");
|
System.out.print("> ");
|
||||||
|
@ -38,14 +40,15 @@ public class UI {
|
||||||
try {
|
try {
|
||||||
switch(input) {
|
switch(input) {
|
||||||
case 1: kontenAnzeigen(); break;
|
case 1: kontenAnzeigen(); break;
|
||||||
case 2:
|
case 2: kontoAnlegen(); break;
|
||||||
kontoAnlegen();
|
|
||||||
break;
|
|
||||||
case 3: geldEinzahlen(); break;
|
case 3: geldEinzahlen(); break;
|
||||||
case 4: geldAuszahlen(); break;
|
case 4: geldAuszahlen(); break;
|
||||||
case 5: kontoauszugDrucken(); break;
|
case 5: kontoauszugDrucken(); break;
|
||||||
case 6: überweisungBeauftragen(); break;
|
case 6: überweisungBeauftragen(); break;
|
||||||
case 9: break mainloop;
|
case 7: überweisungDispoBeauftragen();
|
||||||
|
case 8: getSaldo(); break;
|
||||||
|
case 9:
|
||||||
|
case 10: break mainloop;
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
@ -56,12 +59,12 @@ public class UI {
|
||||||
|
|
||||||
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:");
|
||||||
for (String s : konten) {
|
for (String s : konten) {
|
||||||
System.out.println(s);
|
System.out.println(s);
|
||||||
}
|
}
|
||||||
|
@ -74,7 +77,7 @@ public class UI {
|
||||||
System.out.println("Bitte den Namen des Kontoinhabers angeben: ");
|
System.out.println("Bitte den Namen des Kontoinhabers angeben: ");
|
||||||
String name = sc.nextLine();
|
String name = sc.nextLine();
|
||||||
|
|
||||||
System.out.println("Möchten Sie ein Sparkonto (1) oder ein Girokonto (2) anlegen?");
|
System.out.println("Möchten Sie ein Sparkonto (1) oder ein Girokonto (2) anlegen?");
|
||||||
int auswahl = Integer.parseInt(sc.nextLine());
|
int auswahl = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
int kontonummer = bs.kontoAnlegen(name, auswahl);
|
int kontonummer = bs.kontoAnlegen(name, auswahl);
|
||||||
|
@ -83,12 +86,12 @@ public class UI {
|
||||||
|
|
||||||
private void geldEinzahlen() throws Exception {
|
private void geldEinzahlen() throws Exception {
|
||||||
System.out.println("Geld einzahlen");
|
System.out.println("Geld einzahlen");
|
||||||
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
||||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
// optional prüfen, ob Konto existiert
|
// optional prüfen, ob Konto existiert
|
||||||
|
|
||||||
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);
|
||||||
|
@ -98,10 +101,10 @@ public class UI {
|
||||||
|
|
||||||
private void geldAuszahlen() throws Exception {
|
private void geldAuszahlen() throws Exception {
|
||||||
System.out.println("Geld auszahlen");
|
System.out.println("Geld auszahlen");
|
||||||
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
||||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
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);
|
||||||
|
@ -111,13 +114,12 @@ public class UI {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void kontoauszugDrucken() {
|
private void kontoauszugDrucken() {
|
||||||
System.out.print("Bitte die gewünschte Kontonummer für den Auszug eingeben: ");
|
System.out.print("Bitte die gewünschte Kontonummer für den Auszug eingeben: ");
|
||||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
System.out.println();
|
System.out.println();
|
||||||
|
|
||||||
// in echt auf einem Drucker
|
System.out.println("Auszug für Konto " + kontonummer);
|
||||||
System.out.println("Auszug für Konto " + kontonummer);
|
|
||||||
String[] kontobewegungen = bs.erstelleKontoauszug(kontonummer);
|
String[] kontobewegungen = bs.erstelleKontoauszug(kontonummer);
|
||||||
|
|
||||||
if (kontobewegungen.length > 0)
|
if (kontobewegungen.length > 0)
|
||||||
|
@ -128,22 +130,53 @@ public class UI {
|
||||||
System.out.println("Noch keine Kontobewegungen.");
|
System.out.println("Noch keine Kontobewegungen.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void überweisungBeauftragen() {
|
private void überweisungBeauftragen() {
|
||||||
System.out.print("Bitte die Kontonummer des Ausgangskontos der Überweisung eingeben: ");
|
System.out.print("Bitte die Kontonummer des Ausgangskontos der Überweisung eingeben: ");
|
||||||
int startkonto = Integer.parseInt(sc.nextLine());
|
int startkonto = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
System.out.print("Bitte die Kontonummmer für das Zielkonto der Überweisung eingeben: ");
|
System.out.print("Bitte die Kontonummmer für das Zielkonto der Überweisung eingeben: ");
|
||||||
int zielkonto = Integer.parseInt(sc.nextLine());
|
int zielkonto = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
System.out.print("Bitte den gewünschten Überweisungsbetrag eingeben: ");
|
System.out.print("Bitte den gewünschten Überweisungsbetrag eingeben: ");
|
||||||
double betrag = Double.parseDouble(sc.nextLine());
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
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);
|
||||||
|
|
||||||
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||||
|
}
|
||||||
|
|
||||||
|
private void überweisungDispoBeauftragen() {
|
||||||
|
System.out.print("Bitte die Kontonummer des Ausgangskontos der Überweisung eingeben: ");
|
||||||
|
int startkonto = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.print("Bitte die Kontonummmer für das Zielkonto der Überweisung eingeben: ");
|
||||||
|
int zielkonto = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.print("Bitte Dispohöhe eingeben: ");
|
||||||
|
int dispo =Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.print("Bitte den gewünschten Überweisungsbetrag eingeben: ");
|
||||||
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.print("Bitte den Verwendungszweck eingeben: ");
|
||||||
|
String verwendungszweck = sc.nextLine();
|
||||||
|
|
||||||
|
boolean erfolgreich = bs.überweisungDispoBeauftragen(dispo, startkonto, zielkonto, (long)(betrag * 100), verwendungszweck);
|
||||||
|
|
||||||
|
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||||
|
}
|
||||||
|
|
||||||
|
private void getSaldo() {
|
||||||
|
System.out.print("Bitte die gewünschte Kontonummer für den Auszug eingeben: ");
|
||||||
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.print("Bitte die gewünschte Anzahl von Kontobewegungen: ");
|
||||||
|
int anzahl = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.println(bs.getSaldo(kontonummer, anzahl)/100);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue