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