Переглянути джерело

Bug gefixt für den Fall das die Stationshistorie neu erstellt wird wird nicht die Versionsinfo von der letzten Auswahl angezeigt

master
Johannes Oehm 10 роки тому
джерело
коміт
b4fe1fcc95
1 змінених файлів з 4 додано та 0 видалено
  1. +4
    -0
      src/main/java/de/uniluebeck/mi/projmi6/controller/StationsHistorieController.java

+ 4
- 0
src/main/java/de/uniluebeck/mi/projmi6/controller/StationsHistorieController.java Переглянути файл

@@ -334,10 +334,14 @@ public class StationsHistorieController {
statHistCreator.setText(Integer.toString(stationsHistorie.getErsteller()));
if (stationsHistorie.getErstellDatumZeit() != null) {
statHistCreateTime.setText(stationsHistorie.getErstellDatumZeit().toString());
}else{
statHistCreateTime.setText("");
}
statHistEditor.setText(Integer.toString(stationsHistorie.getBearbeiter()));
if (stationsHistorie.getBearbeitetDatumZeit() != null) {
statHistEditTime.setText(stationsHistorie.getBearbeitetDatumZeit().toString());
}else{
statHistEditTime.setText("");
}
}



Завантаження…
Відмінити
Зберегти