-
Notifications
You must be signed in to change notification settings - Fork 3
/
añadirEmpleadoExecute.php
51 lines (47 loc) · 1.24 KB
/
añadirEmpleadoExecute.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
<head>
<meta http-equiv="Content-Language" content="Español" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Estudio Creativo Mérida</title>
</head>
<?php
include('libreria.php');
include('db/inserts.php');
include('db/searchs.php');
require_once('clases/Vendedor.php');
conectarDB();
$vendedor= new Vendedor();
$vendedor->updateDatos($_REQUEST);
if ($vendedor->getNombre()=='') {
throw new Exception('Datos del Empleado Vacios');
}
if ($_REQUEST['Clave'] != $_REQUEST['ClaveConfirmacion']){
?>
<script type="text/javascript">
alert('Las Contraseñas no son iguales');
location.href="añadirEmpleado.php";
</script>
<?php
}
try{
$vendedorExistente = new Vendedor();
$vendedorExistente = buscarVendedorPorCedula($_REQUEST['Cedula']);
if($vendedorExistente->getCedula() == ''){
insertarVendedor($vendedor);
}
else{
?>
<script type="text/javascript">
alert('Este empleado ya existe');
location.href='añadirEmpleado.php';
</script>
<?php
}
}
catch(Exception $e){
echo 'Excepción capturada: ', $e->getMessage(), "\n";
}
?>
<script type="text/javascript">
alert('Ya se Registro con Exito el Empleado');
location.href='administracion.php';
</script>