예제 #1
0
 public function getFilter($name)
 {
     if ($this->_helper()->getQueue()->confCrossreportFilters() && !$this->getIsExport()) {
         if ($this->_helper()->getQueue()->getLastFilter($name) && $this->_helper()->getView()->isReportChanged($this->getId(), $this->getViewKey())) {
             $value = $this->_helper()->getQueue()->getLastFilter($name);
         } else {
             $value = parent::getFilter($name);
         }
         return $value;
     } else {
         return parent::getFilter($name);
     }
 }