This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postulantes_de_ramo.php
115 lines (100 loc) · 4.12 KB
/
postulantes_de_ramo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
session_start();
if (!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] != true) {
echo "Acceso denegado. Inicie sesión como administrador para ver esta página";
die();
}
?>
<head>
<meta charset="UTF-8">
<title>Sistema de Postulación a ayudantías: Sección Administrador</title>
<link type="text/css" rel="stylesheet" href="css/bootstrap.css" media="screen,projection"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<?php include("cabecera.php");?>
</head>
<?php
include("connect_db.php");
$cod_ramo= $_POST["codigo_ramo"];
$sql="SELECT postulante.nombre,postulante.matricula,postulante.correo,postula.solicitado
FROM postulante, postula WHERE postulante.matricula=postula.matricula AND postula.codigo='$cod_ramo'
ORDER BY postula.solicitado DESC";
$sql2="SELECT DISTINCT postulante.nombre,postulante.matricula,postulante.correo,postula.solicitado
FROM postulante, postula,dispone,tiene
WHERE postulante.matricula=postula.matricula AND postula.codigo='$cod_ramo'
AND tiene.codigo='$cod_ramo' AND postulante.matricula = ANY (SELECT dispone.matricula
FROM dispone,tiene WHERE tiene.codigo='$cod_ramo' AND dispone.dia=tiene.dia AND dispone.hora=tiene.hora )
ORDER BY postula.solicitado DESC";
$tabla = $mysqli->query($sql);
$tabla2= $mysqli->query($sql2);
?>
<body>
<div class="container">
<h2>Postulantes de <?php echo $cod_ramo;?></h2>
<form action='aceptar-ayudante.php' method=post>
<table class="table table-dark">
<thead class="thead-dark">
<tr>
<th scope="col">Nombre</th>
<th scope="col"> </th>
<th scope="col">Matrícula</th>
<th scope="col">Correo</th>
<th scope="col">Solicitado</th>
<th scope="col">Ayudantías asignadas</th>
<th scope="col">Aceptar</th>
</tr>
</thead>
<tbody>
<?php while ($row = mysqli_fetch_array($tabla)) { ?>
<tr>
<?php $ayud_asig="SELECT SUM(postula.seleccionado) FROM postula WHERE postula.matricula='$row[1]'";
$ayud_asig= $mysqli->query($ayud_asig);
$ayud_asig= mysqli_fetch_array($ayud_asig);
?>
<td><?php echo $row[0]; ?></td>
<td><a href="info_postulante.php?post_matricula=<?php echo $row[1]; ?>">(ver detalles)</a></td>
<td><?php echo $row[1]; ?></td>
<td><?php echo $row[2]; ?></td>
<td><?php echo $row[3]; ?></td>
<td><?php echo $ayud_asig[0]; ?></td>
<td><input type="checkbox" name="aceptar[]" value="<?php echo $row[1]; ?>"></td>
</tr>
<?php } ?>
</tbody>
</table>
<input type="hidden" name="codigo" value="<?php echo $_POST["codigo_ramo"]; ?>">
<p><input type="submit" value="Aceptar postulantes seleccionados."></p></form>
</div>
<div class="container">
<h2>Postulantes de <?php echo $cod_ramo;?> con disponibilidad de horario compatible</h2>
<table class="table table-dark">
<thead class="thead-dark">
<tr>
<th scope="col">Nombre</th>
<th scope="col"></th>
<th scope="col">Matrícula</th>
<th scope="col">Correo</th>
<th scope="col">Solicitado </th>
<th scope="col">Ayudantías asignadas </th>
</tr>
</thead>
<tbody>
<?php while ($row = mysqli_fetch_array($tabla2)) { ?>
<tr>
<?php $ayud_asig="SELECT SUM(postula.seleccionado) FROM postula WHERE postula.matricula='$row[1]'";
$ayud_asig= $mysqli->query($ayud_asig);
$ayud_asig= mysqli_fetch_array($ayud_asig);
?>
<td><?php echo $row[0]; ?></td>
<td><a href="info_postulante.php?post_matricula=<?php echo $row[0]; ?>">(ver detalles)</a></td>
<td><?php echo $row[1]; ?></td>
<td><?php echo $row[2]; ?></td>
<td><?php echo $row[3]; ?></td>
<td><?php echo $ayud_asig[0]; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</body>
<?php include("pie-de-pag.php");?>