Removed initial filter from Lehrauftrag akzeptieren

Now Lehrauftrag akzeptieren is showing initially all lehrauftraege.
This commit is contained in:
Cris
2019-11-12 12:04:29 +01:00
committed by hainberg
parent 321da96728
commit d1f99ac667
2 changed files with 0 additions and 14 deletions
@@ -326,7 +326,6 @@ $filterWidgetArray = array(
selectableCheck: function(row){
return func_selectableCheck(row);
},
initialFilter: func_initialFilter(),
footerElement: func_footerElement(),
rowUpdated:function(row){
func_rowUpdated(row);
@@ -73,19 +73,6 @@ function hf_filterStringnumberWithOperator(headerValue, rowValue, rowData){
return parseFloat(rowValue) == headerValue;
}
// -----------------------------------------------------------------------------------------------------------------
// Custom filters
// -----------------------------------------------------------------------------------------------------------------
// Filters erteilte initially
function func_initialFilter(){
return [
{field: 'bestellt', type: '!=', value: null}, // bestellt
{field: 'erteilt', type: '!=', value: null}, // AND erteilt
{field: 'akzeptiert', type: '=', value: null} // AND NOT akzeptiert
]
}
// -----------------------------------------------------------------------------------------------------------------
// Tabulator table format functions
// -----------------------------------------------------------------------------------------------------------------