/**
  * Hace una copia del presupuesto.
  * Genera otro presupuesto en base al actual.
  * IMPORTANTE: SE TOMAN LOS PRECIOS ACTUALES DE LOS ARTICULOS
  * 
  * @return array Template y values
  */
 public function duplicarAction()
 {
     if ($this->values['permisos']['permisosModulo']['IN']) {
         $datos = new PstoCab($this->request['PstoCab']['IDPsto']);
         $idPstoNuevo = $datos->duplica();
         if ($idPstoNuevo) {
             $this->values['datos'] = new PstoCab($idPstoNuevo);
         } else {
             $this->values['datos'] = new PstoCab($this->request['PstoCab']['IDPsto']);
         }
         $this->values['errores'] = $datos->getErrores();
         $this->values['alertas'] = $datos->getAlertas();
         unset($datos);
         return array('template' => $this->entity . '/edit.html.twig', 'values' => $this->values);
     } else {
         return array('template' => '_global/forbiden.html.twig');
     }
 }