public function coldRooms4to20ByModelAndWorkingStatusAction()
 {
     //ccem proposed list 3.10 (34)
     $this->_helper->layout->setLayout('reports');
     $data_arr = array();
     $search_form = new Form_ReportsSearch();
     $ccm_models = new Model_CcmModels();
     $form_values['facility_type'] = $this->_request->getParam('facility_type', '');
     $form_values['office'] = $this->_request->getParam('office', '');
     $form_values['combo1'] = $this->_request->getParam('combo1', '');
     $form_values['combo2'] = $this->_request->getParam('combo2', '');
     if ($this->_request->isPost()) {
         if ($search_form->isValid($this->_request->getPost())) {
             $form_values = array_merge($form_values, $search_form->getValues());
             $ccm_models->form_values = $form_values;
             $data_arr = $ccm_models->coldRooms4to20ByModelAndWorkingStatus();
         }
     }
     $xmlstore = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
     $xmlstore .= "<rows>";
     foreach ($data_arr as $sub_arr) {
         $xmlstore .= "<row>";
         $xmlstore .= "<cell>" . $sub_arr['FacilityType'] . "</cell>";
         $xmlstore .= "<cell><![CDATA[" . $sub_arr['Model'] . "]]></cell>";
         $xmlstore .= "<cell><![CDATA[" . $sub_arr['Manufacturer'] . "]]></cell>";
         $xmlstore .= "<cell><![CDATA[" . $sub_arr['EquipmentType'] . "]]></cell>";
         $xmlstore .= "<cell>" . $sub_arr['Total'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['Working'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['WorkingPer'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['NeedsService'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['NeedsServicePer'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['NotWorking'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['NotWorkingPer'] . "</cell>";
         $xmlstore .= "</row>";
     }
     $xmlstore .= "</rows>";
     $this->view->main_heading = "CCEM Reports";
     $this->view->report_title = "Cold Rooms +4C and -20C By Model And Working Status";
     $this->view->headers = 'Facility Type,Model Name,Manufacturer,Equipment Type,Total,Working #,Working %,Working Needs Service #,Working Needs Service %,Not Working #,Not Working %';
     $this->view->rspan = '';
     $this->view->cspan = '#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan';
     $this->view->width = '*,*,*,*,*,*,*,*,*,*,*';
     $this->view->ro = 'ro,ro,ro,ro,ro,ro,ro,ro,ro,ro,ro';
     $this->view->xmlstore = $xmlstore;
     $this->view->search_form = $search_form;
     $this->view->data = $data_arr;
     $search_form->facility_type->setValue($form_values['facility_type']);
     $this->view->form_values = $form_values;
     $this->view->inlineScript()->appendFile(Zend_Registry::get('baseurl') . '/js/all_level_area_combo_report_graph.js');
 }