Compare commits

..

No commits in common. "1827e8caf6f2ef3ee9c680449b52012bfbcba450" and "c01960cfd9f154ee768bc939568aa7a043e59658" have entirely different histories.

28 changed files with 323 additions and 394 deletions

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="DataSourceManagerImpl" format="xml" multifile-model="true"> <component name="DataSourceManagerImpl" format="xml" multifile-model="true">
<data-source source="LOCAL" name="Database" uuid="5a5b8be1-080b-4129-b89d-42f1ea832b90"> <data-source source="LOCAL" name="nursingHome.db" uuid="5a5b8be1-080b-4129-b89d-42f1ea832b90">
<driver-ref>sqlite.xerial</driver-ref> <driver-ref>sqlite.xerial</driver-ref>
<synchronize>true</synchronize> <synchronize>true</synchronize>
<jdbc-driver>org.sqlite.JDBC</jdbc-driver> <jdbc-driver>org.sqlite.JDBC</jdbc-driver>

View file

@ -1,35 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DdlMappings">
<mapping uuid="6de31afe-6f51-4d57-ac29-b95200cc6a68" name="Database Mapping">
<data-sources db="5a5b8be1-080b-4129-b89d-42f1ea832b90" ddl="82842a6c-e549-4bc0-9743-9bdb8b472dfc" />
<scope>
<node negative="1">
<node kind="database" negative="1">
<node kind="schema" negative="1" />
</node>
<node kind="schema" qname="main" />
</node>
</scope>
</mapping>
</component>
<component name="SqlDataSourceStorage">
<option name="dataSources">
<list>
<State>
<option name="id" value="82842a6c-e549-4bc0-9743-9bdb8b472dfc" />
<option name="name" value="NHPlus DDL" />
<option name="dbmsName" value="SQLITE" />
<option name="urls">
<array>
<option value="file://$PROJECT_DIR$/src/main/resources/de/hitec/nhplus/patient/database/Patient.sql" />
<option value="file://$PROJECT_DIR$/src/main/resources/de/hitec/nhplus/treatment/database/Treatment.sql" />
<option value="file://$PROJECT_DIR$/src/main/resources/de/hitec/nhplus/nurse/database/Nurse.sql" />
</array>
</option>
<option name="outLayout" value="File per object by schema.groovy" />
</State>
</list>
</option>
</component>
</project>

View file

@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="SqlDialectMappings"> <component name="SqlDialectMappings">
<file url="file://$PROJECT_DIR$/src/main/java/de/hitec/nhplus/patient/database/PatientDao.java" dialect="GenericSQL" /> <file url="file://$PROJECT_DIR$/src/main/java/de/hitec/nhplus/patient/PatientDao.java" dialect="GenericSQL" />
<file url="file://$PROJECT_DIR$/src/main/java/de/hitec/nhplus/treatment/database/TreatmentDao.java" dialect="GenericSQL" /> <file url="file://$PROJECT_DIR$/src/main/java/de/hitec/nhplus/treatment/TreatmentDao.java" dialect="GenericSQL" />
<file url="file://$PROJECT_DIR$/src/main/java/de/hitec/nhplus/treatment/database/NurseDao.java" dialect="GenericSQL" />
<file url="PROJECT" dialect="SQLite" /> <file url="PROJECT" dialect="SQLite" />
</component> </component>
</project> </project>

Binary file not shown.

View file

