IcingaServiceTable: Hide ServiceSet Services from applied ones listing

refs #12891
This commit is contained in:
Markus Frosch 2016-11-09 11:05:51 +01:00
parent 699b6a7293
commit c50b1b09a2
1 changed files with 2 additions and 1 deletions

View File

@ -122,7 +122,8 @@ class IcingaServiceTable extends QuickTable
'i.service_id = s.id',
array()
)->where('i.parent_service_id = ?', $id)
->where('s.object_type = ?', 'apply');
->where('s.object_type = ?', 'apply')
->where('s.service_set_id IS NULL');
return $db->fetchAll($query);
}