Einbindung Filter in Gerichtsverwaltung

This commit is contained in:
2023-12-20 08:30:57 +01:00
parent 20db36e70e
commit 8dd43b212e
19 changed files with 60 additions and 35 deletions

View File

@@ -114,6 +114,7 @@ public class AccounterstellungMitarbeiter {
}
private boolean eingabenGueltig() {
return true;
}
@@ -121,6 +122,7 @@ public class AccounterstellungMitarbeiter {
if (eingabenGueltig()) {
status.setText("Daten Erfolgreich gespeichert");
einmalpw.setText(einmalPwGenerieren());
}
}

View File

@@ -101,7 +101,11 @@ public class BestelluebersichtMitarbeiter {
}
public void onAbmelden(ActionEvent event) {
VerwaltungApplication.sceneWechseln("login-view.fxml");
VerwaltungApplication.abmelden();
}
public void onZurueck(ActionEvent actionEvent) {
VerwaltungApplication.sceneWechseln("hauptmenue_mitarbeiter-view.fxml");
}
}

View File

@@ -1,9 +1,8 @@
package de.subway_surfers.vpr_app;
import de.subway_surfers.vpr_app.logik.Zutat;
import Logik.Zutat;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.Node;
import javafx.scene.control.Button;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;

View File

@@ -15,4 +15,9 @@ public class HauptmenueMitarbeiterView {
public void onSpeiseplanClick(ActionEvent actionEvent) {
VerwaltungApplication.sceneWechseln("essensverwaltung_mitarbeiter-view.fxml");
}
public void onBestellungenAnzeigen(ActionEvent actionEvent) {
VerwaltungApplication.sceneWechseln("bestelluebersicht_mitarbeiter-view.fxml");
}
}

View File

@@ -17,7 +17,7 @@ public class VerwaltungApplication extends Application {
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(VerwaltungApplication.class.getResource("bestelluebersicht_mitarbeiter-view.fxml"));
FXMLLoader fxmlLoader = new FXMLLoader(VerwaltungApplication.class.getResource("login-view.fxml"));
Scene scene = new Scene(fxmlLoader.load());
stage.setWidth(960);
@@ -26,7 +26,7 @@ public class VerwaltungApplication extends Application {
stage.setMinWidth(960);
stage.setMinHeight(540);
stage.setTitle("Hello!");
//stage.setTitle("Hello!");
stage.setScene(scene);
stage.show();

View File

@@ -1,18 +1,21 @@
package de.subway_surfers.vpr_app.logik;
import Logik.Zutat;
import java.util.ArrayList;
public class Kind {
private String name;
private String vorname;
private int id;
private String name;
private String vorname;
private int id;
private ArrayList<Zutat> filter;
public Kind(String name, String vorname, int id) {
ArrayList<Zutat> filter = new ArrayList<>();
this.name = name;
this.name = name;
this.vorname = vorname;
this.id = id;
this.id = id;
}
public String getName() {
@@ -38,4 +41,4 @@ public class Kind {
public ArrayList<Zutat> getFilter() {
return filter;
}
}
}

View File

@@ -1,34 +0,0 @@
package de.subway_surfers.vpr_app.logik;
import java.util.ArrayList;
public class Mahlzeit {
private String name;
private float preis;
private ArrayList<Zutat> zutaten;
private String beschreibung;
public Mahlzeit (String name, float preis, String beschreibung) {
this.name = name;
this.preis = preis;
this.beschreibung = beschreibung;
zutaten = new ArrayList<>();
}
public String getName() {
return name;
}
public float getPreis() {
return preis;
}
public ArrayList<Zutat> getZutaten() {
return zutaten;
}
public String getBeschreibung() {
return beschreibung;
}
}

View File

@@ -1,22 +0,0 @@
package de.subway_surfers.vpr_app.logik;
import java.util.ArrayList;
public class Tagesplan {
private ArrayList<Mahlzeit> gerichte;
private String datum;
public Tagesplan(String datum) {
this.datum = datum;
}
public ArrayList<Mahlzeit> getGerichte() {
return gerichte;
}
public String getDatum() {
return datum;
}
}

View File

@@ -1,12 +0,0 @@
package de.subway_surfers.vpr_app.logik;
public class Zutat {
private String name;
public Zutat (String name) {
this.name = name;
}
public String getName(){
return this.name;
}
}