diff --git a/module/screen/model.php b/module/screen/model.php index 832c6481ce..b794edc79e 100644 --- a/module/screen/model.php +++ b/module/screen/model.php @@ -1625,12 +1625,8 @@ class screenModel extends model $tableOption = new stdclass(); $tableOption->headers = $isObjectMetric ? $this->getMetricHeaders($groupHeader, $dateType) : array($groupHeader); $tableOption->data = $groupData; - - if($metric->scope != 'system') $tableOption->objectPairs = $this->loadModel('metric')->getPairsByScope($metric->scope); $tableOption->scope = $metric->scope; - - $tableOption->oddBGC = '#173250FF'; - $tableOption->evenBGC = '#0B1727FF'; + if($metric->scope != 'system') $tableOption->objectPairs = $this->loadModel('metric')->getPairsByScope($metric->scope); return $tableOption; }