Abmelden Buttons und Unnötige Buttons entfernt

This commit is contained in:
Samuel Wolff 2024-01-26 08:30:51 +01:00
parent 0303458524
commit 336a6fc89d
4 changed files with 3 additions and 5 deletions

View File

@ -62,7 +62,7 @@ public class AccounterstellungMitarbeiter {
* @author Sven Alteköster * @author Sven Alteköster
*/ */
public void onAbmelden(ActionEvent actionEvent) { public void onAbmelden(ActionEvent actionEvent) {
//VerwaltungApplication.abmelden(); VerwaltungApplication.abmelden();
} }
/** /**

View File

@ -140,7 +140,7 @@ public class BestelluebersichtMitarbeiter {
*/ */
public void onAbmelden(ActionEvent event) { public void onAbmelden(ActionEvent event) {
//VerwaltungApplication.abmelden(); VerwaltungApplication.abmelden();
} }
public void onZurueck(ActionEvent actionEvent) { public void onZurueck(ActionEvent actionEvent) {

View File

@ -21,7 +21,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("gerichterstellung_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);

View File

@ -25,8 +25,6 @@
<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" onAction="#onBestellungenAnzeigen"/> <Button text="Alle Bestellungen anzeigen" onAction="#onBestellungenAnzeigen"/>
<Button text="Rechnungen herunterladen"/>
<Button text="Daten importieren/Exportieren"/>
<Button text="Account anlegen" onAction="#onAccountAnlegenClick"/> <Button text="Account anlegen" onAction="#onAccountAnlegenClick"/>
</VBox> </VBox>
</left> </left>