Fixed: 'Alle auswählen'-button filters now correctly

The changed contracts were still selected when using the 'Alle Auswählen'
button. This is fixed now.
This commit is contained in:
Cris
2019-10-25 12:29:38 +02:00
committed by hainberg
parent 5b72ccdea1
commit ae313175c8
@@ -371,7 +371,8 @@ $this->load->view(
$('#filterTabulator').tabulator('getRows', true)
.filter(row => row.getData().personalnummer >= 0 && // NOT dummies
row.getData().bestellt != null && // AND bestellt
row.getData().erteilt == null) // AND NOT erteilt
row.getData().erteilt == null && // AND NOT erteilt
row.getData().betrag == row.getData().vertrag_betrag) // AND NOT geaendert
.forEach((row => row.select()));
}