Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
Sebastian | 4f0eba919b | |
Sebastian | 29fc53bbbd |
|
@ -1 +0,0 @@
|
||||||
/.DS_Store
|
|
|
@ -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="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-16"/>
|
||||||
<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.junit.JUNIT_CONTAINER/5"/>
|
<classpathentry exported="true" kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
||||||
<classpathentry kind="output" path="bin"/>
|
<classpathentry kind="output" path="bin"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
|
|
@ -179,5 +179,5 @@ replay_pid*
|
||||||
# Built Visual Studio Code Extensions
|
# Built Visual Studio Code Extensions
|
||||||
*.vsix
|
*.vsix
|
||||||
|
|
||||||
*.ser
|
/bank.ser
|
||||||
/.DS_Store
|
/zähler.ser
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
|
@ -3,29 +3,18 @@ package de.hs_mannheim.informatik.bank.domain;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
public class Girokonto extends Konto implements Serializable {
|
public class Girokonto extends Konto implements Serializable {
|
||||||
private long dispo = 100000;
|
|
||||||
|
|
||||||
public Girokonto(String inhaber, int kontozähler) {
|
public Girokonto(String inhaber, int kontozähler) {
|
||||||
super(inhaber, kontozähler);
|
super(inhaber, kontozähler);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
private long dispoKredit = -50000;
|
||||||
|
|
||||||
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
|
||||||
if (super.getKontostand() - betrag >= dispo * (-1)) {
|
|
||||||
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
|
||||||
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
|
||||||
|
|
||||||
return true;
|
public boolean Überweise(Girokonto ziel, long betrag, String zweck) {
|
||||||
}
|
if (super.getKontostand() - betrag >= -50000) {
|
||||||
|
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
||||||
return false;
|
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
|
||||||
if (stand - betrag >= dispo * (-1)) {
|
|
||||||
stand -= betrag;
|
|
||||||
|
|
||||||
kontobewegungen.add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
package de.hs_mannheim.informatik.bank.domain;
|
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
|
|
||||||
class GirokontoTest {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void testÜberziehung() {
|
|
||||||
Konto k = new Girokonto("Müller", 0);
|
|
||||||
k.einzahlen(10000, "Test", "Einzahlung", "JUnit");
|
|
||||||
|
|
||||||
assertTrue(k.auszahlen(20000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertEquals(-10000, k.getKontostand());
|
|
||||||
|
|
||||||
assertTrue(k.auszahlen(40000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertTrue(k.auszahlen(50000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertEquals(-100000, k.getKontostand());
|
|
||||||
|
|
||||||
assertFalse(k.auszahlen(40000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertFalse(k.auszahlen(1, "Test", "Einzahlung", "JUnit"));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -5,10 +5,10 @@ import java.util.ArrayList;
|
||||||
|
|
||||||
public class Konto implements Serializable {
|
public class Konto implements Serializable {
|
||||||
private int nummer;
|
private int nummer;
|
||||||
protected long stand = 0;
|
private long stand = 0;
|
||||||
private String inhaber;
|
private String inhaber;
|
||||||
|
|
||||||
protected 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;
|
||||||
|
@ -52,6 +52,18 @@ public class Konto implements Serializable {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean giroAuszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
if (stand - betrag >= -50000) {
|
||||||
|
stand -= betrag;
|
||||||
|
|
||||||
|
kontobewegungen.add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public String[] getKontobewegungen() {
|
public String[] getKontobewegungen() {
|
||||||
String[] auflistung = new String[kontobewegungen.size()];
|
String[] auflistung = new String[kontobewegungen.size()];
|
||||||
|
|
||||||
|
@ -63,14 +75,8 @@ public class Konto implements Serializable {
|
||||||
return auflistung;
|
return auflistung;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long berechneSaldo(int anzahl) {
|
public long berechneSaldo(long betrag) {
|
||||||
long saldo = 0;
|
long neuerStand = stand + betrag;
|
||||||
|
return neuerStand;
|
||||||
for (int i = 0; i < anzahl; i++) {
|
|
||||||
saldo += kontobewegungen.get(i).getBetrag() ;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return saldo;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,17 +15,11 @@ class KontoTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testKontoEinUndAuszahlungUndSaldo() {
|
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);
|
||||||
testKontoEinUndAuszahlungUndSaldo(k, k2);
|
Konto k3 = new Konto("Sappel", 0);
|
||||||
|
|
||||||
k = new Girokonto("Müller", 0);
|
|
||||||
k2 = new Girokonto("Mayer", 1);
|
|
||||||
testKontoEinUndAuszahlungUndSaldo(k, k2);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void testKontoEinUndAuszahlungUndSaldo(Konto k, Konto k2) {
|
|
||||||
assertEquals("Mayer", k2.getInhaber());
|
assertEquals("Mayer", k2.getInhaber());
|
||||||
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
||||||
|
|
||||||
|
@ -35,26 +29,15 @@ class KontoTest {
|
||||||
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
||||||
assertEquals(50, k2.getKontostand());
|
assertEquals(50, k2.getKontostand());
|
||||||
|
|
||||||
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
k3.einzahlen(400, "Test", "Auszahlung", "JUnit");
|
||||||
assertEquals(0, k2.getKontostand());
|
assertEquals(400, k3.getKontostand());
|
||||||
|
|
||||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
assertTrue(k3.auszahlen(500, "Test", "Test", "JUnit"));
|
||||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
assertEquals(-100, k3.getKontostand());
|
||||||
k2.einzahlen(1, "Test", "Einzahlung", "JUnit");
|
|
||||||
|
|
||||||
assertEquals(100, k2.berechneSaldo(1));
|
assertFalse(k3.auszahlen(500, "Test", "Test", "JUnit"));
|
||||||
assertEquals(100, k2.berechneSaldo(4));
|
|
||||||
assertEquals(k2.getKontostand(), k2.berechneSaldo(6));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void testKeineÜberziehungFürSparkonten() {
|
|
||||||
Konto k = new Konto("Müller", 0);
|
|
||||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
|
||||||
assertFalse(k.auszahlen(500, "Test", "Auszahlung", "JUnit"));
|
|
||||||
|
|
||||||
k.auszahlen(50, "Test", "Auszahlung", "JUnit");
|
|
||||||
assertFalse(k.auszahlen(100, "Test", "Auszahlung", "JUnit"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,14 +19,11 @@ public class Kontobewegung implements Serializable {
|
||||||
this.datum = new Date();
|
this.datum = new Date();
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getBetrag() {
|
|
||||||
return betrag;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Kontobewegung [betrag=" + betrag + ", datum=" + datum + ", betreff=" + betreff + ", art=" + art
|
return "Kontobewegung [betrag=" + betrag + ", datum=" + datum + ", betreff=" + betreff + ", art=" + art
|
||||||
+ ", auftraggeber=" + auftraggeber + "]";
|
+ ", auftraggeber=" + auftraggeber + "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,11 +53,12 @@ public class Banksystem {
|
||||||
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);
|
||||||
|
|
||||||
boolean erg = konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
|
||||||
|
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
||||||
|
if (konto instanceof Girokonto) {
|
||||||
return erg;
|
return konto.giroAuszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
||||||
}
|
}
|
||||||
|
|
||||||
public String[] erstelleKontoauszug(int kontonummer) {
|
public String[] erstelleKontoauszug(int kontonummer) {
|
||||||
|
@ -66,15 +67,12 @@ public class Banksystem {
|
||||||
return konto.getKontobewegungen();
|
return konto.getKontobewegungen();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean überweisungBeauftragen(int startkonto, int zielkonto, long betrag, String verwendungszweck) throws Exception {
|
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) {
|
||||||
boolean erfolg = ((Girokonto)start).überweise((Girokonto)ziel, betrag, verwendungszweck);
|
return ((Girokonto)start).Überweise((Girokonto)ziel, betrag, verwendungszweck);
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
|
||||||
|
|
||||||
return erfolg;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -86,10 +84,10 @@ public class Banksystem {
|
||||||
return konto.getKontostand();
|
return konto.getKontostand();
|
||||||
}
|
}
|
||||||
|
|
||||||
public long saldoBestimmen(int kontonummer, int anzahl) {
|
public long saldo(int kontonummer, double betrag) {
|
||||||
|
|
||||||
Konto konto = bank.findeKonto(kontonummer);
|
Konto konto = bank.findeKonto(kontonummer);
|
||||||
|
long saldo = konto.berechneSaldo(betrag);
|
||||||
return konto.berechneSaldo(anzahl);
|
return saldo;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,70 +1,59 @@
|
||||||
package de.hs_mannheim.informatik.bank.facade;
|
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.assertFalse;
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertNotEquals;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.AfterAll;
|
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
|
||||||
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
|
||||||
import org.junit.jupiter.api.Order;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.TestMethodOrder;
|
|
||||||
|
|
||||||
@TestMethodOrder(OrderAnnotation.class)
|
import de.hs_mannheim.informatik.bank.domain.Konto;
|
||||||
|
|
||||||
class SystemTest {
|
class SystemTest {
|
||||||
private static Banksystem bs;
|
|
||||||
|
|
||||||
@BeforeAll
|
|
||||||
static void initBanksystem() throws Exception {
|
|
||||||
bs = new Banksystem("Testsystem");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Order(1)
|
void smokeTest() throws Exception {
|
||||||
void smokeTest() {
|
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
|
@Test
|
||||||
@Order(2)
|
void EinAuszahlen () {
|
||||||
void einzahlenTest() throws Exception {
|
|
||||||
int knr = bs.kontoAnlegen("Test1", 1);
|
|
||||||
|
|
||||||
assertEquals(1000, bs.geldEinzahlen(knr, 1000));
|
Konto k = new Konto("Paulus", 0);
|
||||||
|
Konto k2 = new Konto("Mayer", 1);
|
||||||
|
|
||||||
bs.geldEinzahlen(knr, 1);
|
assertEquals("Mayer", k2.getInhaber());
|
||||||
assertEquals(1001, bs.getKontostand(knr));
|
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
||||||
|
|
||||||
assertEquals(1001, bs.geldEinzahlen(knr, 0));
|
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||||
|
assertEquals(100, k2.getKontostand());
|
||||||
|
|
||||||
|
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
||||||
|
assertEquals(50, k2.getKontostand());
|
||||||
|
|
||||||
|
assertFalse(k2.auszahlen(500, "Test", "Auszahlung", "JUnit"));
|
||||||
|
assertEquals(50, k2.getKontostand());
|
||||||
|
|
||||||
|
k.einzahlen(400, "Test", "Einzahlung", "JUnit");
|
||||||
|
assertEquals(400, k.getKontostand());
|
||||||
|
|
||||||
|
assertTrue(k.auszahlen(800, "Test", "Auszahlung", "JUnit"));
|
||||||
|
assertEquals(-100, k.getKontostand());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Order(3)
|
|
||||||
void persistenzTest() throws Exception {
|
void persistenzTest() throws Exception {
|
||||||
int knr = bs.kontoAnlegen("Test2", 2);
|
|
||||||
int knr2 = bs.kontoAnlegen("Test3", 2);
|
|
||||||
|
|
||||||
bs.geldEinzahlen(knr, 1000);
|
Banksystem bs = new Banksystem ("Testdatei");
|
||||||
bs.geldAuszahlen(knr, 500);
|
|
||||||
assertTrue(bs.überweisungBeauftragen(knr, knr2, 100, "Überweisungstest."));
|
|
||||||
|
|
||||||
assertEquals(400, bs.getKontostand(knr));
|
|
||||||
|
|
||||||
bs = null;
|
|
||||||
|
|
||||||
Banksystem bs2 = new Banksystem("Testsystem");
|
|
||||||
assertEquals(400, bs2.getKontostand(knr));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@AfterAll
|
|
||||||
static void cleanup() {
|
|
||||||
File file = new File("/Users/oliver/git/Bank-System/Bank-Beispiel/Testsystem-bank-data.ser");
|
|
||||||
file.delete();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@ public class Persistenz {
|
||||||
|
|
||||||
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();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void speichereBankDaten(Object bank, String name) throws Exception {
|
public static void speichereBankDaten(Object bank, String name) throws Exception {
|
||||||
|
|
|
@ -10,10 +10,10 @@ 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:
|
||||||
|
@ -27,7 +27,6 @@ public class UI {
|
||||||
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 -> Saldo abfragen");
|
|
||||||
|
|
||||||
System.out.println("9 -> Beenden");
|
System.out.println("9 -> Beenden");
|
||||||
System.out.println();
|
System.out.println();
|
||||||
|
@ -39,14 +38,11 @@ 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 7: saldoAbfragen(); break;
|
|
||||||
case 9: break mainloop;
|
case 9: break mainloop;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,6 +92,10 @@ public class UI {
|
||||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
||||||
|
|
||||||
System.out.printf("Einzahlung erfolgreich, neuer Kontostand = %.2f Euro", (neuerKontostand / 100.0));
|
System.out.printf("Einzahlung erfolgreich, neuer Kontostand = %.2f Euro", (neuerKontostand / 100.0));
|
||||||
|
|
||||||
|
if(bs.saldo()%6 == 0) {
|
||||||
|
System.out.println("Der Kontostand nach 6 Kontobewegungen beträgt: " + neuerKontostand);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void geldAuszahlen() throws Exception {
|
private void geldAuszahlen() throws Exception {
|
||||||
|
@ -105,17 +105,22 @@ 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);
|
||||||
|
|
||||||
System.out.printf("Auszahlung" + ((!erfolgreich)? " nicht" : "" )+ " erfolgreich. ");
|
System.out.printf("Auszahlung" + ((!erfolgreich)? " nicht" : "" )+ " erfolgreich. ");
|
||||||
System.out.printf("Neuer Kontostand = %.2f Euro.", (bs.getKontostand(kontonummer) / 100.0));
|
System.out.printf("Neuer Kontostand = %.2f Euro.", (bs.getKontostand(kontonummer) / 100.0));
|
||||||
|
|
||||||
|
if(bs.saldo()%6 == 0) {
|
||||||
|
System.out.println("Der Kontostand nach 6 Kontobewegungen beträgt: " + bs.getKontostand(kontonummer));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
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();
|
||||||
|
|
||||||
// in echt auf einem Drucker
|
// 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);
|
||||||
|
@ -128,7 +133,7 @@ public class UI {
|
||||||
System.out.println("Noch keine Kontobewegungen.");
|
System.out.println("Noch keine Kontobewegungen.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void überweisungBeauftragen() throws Exception {
|
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());
|
||||||
|
|
||||||
|
@ -141,20 +146,13 @@ 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);
|
||||||
|
|
||||||
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||||
|
|
||||||
|
if(bs.saldo(startkonto,betrag)%6 == 0) {
|
||||||
|
System.out.println("Der Kontostand nach 6 Kontobewegungen beträgt: " + bs.getKontostand(startkonto));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void saldoAbfragen() {
|
|
||||||
System.out.print("Bitte die Kontonummer des gewünschten Kontos eingeben: ");
|
|
||||||
int konto = Integer.parseInt(sc.nextLine());
|
|
||||||
|
|
||||||
System.out.print("Bitte die Anzahl der Kontobewegungen für den Saldo eingeben: ");
|
|
||||||
int anzahl = Integer.parseInt(sc.nextLine());
|
|
||||||
|
|
||||||
long saldo = bs.saldoBestimmen(konto, anzahl);
|
|
||||||
System.out.printf("Der Saldo nach %d Kontobewegungen beträgt %.2f Euro.%n", anzahl, (saldo/100d));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue