-
Notifications
You must be signed in to change notification settings - Fork 0
/
GestionaMenus.php
executable file
·62 lines (62 loc) · 2 KB
/
GestionaMenus.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
<?php
session_start();
if (isset($_SESSION['idusuario'])){
$idusuario=$_SESSION['idusuario'];
}
$FechaActual = date("d/m/Y");
?>
<script type="text/javascript" src="js/Validar.js"></script>
<script type="text/javascript">
function LlenaOpcionCombo3(xTipo){
$.post("LlenaCombo.php", { Tipo:xTipo }, function(data){
$('#'+xTipo).html(data);
});
}
</script>
<div id="marcoMenus">
<form name="GestionarMenus" id="GestionarMenus" method="Post" action="ActualizaMenus.php">
<fieldset class="ui-corner-all bordeForm">
<legend>Actualizar Menú del Comedor</legend>
<table width='100%'>
<tr><td colspan="2"> </td></tr>
<tr>
<td width="20%"><label for="IdMenu">Tipo de Menú</label></td>
<td width="80%">
<select id="Menu" name="IdMenu" title="Seleccione una Opción">
</select>
</td>
</tr>
<tr>
<td width="20%"><label for="FechaMenu">Fecha del Menú</td>
<td width="80%"><input type='text' id="FechaMenu" name="FechaMenu" maxlength="15" OnFocus="Selecciona(this);"></td>
<input type="hidden" name="TipoGestion" value="Ingresar">
</tr>
<tr>
<td width="20%"><label for="Descripcion">Descripción del Menú</label></td>
<td width="80%"><textarea rows="10" cols="60" id="Descripcion" name="Descripcion" OnFocus="Selecciona(this);">Detalle el Menú por contenido ...
1.xxxxxxx
2.xxxxxxx
</textarea></td>
</tr>
<tr>
<td width="20%"><label for="Sede">Sede</label></td>
<td width="80%">
<select id="Sede" name="Sede" title="Seleccione una Opción">
</select>
</td>
</tr>
<tr><td colspan="2"> </td></tr>
<tr>
<td align="right"><button id="GuardarM" type="submit"> Guardar </button></td>
<td><button id="CancelarM" type="reset"> Cancelar </button></td>
</tr>
</table>
</fieldset>
</form>
</div>
<script language='javascript'>
$(document).ready(function() {
LlenaOpcionCombo3("Menu");
LlenaOpcionCombo3("Sede");
});
</script>