Skip to content

Commit

Permalink
Fix Staat bei Kursteilnehmer
Browse files Browse the repository at this point in the history
  • Loading branch information
Johann Maierhofer committed Jan 21, 2025
1 parent acc0ea8 commit 986ac25
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,13 +256,14 @@ public SelectInput getStaat() throws RemoteException
}
if (getKursteilnehmer().getStaat() != null
&& getKursteilnehmer().getStaat().length() > 0
&& Staat.getByKey(getKursteilnehmer().getStaat()) == null)
&& Staat.getByKey(getKursteilnehmer().getStaatCode()) == null)
{
GUI.getStatusBar()
.setErrorText("Konnte Staat \"" + getKursteilnehmer().getStaat()
+ "\" nicht finden, bitte anpassen.");
}
staat = new SelectInput(Staat.values(), Staat.getByKey(getKursteilnehmer().getStaat()));
staat = new SelectInput(Staat.values(),
Staat.getByKey(getKursteilnehmer().getStaatCode()));
staat.setPleaseChoose("Nicht gesetzt");
staat.setName("Staat");
return staat;
Expand Down Expand Up @@ -466,7 +467,8 @@ public void handleStore()
k.setAdressierungszuatz((String) getAdressierungszusatz().getValue());
k.setPlz((String) getPLZ().getValue());
k.setOrt((String) getOrt().getValue());
k.setStaat(((Staat) getStaat().getValue()).getKey());
k.setStaat(getStaat().getValue() == null ? ""
: ((Staat) getStaat().getValue()).getKey());
k.setEmail((String) getEmail().getValue());
k.setVZweck1((String) getVZweck1().getValue());
k.setMandatDatum((Date) getMandatDatum().getValue());
Expand Down

0 comments on commit 986ac25

Please sign in to comment.