-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
198 lines (185 loc) · 7.06 KB
/
index.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<?php
/*-------------------------
Autor: Obed Alvarado
Web: obedalvarado.pw
Mail: [email protected]
---------------------------*/
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Cotizador de Productos Online</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row-fluid">
<div class="col-md-12">
<h2><span class="glyphicon glyphicon-edit"></span> Nueva Cotización</h2>
<hr>
<form class="form-horizontal" role="form" id="datos_cotizacion">
<div class="form-group row">
<label for="atencion" class="col-md-1 control-label">Atención:</label>
<div class="col-md-3">
<input type="text" class="form-control" id="atencion" placeholder="Atención" required>
</div>
<label for="tel1" class="col-md-1 control-label">Teléfono:</label>
<div class="col-md-2">
<input type="text" class="form-control" id="tel1" placeholder="Teléfono" required>
</div>
</div>
<div class="form-group row">
<label for="empresa" class="col-md-1 control-label">Empresa:</label>
<div class="col-md-3">
<input type="text" class="form-control" id="empresa" placeholder="Nombre de la empresa">
</div>
<label for="tel2" class="col-md-1 control-label">Teléfono:</label>
<div class="col-md-2">
<input type="text" class="form-control" id="tel2" placeholder="Teléfono empresa">
</div>
<label for="email" class="col-md-1 control-label">Email:</label>
<div class="col-md-3">
<input type="email" class="form-control" id="email" placeholder="Email">
</div>
</div>
<div class="col-md-12">
<div class="pull-right">
<button type="button" class="btn btn-info" data-toggle="modal" data-target="#myModal">
<span class="glyphicon glyphicon-plus"></span> Agregar productos
</button>
<button type="submit" class="btn btn-default">
<span class="glyphicon glyphicon-print"></span> Imprimir
</button>
</div>
</div>
</form>
<br><br>
<div id="resultados" class='col-md-12'></div><!-- Carga los datos ajax -->
<!-- Modal -->
<div class="modal fade bs-example-modal-lg" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Buscar productos</h4>
</div>
<div class="modal-body">
<form class="form-horizontal">
<div class="form-group">
<div class="col-sm-6">
<input type="text" class="form-control" id="q" placeholder="Buscar productos" onkeyup="load(1)">
</div>
<button type="button" class="btn btn-default" onclick="load(1)"><span class='glyphicon glyphicon-search'></span> Buscar</button>
</div>
</form>
<div id="loader" style="position: absolute; text-align: center; top: 55px; width: 100%;display:none;"></div><!-- Carga gif animado -->
<div class="outer_div" ></div><!-- Datos ajax Final -->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/VentanaCentrada.js"></script>
<script>
$(document).ready(function(){
load(1);
});
function load(page){
var q= $("#q").val();
$("#loader").fadeIn('slow');
$.ajax({
url:'./ajax/productos_cotizacion.php?action=ajax&page='+page+'&q='+q,
beforeSend: function(objeto){
$('#loader').html('<img src="./img/ajax-loader.gif"> Cargando...');
},
success:function(data){
$(".outer_div").html(data).fadeIn('slow');
$('#loader').html('');
}
})
}
</script>
<script>
function agregar (id)
{
var precio_venta=document.getElementById('precio_venta_'+id).value;
var cantidad=document.getElementById('cantidad_'+id).value;
//Inicia validacion
if (isNaN(cantidad))
{
alert('Esto no es un numero');
document.getElementById('cantidad_'+id).focus();
return false;
}
if (isNaN(precio_venta))
{
alert('Esto no es un numero');
document.getElementById('precio_venta_'+id).focus();
return false;
}
//Fin validacion
$.ajax({
type: "POST",
url: "./ajax/agregar_cotizador.php",
data: "id="+id+"&precio_venta="+precio_venta+"&cantidad="+cantidad,
beforeSend: function(objeto){
$("#resultados").html("Mensaje: Cargando...");
},
success: function(datos){
$("#resultados").html(datos);
}
});
}
function eliminar (id)
{
$.ajax({
type: "GET",
url: "./ajax/agregar_cotizador.php",
data: "id="+id,
beforeSend: function(objeto){
$("#resultados").html("Mensaje: Cargando...");
},
success: function(datos){
$("#resultados").html(datos);
}
});
}
$("#datos_cotizacion").submit(function(){
var atencion = $("#atencion").val();
var tel1 = $("#tel1").val();
var empresa = $("#empresa").val();
var tel2 = $("#tel2").val();
var email = $("#email").val();
var condiciones = $("#condiciones").val();
var validez = $("#validez").val();
var entrega = $("#entrega").val();
VentanaCentrada('./pdf/documentos/cotizacion_pdf.php?atencion='+atencion+'&tel1='+tel1+'&empresa='+empresa+'&tel2='+tel2+'&email='+email+'&condiciones='+condiciones+'&validez='+validez+'&entrega='+entrega,'Cotizacion','','1024','768','true');
});
</script>
</body>
</html>