summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/varios
diff options
context:
space:
mode:
authorIrina Gómez <irinagomez@us.es>2018-10-25 14:17:54 +0200
committerIrina Gómez <irinagomez@us.es>2018-10-25 14:17:54 +0200
commit50b2715f9fb10adb5c8cdf46961ed29a7a0501e2 (patch)
treed6e279a18bf9cc9605f61968d57b25e08318f884 /admin/WebConsole/varios
parent6544149d9703be2a80826986be94a0e6af79a9e9 (diff)
#870 You can search for computers whitout repository.
Diffstat (limited to 'admin/WebConsole/varios')
-rw-r--r--admin/WebConsole/varios/buscar.php24
1 files changed, 19 insertions, 5 deletions
diff --git a/admin/WebConsole/varios/buscar.php b/admin/WebConsole/varios/buscar.php
index 62f27fb6..1d65b14d 100644
--- a/admin/WebConsole/varios/buscar.php
+++ b/admin/WebConsole/varios/buscar.php
@@ -23,7 +23,7 @@ $valor="";
# Tomar varlores de sesión.
if (isset($_POST["criterio"])) $criterio=htmlspecialchars($_POST["criterio"]);
if (isset($_POST["valor"])) $valor=htmlspecialchars($_POST["valor"]);
-if (!empty ($valor) or $criterio == "duplic" or $criterio == "profe") {
+if (!empty ($valor) or $criterio == "duplic" or $criterio == "profe" or $criterio == "norepo") {
$cmd=CreaComando($cadenaconexion);
if ($cmd) {
$rs=new Recordset;
@@ -107,6 +107,20 @@ if (!empty ($valor) or $criterio == "duplic" or $criterio == "profe") {
AND aulas.idcentro='$idcentro'
ORDER BY aulas.nombreaula";
break;
+ case "norepo": // Mostrar ordenadores sin repositorio
+ $cmd->texto="SELECT grupos.nombregrupo AS grupo,
+ aulas.nombreaula AS aula,
+ ordenadores.idordenador AS id,
+ ordenadores.nombreordenador AS nombre,
+ ordenadores.ip AS ip,
+ ordenadores.mac AS mac
+ FROM ordenadores
+ JOIN aulas ON aulas.idaula=ordenadores.idaula
+ LEFT JOIN grupos ON grupos.idgrupo=aulas.grupoid
+ AND aulas.idcentro='$idcentro'
+ AND idrepositorio=0
+ ORDER BY aulas.nombreaula;";
+ break;
}
$rs->Comando=&$cmd;
if ($rs->Abrir()) {
@@ -140,7 +154,7 @@ function confirmar(){
}
//_________________________________
function comprobar_datos(){
- if (document.fdatos.valor.value=="" && document.fdatos.criterio.value!="duplic" && document.fdatos.criterio.value!="profe") {
+ if (document.fdatos.valor.value=="" && document.fdatos.criterio.value!="duplic" && document.fdatos.criterio.value!="profe" && document.fdatos.criterio.value!="norepo") {
alert("<?php echo $TbMsg["SEARCH_NOVALUE"] ?>");
document.fdatos.valor.focus();
return(false)
@@ -161,14 +175,13 @@ function PulsaEnter(oEvento){
if (iAscii == 13) confirmar();
return true;
}
-//_________________________________
</script>
</head>
<body>
<p align="center"><u><span class="cabeceras"><?php echo $TbMsg["SEARCH_TITLE"] ?></span></u></p>
<?php
-if (!empty ($valor) or $criterio == "duplic" or $criterio == "profe") {
+if (!empty ($valor) or $criterio == "duplic" or $criterio == "profe" or $criterio == "norepo") {
if (empty ($aula)) {
echo '<p class="subcabeceras" align="center">'.$TbMsg["SEARCH_NOMATCHES"].'</p>';
} else {
@@ -200,12 +213,13 @@ if (!empty ($valor) or $criterio == "duplic" or $criterio == "profe") {
<div align="center" style="margin:20;">
<form action="#" class="formulariodatos" name="fdatos" method="post">
<?php echo $TbMsg["SEARCH_CRITERIA"] ?>:
- <select name="criterio" id="criterio" onchange="if (document.fdatos.criterio.value=='duplic' || document.fdatos.criterio.value=='profe') document.fdatos.valor.disabled=true; else document.fdatos.valor.disabled=false">
+ <select name="criterio" id="criterio" onchange="if (document.fdatos.criterio.value=='duplic' || document.fdatos.criterio.value=='profe' || document.fdatos.criterio.value=='norepo') document.fdatos.valor.disabled=true; else document.fdatos.valor.disabled=false">
<option value="nombre"> <?php echo $TbMsg["SEARCH_NAME"] ?> </option>
<option value="ip"> <?php echo $TbMsg["SEARCH_IP"] ?> </option>
<option value="mac"> <?php echo $TbMsg["SEARCH_MAC"] ?> </option>
<option value="duplic"> <?php echo $TbMsg["SEARCH_DUPLICATES"] ?> </option>
<option value="profe"> <?php echo $TbMsg["SEARCH_PROFESSOR"] ?> </option>
+ <option value="norepo"> <?php echo $TbMsg["SEARCH_NOREPO"] ?> </option>
</select>
<input type="text" name="valor" id="valor" size="20" />
<div align="center">