public function ajaxTransferAssetAction()
 {
     $this->_helper->layout->setLayout("ajax");
     $data = array();
     $cold_chain = new Model_ColdChain();
     $cold_chain->form_values['warehouse'] = $this->_request->warehouse;
     //  $data_0 = $cold_chain->getAllColdChainAssetForTransfer();
     $data = $cold_chain->getQuantityColdChainAssetForTransfer();
     $this->view->arr_data = $data;
     $data1 = $cold_chain->getNonQuantityColdChainAssetForTransfer();
     $this->view->arr_data1 = $data1;
 }