@ -1,8 +1,8 @@
package de.hitec.nhplus.datastorage; package de.hitec.nhplus.datastorage;
import de.hitec.nhplus.nurse.database.NurseDao; import de.hitec.nhplus.nurse.NurseDao;
import de.hitec.nhplus.patient.database.PatientDao; import de.hitec.nhplus.patient.PatientDao;
import de.hitec.nhplus.treatment.database.TreatmentDao; import de.hitec.nhplus.treatment.TreatmentDao;
public class DaoFactory { public class DaoFactory {

View file

@ -6,7 +6,7 @@ import java.util.Map;
public interface Fixture<T> public interface Fixture<T>
{ {
void dropTable(Connection connection) throws SQLException; void dropTable(Connection connection);
void setupTable(Connection connection) throws SQLException; void setupTable(Connection connection);
Map<String, T> load() throws SQLException; Map<String, T> load() throws SQLException;
} }

View file

@ -1,28 +1,40 @@
package de.hitec.nhplus.fixtures; package de.hitec.nhplus.fixtures;
import de.hitec.nhplus.Main;
import de.hitec.nhplus.datastorage.DaoFactory; import de.hitec.nhplus.datastorage.DaoFactory;
import de.hitec.nhplus.nurse.NurseDao;
import de.hitec.nhplus.nurse.Nurse; import de.hitec.nhplus.nurse.Nurse;
import de.hitec.nhplus.nurse.database.NurseDao;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.sql.Connection; import java.sql.Connection;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.*; import java.sql.Statement;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class NurseFixture implements Fixture<Nurse> { public class NurseFixture implements Fixture<Nurse> {
@Override @Override
public void dropTable(Connection connection) throws SQLException { public void dropTable(Connection connection) {
connection.createStatement().execute("DROP TABLE nurse"); try (Statement statement = connection.createStatement()) {
statement.execute("DROP TABLE nurse");
} catch (SQLException exception) {
System.out.println(exception.getMessage());
}
} }
@Override @Override
public void setupTable(Connection connection) throws SQLException { public void setupTable(Connection connection) {
final InputStream schema = Main.class.getResourceAsStream("/de/hitec/nhplus/nurse/database/Nurse.sql"); final String SQL = "CREATE TABLE IF NOT EXISTS nurse (" +
assert schema != null; "id INTEGER PRIMARY KEY AUTOINCREMENT, " +
final String SQL = new Scanner(schema, StandardCharsets.UTF_8).useDelimiter("\\A").next(); "firstname TEXT NOT NULL, " +
connection.createStatement().execute(SQL); "surname TEXT NOT NULL, " +
"phoneNumber TEXT NOT NULL" +
");";
try (Statement statement = connection.createStatement()) {
statement.execute(SQL);
} catch (SQLException exception) {
System.out.println(exception.getMessage());
}
} }
@Override @Override

View file

@ -1,35 +1,56 @@
package de.hitec.nhplus.fixtures; package de.hitec.nhplus.fixtures;
import de.hitec.nhplus.Main;
import de.hitec.nhplus.datastorage.DaoFactory; import de.hitec.nhplus.datastorage.DaoFactory;
import de.hitec.nhplus.patient.PatientDao;
import de.hitec.nhplus.patient.Patient; import de.hitec.nhplus.patient.Patient;
import de.hitec.nhplus.patient.database.PatientDao;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.sql.Connection; import java.sql.Connection;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.*; import java.sql.Statement;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalDate; import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalDate;
public class PatientFixture implements Fixture<Patient> { public class PatientFixture implements Fixture<Patient>
{
@Override @Override
public void dropTable(Connection connection) throws SQLException { public void dropTable(Connection connection)
connection.createStatement().execute("DROP TABLE patient"); {
try (Statement statement = connection.createStatement())
{
statement.execute("DROP TABLE patient");
} catch (SQLException exception)
{
System.out.println(exception.getMessage());
}
} }
@Override @Override
public void setupTable(Connection connection) throws SQLException { public void setupTable(Connection connection)
// @SuppressWarnings("checkstyle:LineLength") {
final InputStream schema = Main.class.getResourceAsStream("/de/hitec/nhplus/patient/database/Patient.sql"); final String SQL = "CREATE TABLE IF NOT EXISTS patient (" +
assert schema != null; " id INTEGER PRIMARY KEY AUTOINCREMENT, " +
final String SQL = new Scanner(schema, StandardCharsets.UTF_8).useDelimiter("\\A").next(); " firstname TEXT NOT NULL, " +
connection.createStatement().execute(SQL); " surname TEXT NOT NULL, " +
" dateOfBirth TEXT NOT NULL, " +
" carelevel TEXT NOT NULL, " +
" roomnumber TEXT NOT NULL" +
");";
try (Statement statement = connection.createStatement())
{
statement.execute(SQL);
} catch (SQLException exception)
{
System.out.println(exception.getMessage());
}
} }
@Override @Override
public Map<String, Patient> load() throws SQLException { public Map<String, Patient> load() throws SQLException
{
List<Patient> patients = new ArrayList<>(); List<Patient> patients = new ArrayList<>();
patients.add(new Patient( patients.add(new Patient(

View file

@ -1,16 +1,17 @@
package de.hitec.nhplus.fixtures; package de.hitec.nhplus.fixtures;
import de.hitec.nhplus.Main;
import de.hitec.nhplus.datastorage.DaoFactory; import de.hitec.nhplus.datastorage.DaoFactory;
import de.hitec.nhplus.patient.Patient; import de.hitec.nhplus.patient.Patient;
import de.hitec.nhplus.treatment.Treatment; import de.hitec.nhplus.treatment.Treatment;
import de.hitec.nhplus.treatment.database.TreatmentDao; import de.hitec.nhplus.treatment.TreatmentDao;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.sql.Connection; import java.sql.Connection;
import java.sql.SQLException; import java.sql.SQLException;
import java.util.*; import java.sql.Statement;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalDate; import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalDate;
import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalTime; import static de.hitec.nhplus.utils.DateConverter.convertStringToLocalTime;
@ -23,16 +24,32 @@ public class TreatmentFixture implements Fixture<Treatment> {
} }
@Override @Override
public void dropTable(Connection connection) throws SQLException { public void dropTable(Connection connection) {
connection.createStatement().execute("DROP TABLE treatment"); try (Statement statement = connection.createStatement()) {
statement.execute("DROP TABLE treatment");
} catch (SQLException exception) {
System.out.println(exception.getMessage());
}
} }
@Override @Override
public void setupTable(Connection connection) throws SQLException { public void setupTable(Connection connection) {
final InputStream schema = Main.class.getResourceAsStream("/de/hitec/nhplus/treatment/database/Treatment.sql"); final String SQL = "CREATE TABLE IF NOT EXISTS treatment (" +
assert schema != null; " id INTEGER PRIMARY KEY AUTOINCREMENT, " +
final String SQL = new Scanner(schema, StandardCharsets.UTF_8).useDelimiter("\\A").next(); " patientId INTEGER NOT NULL, " +
connection.createStatement().execute(SQL); " treatment_date TEXT NOT NULL, " +
" begin TEXT NOT NULL, " +
" end TEXT NOT NULL, " +
" description TEXT NOT NULL, " +
" remark TEXT NOT NULL," +
" FOREIGN KEY (patientId) REFERENCES patient (id) ON DELETE CASCADE " +
");";
try (Statement statement = connection.createStatement()) {
statement.execute(SQL);
} catch (SQLException exception) {
System.out.println(exception.getMessage());
}
} }
@Override @Override

View file

@ -9,7 +9,6 @@ import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.BorderPane; import javafx.scene.layout.BorderPane;
import java.io.IOException; import java.io.IOException;
import java.util.Objects;
public class MainWindowController { public class MainWindowController {
@FXML @FXML
@ -41,7 +40,7 @@ public class MainWindowController {
private void loadPatientPage() { private void loadPatientPage() {
try { try {
BorderPane patientsPane = FXMLLoader.load( BorderPane patientsPane = FXMLLoader.load(
Objects.requireNonNull(Main.class.getResource("/de/hitec/nhplus/patient/AllPatientView.fxml")) Main.class.getResource("/de/hitec/nhplus/patient/AllPatientView.fxml")
); );
patientPage.getChildren().setAll(patientsPane); patientPage.getChildren().setAll(patientsPane);
AnchorPane.setTopAnchor(patientsPane, 0d); AnchorPane.setTopAnchor(patientsPane, 0d);
@ -56,7 +55,7 @@ public class MainWindowController {
private void loadTreatmentsPage() { private void loadTreatmentsPage() {
try { try {
BorderPane treatmentsPane = FXMLLoader.load( BorderPane treatmentsPane = FXMLLoader.load(
Objects.requireNonNull(Main.class.getResource("/de/hitec/nhplus/treatment/AllTreatmentView.fxml")) Main.class.getResource("/de/hitec/nhplus/treatment/AllTreatmentView.fxml")
); );
treatmentPage.getChildren().setAll(treatmentsPane); treatmentPage.getChildren().setAll(treatmentsPane);
AnchorPane.setTopAnchor(treatmentsPane, 0d); AnchorPane.setTopAnchor(treatmentsPane, 0d);
@ -71,7 +70,7 @@ public class MainWindowController {
private void loadNursePage() { private void loadNursePage() {
try { try {
BorderPane nursePane = FXMLLoader.load( BorderPane nursePane = FXMLLoader.load(
Objects.requireNonNull(Main.class.getResource("/de/hitec/nhplus/nurse/AllNurseView.fxml")) Main.class.getResource("/de/hitec/nhplus/nurse/AllNurseView.fxml")
); );
nursePage.getChildren().setAll(nursePane); nursePage.getChildren().setAll(nursePane);
AnchorPane.setTopAnchor(nursePane, 0d); AnchorPane.setTopAnchor(nursePane, 0d);

View file

@ -4,11 +4,11 @@ import javafx.beans.property.SimpleStringProperty;
public abstract class Person { public abstract class Person {
private final SimpleStringProperty firstName; private final SimpleStringProperty firstName;
private final SimpleStringProperty surName; private final SimpleStringProperty surname;
public Person(String firstName, String surName) { public Person(String firstName, String surname) {
this.firstName = new SimpleStringProperty(firstName); this.firstName = new SimpleStringProperty(firstName);
this.surName = new SimpleStringProperty(surName); this.surname = new SimpleStringProperty(surname);
} }
public String getFirstName() { public String getFirstName() {
@ -23,15 +23,15 @@ public abstract class Person {
this.firstName.set(firstName); this.firstName.set(firstName);
} }
public String getSurName() { public String getSurname() {
return surName.get(); return surname.get();
} }
public SimpleStringProperty surNameProperty() { public SimpleStringProperty surnameProperty() {
return surName; return surname;
} }
public void setSurName(String surName) { public void setSurname(String surname) {
this.surName.set(surName); this.surname.set(surname);
} }
} }

View file

@ -3,7 +3,6 @@ package de.hitec.nhplus.nurse;
import static de.hitec.nhplus.utils.Validator.*; import static de.hitec.nhplus.utils.Validator.*;
import de.hitec.nhplus.datastorage.DaoFactory; import de.hitec.nhplus.datastorage.DaoFactory;
import de.hitec.nhplus.nurse.database.NurseDao;
import javafx.beans.value.ChangeListener; import javafx.beans.value.ChangeListener;
import javafx.collections.FXCollections; import javafx.collections.FXCollections;
import javafx.collections.ObservableList; import javafx.collections.ObservableList;
@ -19,9 +18,9 @@ import java.sql.SQLException;
public class AllNurseController { public class AllNurseController {
@FXML @FXML
public TextField textFieldSurName; public TextField textFieldSurname;
@FXML @FXML
public TextField textFieldFirstName; public TextField textFieldFirstname;
@FXML @FXML
public TextField textFieldPhoneNumber; public TextField textFieldPhoneNumber;
@FXML @FXML
@ -33,7 +32,7 @@ public class AllNurseController {
@FXML @FXML
private TableColumn<Nurse, String> columnFirstName; private TableColumn<Nurse, String> columnFirstName;
@FXML @FXML
private TableColumn<Nurse, String> columnSurName; private TableColumn<Nurse, String> columnSurname;
@FXML @FXML
private TableColumn<Nurse, String> columnPhoneNumber; private TableColumn<Nurse, String> columnPhoneNumber;
@ -48,8 +47,8 @@ public class AllNurseController {
this.columnFirstName.setCellValueFactory(new PropertyValueFactory<>("firstName")); this.columnFirstName.setCellValueFactory(new PropertyValueFactory<>("firstName"));
this.columnFirstName.setCellFactory(TextFieldTableCell.forTableColumn()); this.columnFirstName.setCellFactory(TextFieldTableCell.forTableColumn());
this.columnSurName.setCellValueFactory(new PropertyValueFactory<>("surName")); this.columnSurname.setCellValueFactory(new PropertyValueFactory<>("surname"));
this.columnSurName.setCellFactory(TextFieldTableCell.forTableColumn()); this.columnSurname.setCellFactory(TextFieldTableCell.forTableColumn());
this.columnPhoneNumber.setCellValueFactory(new PropertyValueFactory<>("phoneNumber")); this.columnPhoneNumber.setCellValueFactory(new PropertyValueFactory<>("phoneNumber"));
@ -60,15 +59,15 @@ public class AllNurseController {
this.buttonAdd.setDisable(true); this.buttonAdd.setDisable(true);
ChangeListener<String> inputNewNurseValidationListener = (observableValue, oldText, newText)-> ChangeListener<String> inputNewNurseValidationListener = (observableValue, oldText, newText)->
{ {
boolean isValid = isValidFirstName(this.textFieldFirstName.getText()) boolean isValid = isValidFirstName(this.textFieldFirstname.getText())
&& isValidSurName(this.textFieldSurName.getText()) && isValidSurName(this.textFieldSurname.getText())
&& isValidPhoneNumber(this.textFieldPhoneNumber.getText()); && isValidPhoneNumber(this.textFieldPhoneNumber.getText());
AllNurseController.this.buttonAdd.setDisable(!isValid); AllNurseController.this.buttonAdd.setDisable(!isValid);
}; };
this.textFieldFirstName.textProperty().addListener(inputNewNurseValidationListener); this.textFieldFirstname.textProperty().addListener(inputNewNurseValidationListener);
this.textFieldSurName.textProperty().addListener(inputNewNurseValidationListener); this.textFieldSurname.textProperty().addListener(inputNewNurseValidationListener);
this.textFieldPhoneNumber.textProperty().addListener(inputNewNurseValidationListener); this.textFieldPhoneNumber.textProperty().addListener(inputNewNurseValidationListener);
} }
@ -83,8 +82,8 @@ public class AllNurseController {
} }
@FXML @FXML
public void handleAdd(){ public void handleAdd(){
String surname=this.textFieldSurName.getText(); String surname=this.textFieldSurname.getText();
String firstName=this.textFieldFirstName.getText(); String firstName=this.textFieldFirstname.getText();
String phoneNumber=this.textFieldPhoneNumber.getText(); String phoneNumber=this.textFieldPhoneNumber.getText();
try { try {
this.dao.create(new Nurse(firstName, surname, phoneNumber)); this.dao.create(new Nurse(firstName, surname, phoneNumber));
@ -97,8 +96,8 @@ public class AllNurseController {
} }
private void clearTextfields() { private void clearTextfields() {
this.textFieldFirstName.clear(); this.textFieldFirstname.clear();
this.textFieldSurName.clear(); this.textFieldSurname.clear();
this.textFieldPhoneNumber.clear(); this.textFieldPhoneNumber.clear();
} }

View file

@ -12,20 +12,20 @@ public class Nurse extends Person {
public Nurse( public Nurse(
String firstName, String firstName,
String surName, String surname,
String phoneNumber String phoneNumber
) { ) {
super(firstName, surName); super(firstName, surname);
this.phoneNumber = new SimpleStringProperty(phoneNumber); this.phoneNumber = new SimpleStringProperty(phoneNumber);
} }
public Nurse( public Nurse(
int id, int id,
String firstName, String firstName,
String surName, String surname,
String phoneNumber String phoneNumber
) { ) {
super(firstName, surName); super(firstName, surname);
this.id = new SimpleIntegerProperty(id); this.id = new SimpleIntegerProperty(id);
this.phoneNumber = new SimpleStringProperty(phoneNumber); this.phoneNumber = new SimpleStringProperty(phoneNumber);
} }
@ -55,8 +55,8 @@ public class Nurse extends Person {
return new StringJoiner(System.lineSeparator()) return new StringJoiner(System.lineSeparator())
.add("NURSE") .add("NURSE")
.add("ID: " + this.getId()) .add("ID: " + this.getId())
.add("FirstName: " + this.getFirstName()) .add("Firstname: " + this.getFirstName())
.add("SurName: " + this.getSurName()) .add("Surname: " + this.getSurname())
.add("PhoneNumber: " + this.getPhoneNumber()) .add("PhoneNumber: " + this.getPhoneNumber())
.toString(); .toString();

View file

@ -1,7 +1,6 @@
package de.hitec.nhplus.nurse.database; package de.hitec.nhplus.nurse;
import de.hitec.nhplus.datastorage.DaoImp; import de.hitec.nhplus.datastorage.DaoImp;
import de.hitec.nhplus.nurse.Nurse;
import java.sql.Connection; import java.sql.Connection;
import java.sql.PreparedStatement; import java.sql.PreparedStatement;
@ -17,24 +16,21 @@ public class NurseDao extends DaoImp<Nurse> {
@Override @Override
protected PreparedStatement getCreateStatement(Nurse nurse) throws SQLException { protected PreparedStatement getCreateStatement(Nurse nurse) throws SQLException {
final String SQL = """ final String SQL = "INSERT INTO nurse (firstname, surname, phoneNumber)" +
INSERT INTO nurse "VALUES (?, ?, ?)";
(firstName, surName, phoneNumber) PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
VALUES (?, ?, ?) preparedStatement.setString(1, nurse.getFirstName());
"""; preparedStatement.setString(2, nurse.getSurname());
PreparedStatement statement = this.connection.prepareStatement(SQL); preparedStatement.setString(3, nurse.getPhoneNumber());
statement.setString(1, nurse.getFirstName()); return preparedStatement;
statement.setString(2, nurse.getSurName());
statement.setString(3, nurse.getPhoneNumber());
return statement;
} }
@Override @Override
protected PreparedStatement getReadByIDStatement(int id) throws SQLException { protected PreparedStatement getReadByIDStatement(int id) throws SQLException {
final String SQL = "SELECT * FROM nurse WHERE id = ?"; final String SQL = "SELECT * FROM nurse WHERE id = ?";
PreparedStatement statement = this.connection.prepareStatement(SQL); PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
statement.setInt(1, id); preparedStatement.setInt(1, id);
return statement; return preparedStatement;
} }
@Override @Override
@ -62,28 +58,28 @@ public class NurseDao extends DaoImp<Nurse> {
return list; return list;
} }
@Override @Override
protected PreparedStatement getUpdateStatement(Nurse nurse) throws SQLException { protected PreparedStatement getUpdateStatement(Nurse nurse) throws SQLException {
final String SQL = """ final String SQL =
UPDATE nurse SET "UPDATE nurse SET " +
firstName = ?, "firstname = ?, " +
surName = ?, "surname = ?, " +
phoneNumber = ? "phoneNumber = ? " +
WHERE id = ? "WHERE id = ?";
"""; PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
PreparedStatement statement = this.connection.prepareStatement(SQL); preparedStatement.setString(1, nurse.getFirstName());
statement.setString(1, nurse.getFirstName()); preparedStatement.setString(2, nurse.getSurname());
statement.setString(2, nurse.getSurName()); preparedStatement.setString(3, nurse.getPhoneNumber());
statement.setString(3, nurse.getPhoneNumber()); preparedStatement.setInt(4, nurse.getId());
statement.setInt(4, nurse.getId()); return preparedStatement;
return statement;
} }
@Override @Override
protected PreparedStatement getDeleteStatement(int id) throws SQLException { protected PreparedStatement getDeleteStatement(int id) throws SQLException {
final String SQL = "DELETE FROM nurse WHERE id = ?"; final String SQL = "DELETE FROM nurse WHERE id = ?";
PreparedStatement statement = this.connection.prepareStatement(SQL); PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
statement.setInt(1, id); preparedStatement.setInt(1, id);
return statement; return preparedStatement;
} }
} }

View file

@ -1,7 +1,6 @@
package de.hitec.nhplus.patient; package de.hitec.nhplus.patient;
import de.hitec.nhplus.datastorage.DaoFactory; import de.hitec.nhplus.datastorage.DaoFactory;
import de.hitec.nhplus.patient.database.PatientDao;
import de.hitec.nhplus.utils.DateConverter; import de.hitec.nhplus.utils.DateConverter;
import javafx.beans.value.ChangeListener; import javafx.beans.value.ChangeListener;
import javafx.collections.FXCollections; import javafx.collections.FXCollections;
@ -28,7 +27,7 @@ public class AllPatientController {
@FXML @FXML
private TableColumn<Patient, String> columnFirstName; private TableColumn<Patient, String> columnFirstName;
@FXML @FXML
private TableColumn<Patient, String> columnSurName; private TableColumn<Patient, String> columnSurname;
@FXML @FXML
private TableColumn<Patient, String> columnDateOfBirth; private TableColumn<Patient, String> columnDateOfBirth;
@FXML @FXML
@ -40,7 +39,7 @@ public class AllPatientController {
@FXML @FXML
private Button buttonAdd; private Button buttonAdd;
@FXML @FXML
private TextField textFieldSurName; private TextField textFieldSurname;
@FXML @FXML
private TextField textFieldFirstName; private TextField textFieldFirstName;
@FXML @FXML
@ -61,8 +60,8 @@ public class AllPatientController {
this.columnFirstName.setCellValueFactory(new PropertyValueFactory<>("firstName")); this.columnFirstName.setCellValueFactory(new PropertyValueFactory<>("firstName"));
this.columnFirstName.setCellFactory(TextFieldTableCell.forTableColumn()); this.columnFirstName.setCellFactory(TextFieldTableCell.forTableColumn());
this.columnSurName.setCellValueFactory(new PropertyValueFactory<>("surName")); this.columnSurname.setCellValueFactory(new PropertyValueFactory<>("surname"));
this.columnSurName.setCellFactory(TextFieldTableCell.forTableColumn()); this.columnSurname.setCellFactory(TextFieldTableCell.forTableColumn());
this.columnDateOfBirth.setCellValueFactory(new PropertyValueFactory<>("dateOfBirth")); this.columnDateOfBirth.setCellValueFactory(new PropertyValueFactory<>("dateOfBirth"));
this.columnDateOfBirth.setCellFactory(TextFieldTableCell.forTableColumn()); this.columnDateOfBirth.setCellFactory(TextFieldTableCell.forTableColumn());
@ -89,7 +88,7 @@ public class AllPatientController {
{ {
boolean isValid = isValidDate(this.textFieldDateOfBirth.getText()) boolean isValid = isValidDate(this.textFieldDateOfBirth.getText())
&& isValidFirstName(this.textFieldFirstName.getText()) && isValidFirstName(this.textFieldFirstName.getText())
&& isValidSurName(this.textFieldSurName.getText()) && isValidSurName(this.textFieldSurname.getText())
&& isValidDate(this.textFieldDateOfBirth.getText()) && isValidDate(this.textFieldDateOfBirth.getText())
&& isValidCareLevel(this.textFieldCareLevel.getText()) && isValidCareLevel(this.textFieldCareLevel.getText())
&& isValidRoomNumber(textFieldRoomNumber.getText()); && isValidRoomNumber(textFieldRoomNumber.getText());
@ -97,7 +96,7 @@ public class AllPatientController {
AllPatientController.this.buttonAdd.setDisable(!isValid); AllPatientController.this.buttonAdd.setDisable(!isValid);
}; };
this.textFieldSurName.textProperty().addListener(inputNewPatientValidationListener); this.textFieldSurname.textProperty().addListener(inputNewPatientValidationListener);
this.textFieldFirstName.textProperty().addListener(inputNewPatientValidationListener); this.textFieldFirstName.textProperty().addListener(inputNewPatientValidationListener);
this.textFieldDateOfBirth.textProperty().addListener(inputNewPatientValidationListener); this.textFieldDateOfBirth.textProperty().addListener(inputNewPatientValidationListener);
this.textFieldCareLevel.textProperty().addListener(inputNewPatientValidationListener); this.textFieldCareLevel.textProperty().addListener(inputNewPatientValidationListener);
@ -124,7 +123,7 @@ public class AllPatientController {
event.getTableView().refresh(); event.getTableView().refresh();
return; return;
} }
event.getRowValue().setSurName(newSurName); event.getRowValue().setSurname(newSurName);
this.doUpdate(event); this.doUpdate(event);
} }
@ -198,7 +197,7 @@ public class AllPatientController {
@FXML @FXML
public void handleAdd() { public void handleAdd() {
String surname = this.textFieldSurName.getText(); String surname = this.textFieldSurname.getText();
String firstName = this.textFieldFirstName.getText(); String firstName = this.textFieldFirstName.getText();
String birthday = this.textFieldDateOfBirth.getText(); String birthday = this.textFieldDateOfBirth.getText();
LocalDate date = DateConverter.convertStringToLocalDate(birthday); LocalDate date = DateConverter.convertStringToLocalDate(birthday);
@ -215,7 +214,7 @@ public class AllPatientController {
private void clearTextfields() { private void clearTextfields() {
this.textFieldFirstName.clear(); this.textFieldFirstName.clear();
this.textFieldSurName.clear(); this.textFieldSurname.clear();
this.textFieldDateOfBirth.clear(); this.textFieldDateOfBirth.clear();
this.textFieldCareLevel.clear(); this.textFieldCareLevel.clear();
this.textFieldRoomNumber.clear(); this.textFieldRoomNumber.clear();

View file

@ -20,12 +20,12 @@ public class Patient extends Person {
public Patient( public Patient(
String firstName, String firstName,
String surName, String surname,
LocalDate dateOfBirth, LocalDate dateOfBirth,
String careLevel, String careLevel,
String roomNumber String roomNumber
) { ) {
super(firstName, surName); super(firstName, surname);
this.dateOfBirth = new SimpleStringProperty(DateConverter.convertLocalDateToString(dateOfBirth)); this.dateOfBirth = new SimpleStringProperty(DateConverter.convertLocalDateToString(dateOfBirth));
this.careLevel = new SimpleStringProperty(careLevel); this.careLevel = new SimpleStringProperty(careLevel);
this.roomNumber = new SimpleStringProperty(roomNumber); this.roomNumber = new SimpleStringProperty(roomNumber);
@ -34,12 +34,12 @@ public class Patient extends Person {
public Patient( public Patient(
int id, int id,
String firstName, String firstName,
String surName, String surname,
LocalDate dateOfBirth, LocalDate dateOfBirth,
String careLevel, String careLevel,
String roomNumber String roomNumber
) { ) {
super(firstName, surName); super(firstName, surname);
this.id = new SimpleIntegerProperty(id); this.id = new SimpleIntegerProperty(id);
this.dateOfBirth = new SimpleStringProperty(DateConverter.convertLocalDateToString(dateOfBirth)); this.dateOfBirth = new SimpleStringProperty(DateConverter.convertLocalDateToString(dateOfBirth));
this.careLevel = new SimpleStringProperty(careLevel); this.careLevel = new SimpleStringProperty(careLevel);
@ -103,8 +103,8 @@ public class Patient extends Person {
return new StringJoiner(System.lineSeparator()) return new StringJoiner(System.lineSeparator())
.add("PATIENT") .add("PATIENT")
.add("ID: " + this.getId()) .add("ID: " + this.getId())
.add("FirstName: " + this.getFirstName()) .add("Firstname: " + this.getFirstName())
.add("SurName: " + this.getSurName()) .add("Surname: " + this.getSurname())
.add("Birthday: " + this.getDateOfBirth()) .add("Birthday: " + this.getDateOfBirth())
.add("Carelevel: " + this.getCareLevel()) .add("Carelevel: " + this.getCareLevel())
.add("RoomNumber: " + this.getRoomNumber()) .add("RoomNumber: " + this.getRoomNumber())

View file

@ -1,7 +1,6 @@
package de.hitec.nhplus.patient.database; package de.hitec.nhplus.patient;
import de.hitec.nhplus.datastorage.DaoImp; import de.hitec.nhplus.datastorage.DaoImp;
import de.hitec.nhplus.patient.Patient;
import de.hitec.nhplus.utils.DateConverter; import de.hitec.nhplus.utils.DateConverter;
import java.sql.Connection; import java.sql.Connection;
@ -19,26 +18,23 @@ public class PatientDao extends DaoImp<Patient> {
@Override @Override
protected PreparedStatement getCreateStatement(Patient patient) throws SQLException { protected PreparedStatement getCreateStatement(Patient patient) throws SQLException {
final String SQL = """ final String SQL = "INSERT INTO patient (firstname, surname, dateOfBirth, carelevel, roomnumber) " +
INSERT INTO patient "VALUES (?, ?, ?, ?, ?)";
(firstName, surName, dateOfBirth, careLevel, roomNumber) PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
VALUES (?, ?, ?, ?, ?) preparedStatement.setString(1, patient.getFirstName());
"""; preparedStatement.setString(2, patient.getSurname());
PreparedStatement statement = this.connection.prepareStatement(SQL); preparedStatement.setString(3, patient.getDateOfBirth());
statement.setString(1, patient.getFirstName()); preparedStatement.setString(4, patient.getCareLevel());
statement.setString(2, patient.getSurName()); preparedStatement.setString(5, patient.getRoomNumber());
statement.setString(3, patient.getDateOfBirth()); return preparedStatement;
statement.setString(4, patient.getCareLevel());
statement.setString(5, patient.getRoomNumber());
return statement;
} }
@Override @Override
protected PreparedStatement getReadByIDStatement(int id) throws SQLException { protected PreparedStatement getReadByIDStatement(int id) throws SQLException {
final String SQL = "SELECT * FROM patient WHERE id = ?"; final String SQL = "SELECT * FROM patient WHERE id = ?";
PreparedStatement statement = this.connection.prepareStatement(SQL); PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
statement.setInt(1, id); preparedStatement.setInt(1, id);
return statement; return preparedStatement;
} }
@Override @Override
@ -69,30 +65,29 @@ public class PatientDao extends DaoImp<Patient> {
@Override @Override
protected PreparedStatement getUpdateStatement(Patient patient) throws SQLException { protected PreparedStatement getUpdateStatement(Patient patient) throws SQLException {
final String SQL = """ final String SQL =
UPDATE patient SET "UPDATE patient SET " +
firstName = ?, "firstname = ?, " +
surName = ?, "surname = ?, " +
dateOfBirth = ?, "dateOfBirth = ?, " +
careLevel = ?, "carelevel = ?, " +
roomNumber = ?, "roomnumber = ?, " +
WHERE id = ? "WHERE id = ?";
"""; PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
PreparedStatement statement = this.connection.prepareStatement(SQL); preparedStatement.setString(1, patient.getFirstName());
statement.setString(1, patient.getFirstName()); preparedStatement.setString(2, patient.getSurname());
statement.setString(2, patient.getSurName()); preparedStatement.setString(3, patient.getDateOfBirth());
statement.setString(3, patient.getDateOfBirth()); preparedStatement.setString(4, patient.getCareLevel());
statement.setString(4, patient.getCareLevel()); preparedStatement.setString(5, patient.getRoomNumber());
statement.setString(5, patient.getRoomNumber()); preparedStatement.setInt(6, patient.getId());
statement.setInt(6, patient.getId()); return preparedStatement;
return statement;
} }
@Override @Override
protected PreparedStatement getDeleteStatement(int id) throws SQLException { protected PreparedStatement getDeleteStatement(int id) throws SQLException {
final String SQL = "DELETE FROM patient WHERE id = ?"; final String SQL = "DELETE FROM patient WHERE id = ?";
PreparedStatement statement = this.connection.prepareStatement(SQL); PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
statement.setInt(1, id); preparedStatement.setInt(1, id);
return statement; return preparedStatement;
} }
} }

View file

@ -3,10 +3,7 @@ package de.hitec.nhplus.treatment;
import de.hitec.nhplus.Main; import de.hitec.nhplus.Main;
import de.hitec.nhplus.datastorage.DaoFactory; import de.hitec.nhplus.datastorage.DaoFactory;
import de.hitec.nhplus.patient.Patient; import de.hitec.nhplus.patient.Patient;
import de.hitec.nhplus.patient.database.PatientDao; import de.hitec.nhplus.patient.PatientDao;
import de.hitec.nhplus.treatment.database.TreatmentDao;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.collections.FXCollections; import javafx.collections.FXCollections;
import javafx.collections.ObservableList; import javafx.collections.ObservableList;
import javafx.fxml.FXML; import javafx.fxml.FXML;
@ -30,7 +27,7 @@ public class AllTreatmentController {
private TableColumn<Treatment, Integer> columnId; private TableColumn<Treatment, Integer> columnId;
@FXML @FXML
private TableColumn<Treatment, String> columnPatientName; private TableColumn<Treatment, Integer> columnPatientId;
@FXML @FXML
private TableColumn<Treatment, String> columnDate; private TableColumn<Treatment, String> columnDate;
@ -61,12 +58,7 @@ public class AllTreatmentController {
comboBoxPatientSelection.getSelectionModel().select(0); comboBoxPatientSelection.getSelectionModel().select(0);
this.columnId.setCellValueFactory(new PropertyValueFactory<>("id")); this.columnId.setCellValueFactory(new PropertyValueFactory<>("id"));
this.columnPatientName.setCellValueFactory( this.columnPatientId.setCellValueFactory(new PropertyValueFactory<>("patientId"));
cellData -> {
Patient patient = cellData.getValue().getPatient();
return new SimpleStringProperty(patient.getSurName() + ", " + patient.getFirstName());
}
);
this.columnDate.setCellValueFactory(new PropertyValueFactory<>("date")); this.columnDate.setCellValueFactory(new PropertyValueFactory<>("date"));
this.columnBegin.setCellValueFactory(new PropertyValueFactory<>("begin")); this.columnBegin.setCellValueFactory(new PropertyValueFactory<>("begin"));
this.columnEnd.setCellValueFactory(new PropertyValueFactory<>("end")); this.columnEnd.setCellValueFactory(new PropertyValueFactory<>("end"));
@ -100,7 +92,7 @@ public class AllTreatmentController {
patientList = (ArrayList<Patient>) dao.readAll(); patientList = (ArrayList<Patient>) dao.readAll();
this.patientSelection.add("alle"); this.patientSelection.add("alle");
for (Patient patient : patientList) { for (Patient patient : patientList) {
this.patientSelection.add(patient.getSurName()); this.patientSelection.add(patient.getSurname());
} }
} catch (SQLException exception) { } catch (SQLException exception) {
exception.printStackTrace(); exception.printStackTrace();
@ -134,7 +126,7 @@ public class AllTreatmentController {
private Patient searchInList(String surname) { private Patient searchInList(String surname) {
for (Patient patient : this.patientList) { for (Patient patient : this.patientList) {
if (patient.getSurName().equals(surname)) { if (patient.getSurname().equals(surname)) {
return patient; return patient;
} }
} }

View file

@ -2,121 +2,94 @@ package de.hitec.nhplus.treatment;
import de.hitec.nhplus.patient.Patient; import de.hitec.nhplus.patient.Patient;
import de.hitec.nhplus.utils.DateConverter; import de.hitec.nhplus.utils.DateConverter;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.property.SimpleStringProperty;
import java.time.LocalDate; import java.time.LocalDate;
import java.time.LocalTime; import java.time.LocalTime;
import java.util.StringJoiner; import java.util.StringJoiner;
public class Treatment { public class Treatment {
private SimpleIntegerProperty id; private int id;
private final SimpleObjectProperty<Patient> patient; private final Patient patient;
private final SimpleObjectProperty<LocalDate> date; private LocalDate date;
private final SimpleObjectProperty<LocalTime> begin; private LocalTime begin;
private final SimpleObjectProperty<LocalTime> end; private LocalTime end;
private final SimpleStringProperty description; private String description;
private final SimpleStringProperty remarks; private String remarks;
public Treatment(Patient patient, LocalDate date, LocalTime begin, public Treatment(Patient patient, LocalDate date, LocalTime begin,
LocalTime end, String description, String remarks) { LocalTime end, String description, String remarks) {
this.patient = new SimpleObjectProperty<>(patient); this.patient = patient;
this.date = new SimpleObjectProperty<>(date); this.date = date;
this.begin = new SimpleObjectProperty<>(begin); this.begin = begin;
this.end = new SimpleObjectProperty<>(end); this.end = end;
this.description = new SimpleStringProperty(description); this.description = description;
this.remarks = new SimpleStringProperty(remarks); this.remarks = remarks;
} }
public Treatment(int id, Patient patient, LocalDate date, LocalTime begin, public Treatment(int id, Patient patient, LocalDate date, LocalTime begin,
LocalTime end, String description, String remarks) { LocalTime end, String description, String remarks) {
this.id = new SimpleIntegerProperty(id); this.id = id;
this.patient = new SimpleObjectProperty<>(patient); this.patient = patient;
this.date = new SimpleObjectProperty<>(date); this.date = date;
this.begin = new SimpleObjectProperty<>(begin); this.begin = begin;
this.end = new SimpleObjectProperty<>(end); this.end = end;
this.description = new SimpleStringProperty(description); this.description = description;
this.remarks = new SimpleStringProperty(remarks); this.remarks = remarks;
} }
public int getId() { public int getId() {
return id.getValue(); return id;
} }
public Patient getPatient() { public Patient getPatient() {
return patient.getValue(); return this.patient;
} }
public String getDate() { public String getDate() {
return date.getValue().toString(); return date.toString();
} }
public String getBegin() { public String getBegin() {
return begin.getValue().toString(); return begin.toString();
} }
public String getEnd() { public String getEnd() {
return end.getValue().toString(); return end.toString();
} }
public void setDate(String date) { public void setDate(String date) {
this.date.set(DateConverter.convertStringToLocalDate(date)); this.date = DateConverter.convertStringToLocalDate(date);
} }
public void setBegin(LocalTime begin) { public void setBegin(LocalTime begin) {
this.begin.set(begin); this.begin = begin;
} }
public void setEnd(LocalTime end) { public void setEnd(LocalTime end) {
this.end.set(end); this.end = end;
} }
public String getDescription() { public String getDescription() {
return description.getValue();
}
public void setDescription(String description) {
this.description.set(description);
}
public String getRemarks() {
return remarks.getValue();
}
public SimpleObjectProperty<Patient> patientProperty() {
return patient;
}
public SimpleObjectProperty<LocalDate> dateProperty() {
return date;
}
public SimpleObjectProperty<LocalTime> beginProperty() {
return begin;
}
public SimpleObjectProperty<LocalTime> endProperty() {
return end;
}
public SimpleStringProperty descriptionProperty() {
return description; return description;
} }
public SimpleStringProperty remarksProperty() { public void setDescription(String description) {
this.description = description;
}
public String getRemarks() {
return remarks; return remarks;
} }
public void setRemarks(String remarks) { public void setRemarks(String remarks) {
this.remarks.set(remarks); this.remarks = remarks;
} }
public String toString() { public String toString() {
return new StringJoiner(System.lineSeparator()) return new StringJoiner(System.lineSeparator())
.add("TREATMENT") .add("TREATMENT")
.add("ID: " + this.getId()) .add("ID: " + this.getId())
.add("Patient: " + this.getPatient().getSurName() + " " + this.getPatient().getFirstName()) .add("Patient: " + this.getPatient().getSurname() + " " + this.getPatient().getFirstName())
.add("Date: " + this.getDate()) .add("Date: " + this.getDate())
.add("Begin: " + this.getBegin()) .add("Begin: " + this.getBegin())
.add("End: " + this.getEnd()) .add("End: " + this.getEnd())

View file

@ -1,8 +1,7 @@
package de.hitec.nhplus.treatment.database; package de.hitec.nhplus.treatment;
import de.hitec.nhplus.datastorage.DaoFactory; import de.hitec.nhplus.datastorage.DaoFactory;
import de.hitec.nhplus.datastorage.DaoImp; import de.hitec.nhplus.datastorage.DaoImp;
import de.hitec.nhplus.treatment.Treatment;
import de.hitec.nhplus.utils.DateConverter; import de.hitec.nhplus.utils.DateConverter;
import java.sql.Connection; import java.sql.Connection;
@ -20,27 +19,24 @@ public class TreatmentDao extends DaoImp<Treatment> {
@Override @Override
protected PreparedStatement getCreateStatement(Treatment treatment) throws SQLException { protected PreparedStatement getCreateStatement(Treatment treatment) throws SQLException {
final String SQL = """ final String SQL = "INSERT INTO treatment (patientId, treatment_date, begin, end, description, remark) " +
INSERT INTO treatment "VALUES (?, ?, ?, ?, ?, ?)";
(patientId, date, begin, end, description, remark) PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
VALUES (?, ?, ?, ?, ?, ?) preparedStatement.setInt(1, treatment.getPatient().getId());
"""; preparedStatement.setString(2, treatment.getDate());
PreparedStatement statement = this.connection.prepareStatement(SQL); preparedStatement.setString(3, treatment.getBegin());
statement.setInt(1, treatment.getPatient().getId()); preparedStatement.setString(4, treatment.getEnd());
statement.setString(2, treatment.getDate()); preparedStatement.setString(5, treatment.getDescription());
statement.setString(3, treatment.getBegin()); preparedStatement.setString(6, treatment.getRemarks());
statement.setString(4, treatment.getEnd()); return preparedStatement;
statement.setString(5, treatment.getDescription());
statement.setString(6, treatment.getRemarks());
return statement;
} }
@Override @Override
protected PreparedStatement getReadByIDStatement(int id) throws SQLException { protected PreparedStatement getReadByIDStatement(int id) throws SQLException {
final String SQL = "SELECT * FROM treatment WHERE id = ?"; final String SQL = "SELECT * FROM treatment WHERE id = ?";
PreparedStatement statement = this.connection.prepareStatement(SQL); PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
statement.setInt(1, id); preparedStatement.setInt(1, id);
return statement; return preparedStatement;
} }
@Override @Override
@ -73,9 +69,9 @@ public class TreatmentDao extends DaoImp<Treatment> {
private PreparedStatement getReadAllTreatmentsOfOnePatientByPid(int patientId) throws SQLException { private PreparedStatement getReadAllTreatmentsOfOnePatientByPid(int patientId) throws SQLException {
final String SQL = "SELECT * FROM treatment WHERE patientId = ?"; final String SQL = "SELECT * FROM treatment WHERE patientId = ?";
PreparedStatement statement = this.connection.prepareStatement(SQL); PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
statement.setInt(1, patientId); preparedStatement.setInt(1, patientId);
return statement; return preparedStatement;
} }
public List<Treatment> readTreatmentsByPid(int patientId) throws SQLException { public List<Treatment> readTreatmentsByPid(int patientId) throws SQLException {
@ -85,33 +81,32 @@ public class TreatmentDao extends DaoImp<Treatment> {
@Override @Override
protected PreparedStatement getUpdateStatement(Treatment treatment) throws SQLException { protected PreparedStatement getUpdateStatement(Treatment treatment) throws SQLException {
final String SQL = """ final String SQL =
UPDATE treatment SET "UPDATE treatment SET " +
patientId = ?, "patientId = ?, " +
date = ?, "treatment_date = ?, " +
begin = ?, "begin = ?, " +
end = ?, "end = ?, " +
description = ?, "description = ?, " +
remark = ? "remark = ? " +
WHERE id = ? "WHERE id = ?";
"""; PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
PreparedStatement statement = this.connection.prepareStatement(SQL); preparedStatement.setInt(1, treatment.getPatient().getId());
statement.setInt(1, treatment.getPatient().getId()); preparedStatement.setString(2, treatment.getDate());
statement.setString(2, treatment.getDate()); preparedStatement.setString(3, treatment.getBegin());
statement.setString(3, treatment.getBegin()); preparedStatement.setString(4, treatment.getEnd());
statement.setString(4, treatment.getEnd()); preparedStatement.setString(5, treatment.getDescription());
statement.setString(5, treatment.getDescription()); preparedStatement.setString(6, treatment.getRemarks());
statement.setString(6, treatment.getRemarks()); preparedStatement.setInt(7, treatment.getId());
statement.setInt(7, treatment.getId()); return preparedStatement;
return statement;
} }
@Override @Override
protected PreparedStatement getDeleteStatement(int id) throws SQLException { protected PreparedStatement getDeleteStatement(int id) throws SQLException {
final String SQL = final String SQL =
"DELETE FROM treatment WHERE id = ?"; "DELETE FROM treatment WHERE id = ?";
PreparedStatement statement = this.connection.prepareStatement(SQL); PreparedStatement preparedStatement = this.connection.prepareStatement(SQL);
statement.setInt(1, id); preparedStatement.setInt(1, id);
return statement; return preparedStatement;
} }
} }

View file

@ -99,7 +99,7 @@ public class TreatmentModalController {
private void showData() { private void showData() {
this.labelFirstName.setText(patient.getFirstName()); this.labelFirstName.setText(patient.getFirstName());
this.labelSurname.setText(patient.getSurName()); this.labelSurname.setText(patient.getSurname());
LocalDate date = DateConverter.convertStringToLocalDate(treatment.getDate()); LocalDate date = DateConverter.convertStringToLocalDate(treatment.getDate());
this.datePicker.setValue(date); this.datePicker.setValue(date);
this.textFieldBegin.setText(this.treatment.getBegin()); this.textFieldBegin.setText(this.treatment.getBegin());

View file

@ -11,17 +11,11 @@ module de.hitec.nhplus {
opens de.hitec.nhplus.main to javafx.base, javafx.fxml; opens de.hitec.nhplus.main to javafx.base, javafx.fxml;
exports de.hitec.nhplus.patient; exports de.hitec.nhplus.patient;
exports de.hitec.nhplus.patient.database;
opens de.hitec.nhplus.patient.database to javafx.base, javafx.fxml;
opens de.hitec.nhplus.patient to javafx.base, javafx.fxml; opens de.hitec.nhplus.patient to javafx.base, javafx.fxml;
exports de.hitec.nhplus.treatment; exports de.hitec.nhplus.treatment;
exports de.hitec.nhplus.treatment.database;
opens de.hitec.nhplus.treatment to javafx.base, javafx.fxml; opens de.hitec.nhplus.treatment to javafx.base, javafx.fxml;
opens de.hitec.nhplus.treatment.database to javafx.base, javafx.fxml;
exports de.hitec.nhplus.nurse; exports de.hitec.nhplus.nurse;
exports de.hitec.nhplus.nurse.database;
opens de.hitec.nhplus.nurse to javafx.base, javafx.fxml; opens de.hitec.nhplus.nurse to javafx.base, javafx.fxml;
opens de.hitec.nhplus.nurse.database to javafx.base, javafx.fxml;
} }

View file

@ -20,7 +20,7 @@
text="ID" text="ID"
/> />
<TableColumn <TableColumn
fx:id="columnSurName" fx:id="columnSurname"
minWidth="140.0" minWidth="140.0"
text="Nachname" text="Nachname"
/> />
@ -51,12 +51,12 @@
<Insets right="8.0"/> <Insets right="8.0"/>
</padding> </padding>
<TextField <TextField
fx:id="textFieldSurName" fx:id="textFieldSurname"
prefWidth="200.0" prefWidth="200.0"
promptText="Nachname" promptText="Nachname"
/> />
<TextField <TextField
fx:id="textFieldFirstName" fx:id="textFieldFirstname"
prefWidth="200.0" prefWidth="200.0"
promptText="Vorname" promptText="Vorname"
/> />

View file

@ -1,7 +0,0 @@
CREATE TABLE nurse
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
firstName TEXT NOT NULL,
surName TEXT NOT NULL,
phoneNumber TEXT NOT NULL
)

View file

@ -23,7 +23,7 @@
text="ID" text="ID"
/> />
<TableColumn <TableColumn
fx:id="columnSurName" fx:id="columnSurname"
minWidth="140.0" minWidth="140.0"
onEditCommit="#handleOnEditSurname" onEditCommit="#handleOnEditSurname"
text="Nachname" text="Nachname"
@ -90,7 +90,7 @@
GridPane.rowIndex="0" GridPane.rowIndex="0"
GridPane.columnIndex="1" GridPane.columnIndex="1"
prefWidth="200.0" prefWidth="200.0"
fx:id="textFieldSurName" fx:id="textFieldSurname"
promptText="Nachname" promptText="Nachname"
/> />
<TextField <TextField

View file

@ -1,9 +0,0 @@
CREATE TABLE patient
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
firstName TEXT NOT NULL,
surName TEXT NOT NULL,
dateOfBirth TEXT NOT NULL,
careLevel TEXT NOT NULL,
roomNumber TEXT NOT NULL
);

View file

@ -24,9 +24,9 @@
text="ID" text="ID"
/> />
<TableColumn <TableColumn
fx:id="columnPatientName" fx:id="columnPatientId"
minWidth="80.0" minWidth="40.0"
text="Patient" text="PatientID"
/> />
<TableColumn <TableColumn
fx:id="columnDate" fx:id="columnDate"

View file

@ -1,11 +0,0 @@
CREATE TABLE treatment
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
patientId INTEGER NOT NULL,
date TEXT NOT NULL,
begin TEXT NOT NULL,
end TEXT NOT NULL,
description TEXT NOT NULL,
remark TEXT NOT NULL,
FOREIGN KEY (patientId) REFERENCES patient (id) ON DELETE CASCADE
)