|
|
@@ -0,0 +1,78 @@ |
|
|
|
|
|
package de.uniluebeck.mi.projmi6.controller; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Created by 631806 on 12.11.15. |
|
|
|
|
|
*/ |
|
|
|
|
|
import javafx.fxml.FXML; |
|
|
|
|
|
import javafx.scene.control.Button; |
|
|
|
|
|
import javafx.scene.control.ComboBox; |
|
|
|
|
|
import javafx.scene.control.TableColumn; |
|
|
|
|
|
import javafx.scene.control.TableView; |
|
|
|
|
|
import javafx.scene.control.ToggleButton; |
|
|
|
|
|
|
|
|
|
|
|
public class PatientTablesController{ |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private Button btnPatCreate; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableView<?> tblPatientOverview; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colStatEntlassungsdatum; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colPatOrt; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private ComboBox<?> cmbStationenFilter; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colStatFullName; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colStatAlter; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colPatGebDatum; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colStatAufnahmedatum; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private Button btnPatEdit; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colPatNachname; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colPatGeburtsname; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colPatStrasse; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colPatPlz; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colPatPatId; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colPatVorname; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private ToggleButton btnEntlassenePatientenZeigen; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colStatGebDatum; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colPatCave; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableView<?> tblStationOverview; |
|
|
|
|
|
|
|
|
|
|
|
@FXML |
|
|
|
|
|
private TableColumn<?, ?> colStatPatId; |
|
|
|
|
|
|
|
|
|
|
|
} |