Einbindung Filter in Gerichtsverwaltung

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

View File

@ -7,9 +7,8 @@
<option value="$PROJECT_DIR$/pom.xml" /> <option value="$PROJECT_DIR$/pom.xml" />
</list> </list>
</option> </option>
<option name="workspaceImportForciblyTurnedOn" value="true" />
</component> </component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK"> <component name="ProjectRootManager" version="2" languageLevel="JDK_X" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" /> <output url="file://$PROJECT_DIR$/out" />
</component> </component>
</project> </project>

View File

@ -9,7 +9,7 @@ public class Kind {
private String vorname; private String vorname;
private int id; private int id;
// TODO Zutat implementieren! // TODO Zutat implementieren!
// private ArrayList<Zutat> filter; private ArrayList<Zutat> filter;
// endregion // endregion
// region Getter & Setter // region Getter & Setter
@ -38,7 +38,7 @@ public class Kind {
} }
// TODO Zutat implementieren! // TODO Zutat implementieren!
/*
public ArrayList<Zutat> getFilter() { public ArrayList<Zutat> getFilter() {
return filter; return filter;
} }
@ -46,7 +46,6 @@ public class Kind {
public void setFilter(ArrayList<Zutat> filter) { public void setFilter(ArrayList<Zutat> filter) {
this.filter = filter; this.filter = filter;
} }
*/
// endregion // endregion
// region Konstruktoren // region Konstruktoren
@ -56,4 +55,10 @@ public class Kind {
} }
// endregion // endregion
@Override
public String toString() {
return String.format("%s %s, %d", vorname, name, id);
}
} }

View File

