parent
15f4c1f3b0
commit
8219e24670
2 changed files with 14 additions and 3 deletions
|
@ -19,6 +19,8 @@ import java.util.StringJoiner;
|
|||
*
|
||||
* @author Bernd Heidemann
|
||||
* @author Dominik Säume
|
||||
* @author Armin Ribic
|
||||
* @author Dorian Nemec
|
||||
*/
|
||||
public class Treatment {
|
||||
private SimpleIntegerProperty id;
|
||||
|
@ -30,6 +32,7 @@ public class Treatment {
|
|||
private final SimpleStringProperty description;
|
||||
private final SimpleStringProperty remarks;
|
||||
private final SimpleBooleanProperty locked;
|
||||
private int sperrfrist;
|
||||
|
||||
/**
|
||||
* This constructor allows instantiating a {@link Treatment} object,
|
||||
|
@ -55,6 +58,8 @@ public class Treatment {
|
|||
this.description = new SimpleStringProperty(description);
|
||||
this.remarks = new SimpleStringProperty(remarks);
|
||||
this.locked = new SimpleBooleanProperty(false);
|
||||
|
||||
sperrfrist = 10;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -188,7 +193,10 @@ public class Treatment {
|
|||
.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculates delete date of treatment.
|
||||
*/
|
||||
public LocalDate calculateDeleteDate() {
|
||||
return DateConverter.convertStringToLocalDate(getDate()).plusYears(10);
|
||||
return DateConverter.convertStringToLocalDate(getDate()).plusYears(sperrfrist);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,6 +21,8 @@ import java.util.List;
|
|||
*
|
||||
* @author Bernd Heidemannn
|
||||
* @author Dominik Säume
|
||||
* @author Armin Ribic
|
||||
* @author Dorian Nemec
|
||||
*/
|
||||
public class TreatmentDao extends DaoImp<Treatment> {
|
||||
|
||||
|
@ -147,10 +149,11 @@ public class TreatmentDao extends DaoImp<Treatment> {
|
|||
return statement;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all locked treatments.
|
||||
*/
|
||||
public List<Treatment> readAllLocked() throws SQLException {
|
||||
final String SQL = "SELECT * FROM treatment WHERE isLocked = true";
|
||||
return getListFromResultSet(this.connection.prepareStatement(SQL).executeQuery());
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue