forked from hummel/Bank-System
Compare commits
4 Commits
Author | SHA1 | Date |
---|---|---|
Oliver Hummel | 44541d7255 | |
Oliver Hummel | 2a1714df2f | |
Oliver Hummel | c7600e3325 | |
Oliver Hummel | 852b7ae9d4 |
|
@ -0,0 +1 @@
|
|||
/.DS_Store
|
|
@ -179,5 +179,5 @@ replay_pid*
|
|||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
/bank.ser
|
||||
/zähler.ser
|
||||
*.ser
|
||||
/.DS_Store
|
||||
|
|
|
@ -1,65 +0,0 @@
|
|||
package de.hs_mannheim.informatik.bank.domain;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
class GiroKontoTest {
|
||||
|
||||
@Test
|
||||
void Auszahlungssystemtest() {
|
||||
|
||||
Girokonto k1 = new Girokonto("Lionel", 1);
|
||||
Girokonto k2 = new Girokonto("Mbappe", 2);
|
||||
Girokonto k3 = new Girokonto("Neuer", 3);
|
||||
Girokonto k4 = new Girokonto("TerStegen", 4);
|
||||
|
||||
k1.einzahlen(100, "Test", "Moneyy", "YourBoss");
|
||||
k1.auszahlen(1005, "Test", "Moneyy", "YourBoss");
|
||||
|
||||
assertEquals(95,k1.getDispositionskredit());
|
||||
assertEquals(0,k1.getKontostand());
|
||||
|
||||
k2.einzahlen(0, "Test", "Moneyy", "YourBoss");
|
||||
k2.auszahlen(500, "Test", "Moneyy", "YourBoss");
|
||||
assertEquals(500,k2.getDispositionskredit());
|
||||
assertEquals(0,k2.getKontostand());
|
||||
|
||||
k3.einzahlen(0, "Test", "Moneyy", "YourBoss");
|
||||
k3.auszahlen(1000, "Test", "Moneyy", "YourBoss");
|
||||
assertEquals(0,k3.getDispositionskredit());
|
||||
assertEquals(0,k3.getKontostand());
|
||||
|
||||
k4.einzahlen(0, "Test", "Moneyy", "YourBoss");
|
||||
k4.auszahlen(1001, "Test", "Moneyy", "YourBoss");
|
||||
assertEquals(1000,k4.getDispositionskredit());
|
||||
assertEquals(0,k4.getKontostand());
|
||||
|
||||
}
|
||||
@Test
|
||||
void überweisssystemtest() {
|
||||
Girokonto k1 = new Girokonto("Lionel", 1);
|
||||
Girokonto k2 = new Girokonto("Mbappe", 2);
|
||||
Girokonto k3 = new Girokonto("Neuer", 3);
|
||||
Girokonto k4 = new Girokonto("TerStegen", 4);
|
||||
|
||||
k1.überweise(k2,200, "Test");
|
||||
assertEquals(800,k1.getDispositionskredit());
|
||||
assertEquals(0,k1.getKontostand());
|
||||
|
||||
assertEquals(1000,k2.getDispositionskredit());
|
||||
assertEquals(200,k2.getKontostand());
|
||||
|
||||
|
||||
k3.überweise(k4,5001, "Test");
|
||||
assertEquals(1000,k4.getDispositionskredit());
|
||||
assertEquals(0,k4.getKontostand());
|
||||
|
||||
assertEquals(1000,k3.getDispositionskredit());
|
||||
assertEquals(0,k3.getKontostand());
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -3,73 +3,29 @@ package de.hs_mannheim.informatik.bank.domain;
|
|||
import java.io.Serializable;
|
||||
|
||||
public class Girokonto extends Konto implements Serializable {
|
||||
private long Dispositionskredit = 1000;
|
||||
private final long DispositionskreditGrenze = Dispositionskredit;
|
||||
private long dispo = 100000;
|
||||
|
||||
|
||||
public Girokonto(String inhaber, int kontozنhler) {
|
||||
super(inhaber, kontozنhler);
|
||||
public Girokonto(String inhaber, int kontozähler) {
|
||||
super(inhaber, kontozähler);
|
||||
}
|
||||
//Wir überschreiben die Methode auszahlen
|
||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||
if(super.getKontostand() - betrag >= 0 )
|
||||
{
|
||||
super.auszahlen(betrag, zweck, art, auftraggeber);
|
||||
|
||||
return true;
|
||||
}
|
||||
else if(betrag <= this.Dispositionskredit+super.getKontostand())
|
||||
{
|
||||
long DispoBetrag = betrag-super.getKontostand();
|
||||
super.auszahlen(super.getKontostand(), "Kein Geld", "Diskpostionsauszahlung", auftraggeber);
|
||||
this.Dispositionskredit -= DispoBetrag;
|
||||
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;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
public void einzahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||
long DispoBetrag = betrag - (DispositionskreditGrenze-Dispositionskredit);
|
||||
if(Dispositionskredit != 5000)
|
||||
{
|
||||
|
||||
if(betrag >= DispositionskreditGrenze-Dispositionskredit)
|
||||
{
|
||||
@Override
|
||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||
if (stand - betrag >= dispo * (-1)) {
|
||||
stand -= betrag;
|
||||
|
||||
this.Dispositionskredit = DispositionskreditGrenze;
|
||||
super.einzahlen(DispoBetrag, zweck, art, auftraggeber);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
this.Dispositionskredit += betrag;
|
||||
super.einzahlen(0, "Dispostitionseinzahlung", "Kredit", auftraggeber);
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
super.einzahlen(betrag, zweck, art, auftraggeber);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public long getDispositionskredit() {
|
||||
return Dispositionskredit;
|
||||
}
|
||||
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
||||
if (super.getKontostand() - betrag >= 0) {
|
||||
this.auszahlen(betrag, zweck, "ـberweisungsausgang", super.getInhaber());
|
||||
ziel.einzahlen(betrag, zweck, "ـberweisungseingang", super.getInhaber());
|
||||
|
||||
return true;
|
||||
}
|
||||
else if(betrag <= this.Dispositionskredit+super.getKontostand())
|
||||
{
|
||||
this.auszahlen(betrag, zweck, "ـberweisungsausgang", super.getInhaber());
|
||||
ziel.einzahlen(betrag, zweck, "ـberweisungseingang", super.getInhaber());
|
||||
kontobewegungen.add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
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 {
|
||||
private int nummer;
|
||||
private long stand = 0;
|
||||
protected long stand = 0;
|
||||
private String inhaber;
|
||||
|
||||
private ArrayList<Kontobewegung> kontobewegungen;
|
||||
protected ArrayList<Kontobewegung> kontobewegungen;
|
||||
|
||||
public Konto(String inhaber, int kontozähler) {
|
||||
nummer = 1000 + kontozähler;
|
||||
|
@ -16,16 +16,6 @@ public class Konto implements Serializable {
|
|||
|
||||
this.kontobewegungen = new ArrayList<>();
|
||||
}
|
||||
public long saldo() {
|
||||
int length = kontobewegungen.size();
|
||||
long summe = 0;
|
||||
for(int i = length-3;i<length;i++)
|
||||
{
|
||||
summe += kontobewegungen.get(i).getBetrag();
|
||||
|
||||
}
|
||||
return summe;
|
||||
}
|
||||
|
||||
public int getKontonummer() {
|
||||
return nummer;
|
||||
|
@ -73,4 +63,14 @@ public class Konto implements Serializable {
|
|||
return auflistung;
|
||||
}
|
||||
|
||||
public long berechneSaldo(int anzahl) {
|
||||
long saldo = 0;
|
||||
|
||||
for (int i = 0; i < anzahl; i++) {
|
||||
saldo += kontobewegungen.get(i).getBetrag() ;
|
||||
}
|
||||
|
||||
return saldo;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -15,10 +15,17 @@ class KontoTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
void testKontoEinUndAuszahlung() {
|
||||
void testKontoEinUndAuszahlungUndSaldo() {
|
||||
Konto k = new Konto("Müller", 0);
|
||||
Konto k2 = new Konto("Mayer", 1);
|
||||
testKontoEinUndAuszahlungUndSaldo(k, k2);
|
||||
|
||||
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());
|
||||
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
||||
|
||||
|
@ -28,23 +35,26 @@ class KontoTest {
|
|||
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
||||
assertEquals(50, k2.getKontostand());
|
||||
|
||||
assertFalse(k2.auszahlen(500, "Test", "Auszahlung", "JUnit"));
|
||||
assertEquals(50, k2.getKontostand());
|
||||
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
||||
assertEquals(0, k2.getKontostand());
|
||||
|
||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k2.einzahlen(1, "Test", "Einzahlung", "JUnit");
|
||||
|
||||
assertEquals(100, k2.berechneSaldo(1));
|
||||
assertEquals(100, k2.berechneSaldo(4));
|
||||
assertEquals(k2.getKontostand(), k2.berechneSaldo(6));
|
||||
}
|
||||
|
||||
void saldoTest() {
|
||||
Konto acc = new Konto ("GG", 1);
|
||||
|
||||
acc.einzahlen(200, "T", "Bla", "Bla");
|
||||
acc.einzahlen(300, "T", "Bla", "Bla");
|
||||
acc.einzahlen(250, "T", "Bla", "Bla");
|
||||
acc.einzahlen(100, "T", "Bla", "Bla");
|
||||
|
||||
acc.einzahlen(550, "T", "Bla", "Bla");
|
||||
acc.einzahlen(250, "T", "Bla", "Bla");
|
||||
|
||||
assertEquals(800, acc.saldo());
|
||||
@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"));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -18,9 +18,9 @@ public class Kontobewegung implements Serializable {
|
|||
|
||||
this.datum = new Date();
|
||||
}
|
||||
public long getBetrag()
|
||||
{
|
||||
return this.betrag;
|
||||
|
||||
public long getBetrag() {
|
||||
return betrag;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -53,19 +53,11 @@ public class Banksystem {
|
|||
public boolean geldAuszahlen(int kontonummer, long betrag) throws Exception {
|
||||
Konto konto = bank.findeKonto(kontonummer);
|
||||
|
||||
boolean erg = konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
||||
|
||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
||||
|
||||
return konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
||||
}
|
||||
|
||||
public long saldoAusgabe(int kontonummer) {
|
||||
Konto konto = bank.findeKonto(kontonummer);
|
||||
if (konto.getKontobewegungen().length >= 2) {
|
||||
return konto.saldo();
|
||||
}
|
||||
else {
|
||||
return 0;
|
||||
}
|
||||
return erg;
|
||||
}
|
||||
|
||||
public String[] erstelleKontoauszug(int kontonummer) {
|
||||
|
@ -74,12 +66,15 @@ public class Banksystem {
|
|||
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) throws Exception {
|
||||
Konto start = bank.findeKonto(startkonto);
|
||||
Konto ziel = bank.findeKonto(zielkonto);
|
||||
|
||||
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
||||
return ((Girokonto)start).überweise((Girokonto)ziel, betrag, verwendungszweck);
|
||||
boolean erfolg = ((Girokonto)start).überweise((Girokonto)ziel, betrag, verwendungszweck);
|
||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
||||
|
||||
return erfolg;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
@ -91,5 +86,10 @@ public class Banksystem {
|
|||
return konto.getKontostand();
|
||||
}
|
||||
|
||||
public long saldoBestimmen(int kontonummer, int anzahl) {
|
||||
Konto konto = bank.findeKonto(kontonummer);
|
||||
|
||||
return konto.berechneSaldo(anzahl);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -2,137 +2,69 @@ package de.hs_mannheim.informatik.bank.facade;
|
|||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
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.TestMethodOrder;
|
||||
|
||||
import de.hs_mannheim.informatik.bank.infrastructure.Persistenz;
|
||||
|
||||
@TestMethodOrder(OrderAnnotation.class)
|
||||
class SystemTest {
|
||||
private static Banksystem bs;
|
||||
|
||||
@BeforeAll
|
||||
static void initBanksystem() throws Exception {
|
||||
bs = new Banksystem("Testsystem");
|
||||
}
|
||||
|
||||
@Test
|
||||
void smokeTest() throws Exception {
|
||||
String bankname = "Testsystem";
|
||||
File f = new File(bankname + "-bank-data.ser");
|
||||
if(f.exists())
|
||||
{
|
||||
f.delete();
|
||||
}
|
||||
Banksystem bs = new Banksystem(bankname);
|
||||
@Order(1)
|
||||
void smokeTest() {
|
||||
assertNotNull(bs);
|
||||
assertEquals(0, bs.getKontenliste().length);
|
||||
assertEquals("Testsystem", bs.getBankname());
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
void KontoEinzahlenTest() throws Exception {
|
||||
|
||||
String bankname = "Testsystem";
|
||||
File f = new File(bankname+"-bank-data.ser");
|
||||
if(f.exists()) {
|
||||
f.delete();
|
||||
}
|
||||
|
||||
Banksystem bs = new Banksystem(bankname);
|
||||
|
||||
bs.kontoAnlegen("Eren", 1);
|
||||
bs.kontoAnlegen("Rayner", 1);
|
||||
bs.kontoAnlegen("Armin", 1);
|
||||
bs.kontoAnlegen("Mekasa", 1);
|
||||
bs.kontoAnlegen("Anny", 1);
|
||||
|
||||
bs.geldEinzahlen(1000, 150);
|
||||
|
||||
bs.geldEinzahlen(1001, 0);
|
||||
|
||||
bs.geldEinzahlen(1002, -100);
|
||||
bs.geldEinzahlen(1002, 300);
|
||||
|
||||
bs.geldEinzahlen(1003, Integer.MAX_VALUE);
|
||||
|
||||
bs.geldEinzahlen(1004, Integer.MAX_VALUE);
|
||||
bs.geldEinzahlen(1004, Integer.MIN_VALUE);
|
||||
bs.geldEinzahlen(1004, 10);
|
||||
|
||||
assertEquals(150,bs.getKontostand(1000));
|
||||
assertEquals(0,bs.getKontostand(1001));
|
||||
assertEquals(200,bs.getKontostand(1002));
|
||||
assertEquals(Integer.MAX_VALUE,bs.getKontostand(1003));
|
||||
assertEquals(Integer.MAX_VALUE - Integer.MIN_VALUE + 10, bs.getKontostand(1004));
|
||||
assertEquals("Testsystem", bs.getBankname());
|
||||
}
|
||||
|
||||
@Test
|
||||
void GiroKontoEinzahlenTest() throws Exception {
|
||||
@Order(2)
|
||||
void einzahlenTest() throws Exception {
|
||||
int knr = bs.kontoAnlegen("Test1", 1);
|
||||
|
||||
String bankname = "Testsystem";
|
||||
File f = new File(bankname+"-bank-data.ser");
|
||||
if(f.exists())
|
||||
{
|
||||
f.delete();
|
||||
}
|
||||
assertEquals(1000, bs.geldEinzahlen(knr, 1000));
|
||||
|
||||
Banksystem bs = new Banksystem(bankname);
|
||||
bs.geldEinzahlen(knr, 1);
|
||||
assertEquals(1001, bs.getKontostand(knr));
|
||||
|
||||
bs.kontoAnlegen("Messi", 0); //Hier hat das Programm ein GiroKonto erstellt
|
||||
bs.kontoAnlegen("Neymar", 21212121);
|
||||
bs.kontoAnlegen("Lewandowski", -23);
|
||||
bs.kontoAnlegen("Dembele", 2);
|
||||
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
|
||||
bs.geldEinzahlen(1001, 0);
|
||||
|
||||
bs.geldEinzahlen(1002, -400);
|
||||
bs.geldEinzahlen(1002, 500);
|
||||
|
||||
bs.geldEinzahlen(1003, Integer.MAX_VALUE);
|
||||
|
||||
assertEquals(100, bs.getKontostand(1000));
|
||||
assertEquals(0, bs.getKontostand(1001));
|
||||
assertEquals(100, bs.getKontostand(1002));
|
||||
assertEquals(Integer.MAX_VALUE, bs.getKontostand(1003));
|
||||
assertEquals("Testsystem", bs.getBankname());
|
||||
assertEquals(1001, bs.geldEinzahlen(knr, 0));
|
||||
}
|
||||
|
||||
@Test
|
||||
void AuszahlenTest() throws Exception {
|
||||
String bankname = "Testsystem";
|
||||
File f = new File(bankname+"-bank-data.ser");
|
||||
if(f.exists())
|
||||
{
|
||||
f.delete();
|
||||
}
|
||||
@Order(3)
|
||||
void persistenzTest() throws Exception {
|
||||
int knr = bs.kontoAnlegen("Test2", 2);
|
||||
int knr2 = bs.kontoAnlegen("Test3", 2);
|
||||
|
||||
Banksystem bs = new Banksystem(bankname);
|
||||
bs.geldEinzahlen(knr, 1000);
|
||||
bs.geldAuszahlen(knr, 500);
|
||||
assertTrue(bs.überweisungBeauftragen(knr, knr2, 100, "Überweisungstest."));
|
||||
|
||||
bs.kontoAnlegen("Ryan", 1);
|
||||
bs.kontoAnlegen("Ronalds", 1);
|
||||
bs.kontoAnlegen("Dead", 1);
|
||||
bs.kontoAnlegen("Pool", 1);
|
||||
bs.kontoAnlegen("itmeee", 1);
|
||||
assertEquals(400, bs.getKontostand(knr));
|
||||
|
||||
bs.geldEinzahlen(1000, 100);
|
||||
bs.geldAuszahlen(1000, 101);
|
||||
bs = null;
|
||||
|
||||
bs.geldEinzahlen(1001, 100);
|
||||
bs.geldAuszahlen(1001, 100);
|
||||
Banksystem bs2 = new Banksystem("Testsystem");
|
||||
assertEquals(400, bs2.getKontostand(knr));
|
||||
}
|
||||
|
||||
bs.geldAuszahlen(1002, 0);
|
||||
|
||||
bs.geldAuszahlen(1003, 20);
|
||||
|
||||
bs.geldEinzahlen(1004, Integer.MIN_VALUE);
|
||||
|
||||
assertEquals(100,bs.getKontostand(1000));
|
||||
assertEquals(0,bs.getKontostand(1001));
|
||||
assertEquals(0,bs.getKontostand(1002));
|
||||
assertEquals(0,bs.getKontostand(1003));
|
||||
assertEquals(Integer.MAX_VALUE + 1, bs.getKontostand(1004));
|
||||
assertEquals("Testsystem", bs.getBankname());
|
||||
@AfterAll
|
||||
static void cleanup() {
|
||||
File file = new File("/Users/oliver/git/Bank-System/Bank-Beispiel/Testsystem-bank-data.ser");
|
||||
file.delete();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -20,13 +20,14 @@ public class UI {
|
|||
while (true) {
|
||||
System.out.println();
|
||||
System.out.println("--------");
|
||||
System.out.println("Hauptmenأ¼");
|
||||
System.out.println("Hauptmenü");
|
||||
System.out.println("1 -> Konten anzeigen");
|
||||
System.out.println("2 -> Konto anlegen");
|
||||
System.out.println("3 -> Geld einzahlen");
|
||||
System.out.println("4 -> Geld auszahlen");
|
||||
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();
|
||||
|
@ -45,6 +46,7 @@ public class UI {
|
|||
case 4: geldAuszahlen(); break;
|
||||
case 5: kontoauszugDrucken(); break;
|
||||
case 6: überweisungBeauftragen(); break;
|
||||
case 7: saldoAbfragen(); break;
|
||||
case 9: break mainloop;
|
||||
}
|
||||
|
||||
|
@ -56,12 +58,12 @@ public class UI {
|
|||
|
||||
System.out.println("Auf Wiedersehen!");
|
||||
|
||||
} // hauptmenأ¼
|
||||
} // hauptmenü
|
||||
|
||||
private void kontenAnzeigen() {
|
||||
String[] konten = bs.getKontenliste();
|
||||
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) {
|
||||
System.out.println(s);
|
||||
}
|
||||
|
@ -74,7 +76,7 @@ public class UI {
|
|||
System.out.println("Bitte den Namen des Kontoinhabers angeben: ");
|
||||
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 kontonummer = bs.kontoAnlegen(name, auswahl);
|
||||
|
@ -83,52 +85,39 @@ public class UI {
|
|||
|
||||
private void geldEinzahlen() throws Exception {
|
||||
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());
|
||||
|
||||
// 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());
|
||||
|
||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
||||
|
||||
System.out.printf("Einzahlung erfolgreich, neuer Kontostand = %.2f Euro", (neuerKontostand / 100.0));
|
||||
if(bs.saldoAusgabe(kontonummer) != 0)
|
||||
{
|
||||
System.out.println();
|
||||
System.out.println("Saldo" + bs.saldoAusgabe(kontonummer)/100);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void geldAuszahlen() throws Exception {
|
||||
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());
|
||||
System.out.print("Bitte den gewأ¼nschten Betrag eingeben: ");
|
||||
|
||||
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
||||
double betrag = Double.parseDouble(sc.nextLine());
|
||||
|
||||
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long)betrag * 100);
|
||||
|
||||
System.out.printf("Auszahlung" + ((!erfolgreich)? " nicht" : "" )+ " erfolgreich. ");
|
||||
System.out.printf("Neuer Kontostand = %.2f Euro.", (bs.getKontostand(kontonummer) / 100.0));
|
||||
if(bs.saldoAusgabe(kontonummer) != 0)
|
||||
{
|
||||
System.out.println();
|
||||
System.out.println("Saldo" + bs.saldoAusgabe(kontonummer)/100);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
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());
|
||||
|
||||
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);
|
||||
|
||||
if (kontobewegungen.length > 0)
|
||||
|
@ -139,14 +128,14 @@ public class UI {
|
|||
System.out.println("Noch keine Kontobewegungen.");
|
||||
}
|
||||
|
||||
private void überweisungBeauftragen() {
|
||||
System.out.print("Bitte die Kontonummer des Ausgangskontos der أœberweisung eingeben: ");
|
||||
private void überweisungBeauftragen() throws Exception {
|
||||
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: ");
|
||||
System.out.print("Bitte die Kontonummmer für das Zielkonto der Überweisung eingeben: ");
|
||||
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());
|
||||
|
||||
System.out.print("Bitte den Verwendungszweck eingeben: ");
|
||||
|
@ -154,7 +143,18 @@ public class UI {
|
|||
|
||||
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 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