The sales_Use_Taxable field in the database can be one of three options, which are: "Yes", "No", or it can also be null. Using the below code to filter the results, it does not display the rows that have null for this field.
<tr ng-repeat="h in vm.filteredRequisitions = (vm.headers | filter: { por_Detail: { sales_Use_Taxable: vm.tax || '' } }) ...>
I believe the important part of this code is sales_Use_Taxable: vm.tax || ''. How can I edit this line to include the rows that have null for the sales_Use_Taxable field?