mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
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:
@@ -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()));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user