-
Notifications
You must be signed in to change notification settings - Fork 0
/
generar.php
161 lines (155 loc) · 4.95 KB
/
generar.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!doctype html>
<html>
<head>
<title>Prestamos</title>
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<?php
session_start();
if (!isset($_SESSION['usuario'])) {
header ('location:login.php');
}
require_once("conexion.php");
require_once("consultas.php");
$base=new clsConexion;
$conexion=$base->conexion();
$consultas= new clsConsultas;
?>
</head>
<body class="fondo">
<?php
include ("modulo_encabezado.php");
?>
<section class="generarCom bordes-bot tam contenido">
<?php
if (isset($_GET['generado']))
echo "<p>PRESTAMO GENRADO</p>";
?>
<form action=<?php echo"\"".htmlentities($_SERVER['PHP_SELF'])."\"";?> method="post" name="generarPrestamo">
<table>
<tr> <th colspan="2"> DATOS DEL PRESTAMO</th></tr>
<tr>
<td>
N° DE PRESTAMO:
</td>
<td>
<?php
$numero=$consultas->nuevoNumPrestamo($conexion);
echo "<input type='text' name='numPrestamo' value='$numero' disabled>";
?>
</td>
</tr>
<tr>
<td>FECHA:</td>
<td><input type="date" name="fechaPrestamo" autocomplete="off" required></td>
</tr>
<tr>
<td>PRESTADOR:</td>
<td><input type="text" name="prestador" required></td>
</tr>
<tr>
<td>CANTIDAD EN NUMERO:</td>
<td>
<input type="number" name="cantNumero" autocomplete="off" required>
</td>
</tr>
<tr>
<td>CANTIDAD EN LETRA:</td>
<td><input type="text" name="cantLetra" autocomplete="off" required></td>
</tr>
<tr>
<td>DURACION: </td>
<td><input type="num" name="duracion" autocomplete="off" required></td>
</tr>
<tr>
<td>CUOTAS:</td>
<td> <input type="number" name="cuotas" required></td>
</tr>
</table>
<table>
<tr> <th colspan="2"> DATOS DEL CLIENTE</th></tr>
<tr>
<td>NOMBRE:</td>
<td>
<select name="cliente" required onchange="cambiarDni()" id="idCliente">
<option> -
<?php
$buscar='%_%';
$resultado=$consultas->buscarClientes($buscar,$base->conexion());
if ($resultado!=false) {
$resultado->bind_result($id,$nombre,$dni,$fecha,$dir,$tel);
while ($resultado->fetch()){
$valor['$id']=$dni;
echo "<option value='$id'>" .$nombre;
}
}
?>
</select>
</td>
</tr>
<tr>
<td>DNI:</td>
<td><input type="text" name="dniCliente" autocomplete="off" disabled id="dni"></td>
</tr>
</table>
<div> <input type="submit" name="generar" value="GENERAR"></div>
</form>
<?php
if (isset($_POST['generar'])){
$idCliente=$_POST['cliente'];
$puede=true;
$fecha=$_POST['fechaPrestamo'];
echo "sa";
if ($resultado=$consultas->tienePrestamo($idCliente,$conexion))
{
require_once("funciones.php");
$funciones= new clsFunciones;
$fila=$resultado->fetch_assoc();
// mes y dia del prestamo a generar
$mes=$fecha[5].$fecha[6];
$anio=$fecha[2].$fecha[3];
//mes y dia del prestamo antiguo
$fechaantigua=$fila['FECHA'];
$anioTermina= $fechaantigua[2].$fechaantigua[3];
$mesGenero=$fechaantigua[5].$fechaantigua[6];
$mesTermina=$funciones->numMes($fila['FECHA'],$fila['DURACION']);
echo "temina ". $anioTermina."<br> ";
if ($mesGenero>$mesTermina){
$anioTermina++;
}
echo "temina ". $anioTermina."-".$mesTermina ." fecha ".$anio. "-". $mes;
if ( $anioTermina>$anio or ($mesTermina>$mes and $anio==$anioTermina) ){
echo "<script> alert('El cliente tiene un prestamo activo que se termina en ".$funciones->mes($funciones->numMes($fila['FECHA'],$fila['DUARACION'])).". de por terminado este prestamo para hacer el siguiente o genere un prestamo con fecha del mes en que termina este prestamo') </script>";
$puede=false;
}
}
if ($puede=true){
$prestador=$_POST['prestador'];
$numero=$consultas->nuevoNumPrestamo($conexion);
//$idCliente=$consultas->buscarIdClientes($_POST['cliente'],$conexion);
$idCliente=$_POST['cliente'];
$montoN=$_POST['cantNumero'];
$montoL=$_POST['cantLetra'];
$duracion=$_POST['duracion'];
$cuotas=$_POST['cuotas'];
$estado='1';
echo "<p>sia<p>";
if ($consultas->generarPrestamo($numero,$fecha,$prestador,$idCliente,$montoN,$montoL,$duracion,$cuotas,
$estado,$conexion)){
header("location:generar.php?generado=s/",300);
}
else{
echo "<p> No se pudo generar eL prestamo, intentelo de nuevo </p>";
}
}
}
?>
</section>
</body>
<script type="text/javascript">
function cambiarDni(){
var id = document.getElementById("idCliente");
var valor = id.options[id.selectedIndex].value;
document.getElementById(“dni”).value = valor;
}
</script>
</html>