Merge pull request 'NOTICKET: Bugfix for Treatment locking' (#52) from bugfixes into main
Reviewed-on: #52
This commit is contained in:
commit
97373930ec
1 changed files with 9 additions and 0 deletions
|
@ -312,6 +312,8 @@ public class AllTreatmentController {
|
|||
@FXML
|
||||
public void handleLock(){
|
||||
Treatment selectedItem = this.tableView.getSelectionModel().getSelectedItem();
|
||||
LocalDate today = LocalDate.now();
|
||||
|
||||
if (selectedItem == null){
|
||||
return;
|
||||
}
|
||||
|
@ -322,6 +324,13 @@ public class AllTreatmentController {
|
|||
}catch (SQLException exception){
|
||||
exception.printStackTrace();
|
||||
}
|
||||
if (selectedItem.calculateDeleteDate().isBefore(today) || selectedItem.calculateDeleteDate().equals(today)){
|
||||
try {
|
||||
dao.delete(selectedItem.getId());
|
||||
} catch (SQLException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
readAllAndShowInTableView();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue