public function facilitiesSuitableForSolarEquipmentByAreaAction()
 {
     //ccem proposed list 1.11 (6)
     $this->_helper->layout->setLayout('reports');
     $data_arr = array();
     $search_form = new Form_ReportsSearch();
     $ccm_warehouse = new Model_CcmWarehouses();
     $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_warehouse->form_values = $form_values;
             $data_arr = $ccm_warehouse->facilitiesSuitableForSolarEquipmentByAreaReport();
         }
     }
     $xmlstore = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
     $xmlstore .= "<rows>";
     foreach ($data_arr as $sub_arr) {
         $xmlstore .= "<row>";
         $xmlstore .= "<cell>" . $sub_arr['Province'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['District'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['FacilityType'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['Total'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['FacilitiesSuitableForSolarEquipmentNo'] . "</cell>";
         $xmlstore .= "<cell>" . $sub_arr['FacilitiesSuitableForSolarEquipmentPer'] . "</cell>";
         $xmlstore .= "</row>";
     }
     $xmlstore .= "</rows>";
     $this->view->main_heading = "CCEM Reports";
     $this->view->report_title = "Facilities Suitable For Solar Equipment By Area";
     $this->view->headers = 'Province,District,Facility Type,No of Facilities,Facilities Suitable For Solar Equipment #,Facilities Suitable For Solar Equipment %';
     $this->view->rspan = '';
     $this->view->cspan = '#cspan,#cspan,#cspan,#cspan,#cspan';
     $this->view->width = '*,*,*,*,*,*';
     $this->view->ro = 'ro,ro,ro,ro,ro,ro';
     $this->view->xmlstore = $xmlstore;
     $this->view->search_form = $search_form;
     $search_form->facility_type->setValue($form_values['facility_type']);
     $this->view->form_values = $form_values;
     $this->view->data = $data_arr;
     $this->view->inlineScript()->appendFile(Zend_Registry::get('baseurl') . '/js/all_level_area_combo_report_graph.js');
 }