public function generateexcelforliquidacionesAction()
 {
     try {
         $this->_helper->layout->disableLayout();
         $this->_helper->viewRenderer->setNoRender();
         $request = $this->getRequest();
         $liqId = $request->liquidacion_id;
         $status = (int) $request->status;
         $pdf = new Gyuser_Model_PdfGeneratorDataMapper();
         $pdf->CreateExcelforLiquidaciones($status, $liqId);
     } catch (Exception $e) {
         echo $e;
     }
 }