-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcem.php
135 lines (135 loc) · 4.27 KB
/
cem.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
include('funciones.php');
include('datos.php');
function listado(){
encabezado('Listado de categorías de empleados');
boton("Nuevo","cem.php?accion=nuevo");
boton('Volver','geined.py?accion=sistema');
//cargar datos
$sql='SELECT * FROM cat_empleados';
$resultado = mysql_query($sql);
$i=0;
encabezado_tabla(array("Nº","Categoria","Acciones"));
while($row = mysql_fetch_array($resultado)){
fila_alterna($i);
$id = $row['id'];
celda($id);
celda($row['categoria']);
echo '<td>';
boton("Detalles","cem.php?accion=ver&id=$id");
boton("Editar","cem.php?accion=editar&id=$id");
boton("Borrar","cem.php?accion=confirmar&id=$id");
echo '</td>';
$i = $i + 1;
}
fin_tabla();
boton('Volver','geined.py?accion=sistema');
fin();
}
function nuevo(){
autorizacion(2);
encabezado('Nueva categoría de empleado');
encabezado_tabla(array("Campo","Valor"));
formulario("cem.php?accion=agregar");
input_texto("Categoria:","categoria","");
botones();
fin_formulario();
fin_tabla();
boton('Volver','cem.php?accion=listado');
}
function agregar(){
$sql1 = 'SELECT * FROM cat_empleados WHERE categoria="'.$_POST['categoria'].'"';
$res1 = mysql_query($sql1);
if (mysql_num_rows($res1)==0){
$sql = 'INSERT INTO cat_empleados SET categoria = "' . $_POST['categoria'].'"';
$result = mysql_query($sql) or die('Consulta inválida: ' . mysql_error());
header( 'Location: cem.php?accion=listado' ) ;
}
else {
duplicado('cem.php?accion=listado');
}
}
function editar(){
autorizacion(2);
encabezado('Edición de categoría de empleado');
encabezado_tabla(array("Campo","Valor"));
formulario("cem.php?accion=actualizar");
$sql='SELECT * FROM cat_empleados WHERE id="' . $_GET['id'].'"';
//cargar datos
$resultado = mysql_query($sql);
$fila=mysql_fetch_array($resultado);
campo_oculto("id",$_GET['id']);
input_texto("Categoría:","categoria",$fila['categoria']);
botones();
fin_formulario();
fin_tabla();
boton('Volver','cem.php?accion=listado');
}
function actualizar(){
$id = $_POST['id'];
$sql = 'UPDATE cat_empleados SET categoria= "' . $_POST['categoria'] .
'" WHERE id = "' . $_POST['id'] . '"';
$result = mysql_query($sql) or die('Invalid query: ' . mysql_error());
header( 'Location: cem.php?accion=listado' ) ;
}
function detalle(){
autorizacion(5);
encabezado('Detalles de categoría de empleado');
$sql1 = 'SELECT * FROM cat_empleados WHERE id = "' . $_GET['id'] . '"';
$res1 = mysql_query($sql1);
$fil1 = mysql_fetch_array($res1);
// cli_ver
echo '<h2>'.$fil1['categoria'].'</h2>';
encabezado_tabla(array("Nombre","CI","Direccion","Telefono","eMail","Ingreso","Notas","Acciones"));
$sql2 = 'SELECT * FROM empleados WHERE categoria_id="'.$_GET['id'].'"';
$res2 = mysql_query($sql2);
if ($res2 != 0){
for ($i=0;$i<mysql_num_rows($res2);$i++){
$fil2 = mysql_fetch_array($res2);
echo '<tr>';
Celda($fil2['nombre']);
Celda($fil2['ci']);
Celda($fil2['direccion']);
Celda($fil2['telefono']);
Celda($fil2['email']);
Celda($fil2['ingreso']);
Celda($fil2['notas']);
echo '<td>';
boton("Detalles",'emp_ver.php?id='.$fil['id']);
echo '</tr>';
}
fin_tabla();
}
boton('Volver','cem.php?accion=listado');
}
autorizacion(10);
if (!$_GET['accion']) $accion = 'listado';
else $accion=$_GET['accion'];
switch ($accion) {
case 'listado':
listado();
break;
case 'nuevo':
nuevo();
break;
case 'agregar':
agregar();
break;
case 'editar':
editar();
break;
case 'actualizar':
actualizar();
break;
case 'confirmar':
confirmar_borrar($_GET['id'],'cem.php');
break;
case 'eliminar':
autorizacion(2);
borrar('cat_empleados',$_POST['id'],'cem.php');
break;
case 'ver':
detalle();
break;
}
?>