/**
  * Carga la pantalla donde se muestran los descuentos.
  * @return [type] [description]
  */
 public function newDescuento()
 {
     $filescripts = array("descuento.js");
     $pag_title = "AGREGAR DESCUENTOS -CIEFT";
     $active = 3;
     //variable que se usa para saber que pestaña estara activada
     $participantes = new usuariosModel();
     $cLibreria = new cLibreria();
     $participantesTodos = $participantes->getParticipantes();
     include 'view/head.php';
     include 'view/agregarDescuento.php';
     include 'view/footer.php';
 }