@ -1,12 +1,12 @@
package de.subway_surfers.vpr_app.logik; package Logik;
import java.util.ArrayList; import java.util.ArrayList;
public class Mahlzeit { public class Mahlzeit {
private String name; private String name;
private float preis; private float preis;
private ArrayList<Zutat> zutaten; private ArrayList<Zutat> zutaten;
private String beschreibung; private String beschreibung;
public Mahlzeit (String name, float preis, String beschreibung) { public Mahlzeit (String name, float preis, String beschreibung) {
this.name = name; this.name = name;

View File

@ -1,11 +1,11 @@
package de.subway_surfers.vpr_app.logik; package Logik;
import java.util.ArrayList; import java.util.ArrayList;
public class Tagesplan { public class Tagesplan {
private ArrayList<Mahlzeit> gerichte; private ArrayList<Mahlzeit> gerichte;
private String datum; private String datum;
public Tagesplan(String datum) { public Tagesplan(String datum) {
this.datum = datum; this.datum = datum;

View File

@ -1,4 +1,4 @@
package de.subway_surfers.vpr_app.logik; package Logik;
public class Zutat { public class Zutat {
private String name; private String name;

View File

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

View File

@ -101,7 +101,11 @@ public class BestelluebersichtMitarbeiter {
} }
public void onAbmelden(ActionEvent event) { 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; package de.subway_surfers.vpr_app;
import de.subway_surfers.vpr_app.logik.Zutat; import Logik.Zutat;
import javafx.event.ActionEvent; import javafx.event.ActionEvent;
import javafx.fxml.FXML; import javafx.fxml.FXML;
import javafx.scene.Node;
import javafx.scene.control.Button; import javafx.scene.control.Button;
import javafx.scene.control.TextArea; import javafx.scene.control.TextArea;
import javafx.scene.control.TextField; import javafx.scene.control.TextField;

View File

@ -15,4 +15,9 @@ public class HauptmenueMitarbeiterView {
public void onSpeiseplanClick(ActionEvent actionEvent) { public void onSpeiseplanClick(ActionEvent actionEvent) {
VerwaltungApplication.sceneWechseln("essensverwaltung_mitarbeiter-view.fxml"); 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 @Override
public void start(Stage stage) throws IOException { 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()); Scene scene = new Scene(fxmlLoader.load());
stage.setWidth(960); stage.setWidth(960);
@ -26,7 +26,7 @@ public class VerwaltungApplication extends Application {
stage.setMinWidth(960); stage.setMinWidth(960);
stage.setMinHeight(540); stage.setMinHeight(540);
stage.setTitle("Hello!"); //stage.setTitle("Hello!");
stage.setScene(scene); stage.setScene(scene);
stage.show(); stage.show();

View File

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

View File

@ -51,7 +51,7 @@
<right> <right>
<HBox styleClass="button-untenrechts"> <HBox styleClass="button-untenrechts">
<Label fx:id="status"/> <Label fx:id="status"/>
<Button text="Speichern" onAction="#onSpeichern"/> <Button text="Speichern" defaultButton="true" onAction="#onSpeichern"/>
</HBox> </HBox>
</right> </right>
</BorderPane> </BorderPane>

View File

@ -10,7 +10,7 @@
<BorderPane styleClass="kopfzeile"> <BorderPane styleClass="kopfzeile">
<left> <left>
<Button fx:id="zurueck" text="Zurück"/> <Button fx:id="zurueck" text="Zurück" onAction="#onZurueck"/>
</left> </left>
<right> <right>
<Button fx:id="abmelden" text="Abmelden" onAction="#onAbmelden"/> <Button fx:id="abmelden" text="Abmelden" onAction="#onAbmelden"/>

View File

@ -58,7 +58,7 @@
<bottom> <bottom>
<BorderPane styleClass="button-untenrechts"> <BorderPane styleClass="button-untenrechts">
<right> <right>
<Button text="Bestätigen" styleClass=".button"/> <Button text="Bestätigen" defaultButton="true" styleClass=".button"/>
</right> </right>
</BorderPane> </BorderPane>
</bottom> </bottom>

View File

@ -26,7 +26,7 @@
<BorderPane> <BorderPane>
<right> <right>
<HBox styleClass="button_untenrechts"> <HBox styleClass="button_untenrechts">
<Button text="Speichern"/> <Button text="Speichern" defaultButton="true"/>
</HBox> </HBox>
</right> </right>
</BorderPane> </BorderPane>

View File

@ -24,7 +24,7 @@
<left> <left>
<VBox styleClass="hauptmenue_buttons_links"> <VBox styleClass="hauptmenue_buttons_links">
<Button text="Speiseplan" onAction="#onSpeiseplanClick"/> <Button text="Speiseplan" onAction="#onSpeiseplanClick"/>
<Button text="Alle Bestellungen anzeigen"/> <Button text="Alle Bestellungen anzeigen" onAction="#onBestellungenAnzeigen"/>
<Button text="Rechnungen herunterladen"/> <Button text="Rechnungen herunterladen"/>
<Button text="Daten importieren/Exportieren"/> <Button text="Daten importieren/Exportieren"/>
<Button text="Account anlegen" onAction="#onAccountAnlegenClick"/> <Button text="Account anlegen" onAction="#onAccountAnlegenClick"/>

View File

@ -13,9 +13,17 @@
<Label text="Nach Inhaltsstoffen filtern" /> <Label text="Nach Inhaltsstoffen filtern" />
<ListView fx:id="zutatListView" /> <ListView fx:id="zutatListView" />
<HBox prefHeight="128.0" prefWidth="600.0" styleClass="filter_unten"> <BorderPane prefHeight="128.0" prefWidth="600.0" styleClass="filter_unten">
<CheckBox fx:id="speichernCheckBox" text="Auswahl für KindA speichern " /> <left>
<Button fx:id="abbrechenButton" cancelButton="true" text="Abbrechen" /> <HBox>
<Button fx:id="fortfahrenButton" defaultButton="true" text="Fortfahren" /> <CheckBox fx:id="speichernCheckBox" text="Auswahl speichern " />
</HBox> </HBox>
</left>
<right>
<HBox styleClass="filter_unten">
<Button fx:id="abbrechenButton" cancelButton="true" text="Abbrechen" />
<Button fx:id="fortfahrenButton" defaultButton="true" text="Fortfahren" />
</HBox>
</right>
</BorderPane>
</VBox> </VBox>

View File

@ -31,7 +31,7 @@
<BorderPane> <BorderPane>
<right> <right>
<VBox styleClass="button-untenrechts"> <VBox styleClass="button-untenrechts">
<Button text="Anmelden" onAction="#onAnmeldenClick"/> <Button text="Anmelden" defaultButton="true" onAction="#onAnmeldenClick"/>
</VBox> </VBox>
</right> </right>

View File

@ -23,8 +23,8 @@
<RadioButton fx:id="bezahlt" text="Alle bezahlten Anzeigen" /> <RadioButton fx:id="bezahlt" text="Alle bezahlten Anzeigen" />
<HBox> <HBox>
<Button fx:id="abbrechenButton" text="Abbruch" /> <Button fx:id="abbrechenButton" cancelButton="true" text="Abbruch" />
<Button fx:id="fortfahrenButton" text="Fortfahren" /> <Button fx:id="fortfahrenButton" defaultButton="true" text="Fortfahren" />
</HBox> </HBox>
</VBox> </VBox>