Kinder und Eltern
This commit is contained in:
@@ -138,6 +138,9 @@ public class AccounterstellungMitarbeiter {
|
||||
status.setText("Daten Erfolgreich gespeichert");
|
||||
einmalpw.setText(einmalPwGenerieren());
|
||||
|
||||
RestApiClient api = new RestApiClient();
|
||||
int id = api.nextId("Benutzer");
|
||||
|
||||
|
||||
//String json = String.format("{\"name\":\"%s\", \"email\":\"%s\", \"passwort\":\"%d\", \"rid\":\"%d\"}",
|
||||
// accountname.getText(), email.getText(), einmalpw.getText().hashCode(), (typMitarbeiter.isSelected() ? 0:1));
|
||||
@@ -145,6 +148,7 @@ public class AccounterstellungMitarbeiter {
|
||||
Account neuer;
|
||||
if (typEltern.isSelected()) {
|
||||
neuer = new ElternAccount(String.format("%d",einmalpw.getText().hashCode()), accountname.getText(), email.getText());
|
||||
System.out.println(neuer.getEmail());
|
||||
for (Kind k : kinder) {
|
||||
((ElternAccount)neuer).getKinder().add(k);
|
||||
}
|
||||
@@ -161,10 +165,10 @@ public class AccounterstellungMitarbeiter {
|
||||
Gson gson = new Gson();
|
||||
|
||||
System.out.println(gson.toJson(neuer));
|
||||
RestApiClient api = new RestApiClient();
|
||||
api.post("Benutzer", gson.toJson(neuer));
|
||||
if (neuer instanceof ElternAccount) {
|
||||
for (Kind k : ((ElternAccount)neuer).getKinder()) {
|
||||
k.setBid(id);
|
||||
api.post("Kind", gson.toJson(k));
|
||||
}
|
||||
}
|
||||
@@ -172,7 +176,5 @@ public class AccounterstellungMitarbeiter {
|
||||
else {
|
||||
status.setText("Accounterstellung Fehlgeschlagen");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -1,5 +1,7 @@
|
||||
package de.subway_surfers.vpr_app;
|
||||
|
||||
import Logik.Account;
|
||||
import RestAPISchnittstelle.RestApiClient;
|
||||
import javafx.event.ActionEvent;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.fxml.FXMLLoader;
|
||||
|
Reference in New Issue
Block a user