Skip to content
Snippets Groups Projects
Commit 52c82881 authored by srosse's avatar srosse
Browse files

OO-2487: save all rows (not visible too)

parent 00166aee
No related branches found
No related tags found
No related merge requests found
...@@ -538,7 +538,7 @@ public class CheckListAssessmentController extends FormBasicController implement ...@@ -538,7 +538,7 @@ public class CheckListAssessmentController extends FormBasicController implement
private void doSave() { private void doSave() {
int numOfCheckbox = checkboxList.getNumOfCheckbox(); int numOfCheckbox = checkboxList.getNumOfCheckbox();
List<CheckListAssessmentRow> rows = model.getObjects(); List<CheckListAssessmentRow> rows = model.getBackedUpRows();//save all rows
List<AssessmentBatch> batchElements = new ArrayList<>(rows.size()); List<AssessmentBatch> batchElements = new ArrayList<>(rows.size());
Set<Long> assessedIdentityToUpdate = new HashSet<>(); Set<Long> assessedIdentityToUpdate = new HashSet<>();
for(CheckListAssessmentRow row:rows) { for(CheckListAssessmentRow row:rows) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment