-
Notifications
You must be signed in to change notification settings - Fork 0
/
pedido.php
219 lines (200 loc) · 6.89 KB
/
pedido.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?php session_start();
$id_usuario = $_SESSION['id_usuario'];
?>
<?php
if ((!isset($_SESSION['id_usuario'])) || ($_SESSION['id_usuario']=='0'))
{
?>
<script language="javascript">
alert("Usuario no Logueado en el sistema.");
window.location.href="index.html";
</script>
<?php
}
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Microspeed</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/css/materialize.min.css">
<link rel="stylesheet" href="./style.css">
<style>
input:not([type]), input[type=text]:not(.browser-default), input[type=password]:not(.browser-default), input[type=email]:not(.browser-default), input[type=url]:not(.browser-default), input[type=time]:not(.browser-default), input[type=date]:not(.browser-default), input[type=datetime]:not(.browser-default), input[type=datetime-local]:not(.browser-default), input[type=tel]:not(.browser-default), input[type=number]:not(.browser-default), input[type=search]:not(.browser-default), textarea.materialize-textarea{
color:white;
}
html {
background: black;
}
body {
justify-content: center;
width: 800px;
margin-left: auto;
margin-right: auto;
padding: 0%;
}
.page-footer .footer-copyright{
background: white;
}
nav {
background: white;
}
nav ul a {
color: black;
}
#mapas {
margin-left: 20%;
}
#reclamo{
width: 200px !important;
margin: 0 !important;
}
.btn:hover, .btn-large:hover, .btn-small:hover{
width: 510px;
}
.btn, .btn-large, .btn-small{
width: 510px;
}
header {
background: white;
color: black;
padding: 0 10px 0 10px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 100px;
}
.page-footer {
background: white;
}
table{
color:white;
}
footer {
background: white;
margin-top: 100px;
height: 250px;
}
</style>
</head>
<body>
<header>
<nav>
<div id="navbar" class="nav-wrapper">
<img height="50px" src="./banner.png" alt="banner">
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a class="boton" href="mapas.php">Inicio</a></li>
<li><a class="boton" href="mensajeria.php">Ver Pedidos</a></li>
</ul>
</div>
</nav>
</header>
<section>
<form method="POST" action="pedido_carga.php">
<p>
<label for="nombre">Nombre:</label>
<input type="text" name="nombre" id="nombre" />
<br />
<label for="direccion_origen">Dirección de Origen</label>
<input type="text" name="direccion_origen" id="direccion_origen" />
<br />
<label for="direccion_destino">Dirección de Destino</label>
<input type="text" name="direccion_destino" id="direccion_destino" />
<br />
<label for="peso">Peso</label>
<input type="text" name="peso" id="peso" />
<br />
<label for="altura">Altura</label>
<input type="text" name="altura" id="altura" />
<br />
<label for="ancho">Ancho</label>
<input type="text" name="ancho" id="ancho" />
<br />
<label for="ancho">Precio ofrecido</label>
<input type="text" name="precio_ofrecido" id="precio_ofrecido" />
<br />
<label for="ancho">Descripción</label>
<input type="text" name="pedido" id="pedido" />
<input type="hidden" name="id_usuario" id="id_usuario" value="<?php echo $id_usuario?>">
</p>
<section id="boton">
<button type="submit" class="waves-effect waves-light btn"><strong>Click Aqui</strong> para hacer un Pedido</button>
</section>
</form>
<br><br><br><br>
<section>
<?php
include_once("class/clsUsuarios.php");
$Usuario = new clsUsuarios();
$Usuario->id_usuario = $_SESSION['id_usuario'];
$pedidos = $Usuario->PedidosAceptados()
?>
<p>
<table>
<tr>
<th scope="col">ID Pedido</th>
<th scope="col">Nombre</th>
<th scope="col">Direccion Origen</th>
<th scope="col">Direccion Destino</th>
<th scope="col">Pedido</th>
<th scope="col">Peso</th>
<th scope="col">Altura</th>
<th scope="col">Ancho</th>
<th scope="col">Precio Ofrecido</th>
<th scope="col">Mensajero</th>
<th scope="col"></th>
</tr>
<?php foreach ($pedidos as $pedido) {
# code...
$id_pedido = $pedido['id_pedido'];
?>
<tr>
<td><?php echo $pedido['id_pedido'] ?></td>
<td><?php echo $pedido['nombre'] ?></td>
<td><?php echo $pedido['direccion_origen'] ?></td>
<td><?php echo $pedido['direccion_destino'] ?></td>
<td><?php echo $pedido['pedido'] ?></td>
<td><?php echo $pedido['peso'] ?></td>
<td><?php echo $pedido['altura'] ?></td>
<td><?php echo $pedido['ancho'] ?></td>
<td><?php echo $pedido['precio_ofrecido'] ?></td>
<td><?php echo $pedido['mensajero'] ?></td>
<td><button type="button" onclick="window.location.href='confirmar.php?p=<?php echo $id_pedido;?>'" class="waves-effect waves-light btn-small"><strong>Confirmar Entrega</strong></button></td>
</tr>
<?php } ?>
</table>
</section>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="black-text">MicroSpeed</h5>
<p class="black-text text-lighten-4">Empresa encargada de deliveries por todo el pais tanto entregas como retiros</p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="black-text">Redes Sociales</h5>
<ul>
<li><a class="black-text text-lighten-3" target="_blank" href="https://twitter.com/MicroSpeed">Twitter</a></li>
<li><a class="black-text text-lighten-3" target="_blank" href="https://www.facebook.com/MicroSpeed">Facebook</a></li>
<li><a class="black-text text-lighten-3" target="_blank" href="https://www.instagram.com/MicroSpeed">Instagram</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<h6 style="color:black;">© 2018 Copyright</h6>
<button class="btn waves-effect" id="reclamo">Reclamos</button>
<a class="black-text text-lighten-4 right" href="login.php">Cerrar Sesion</a>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/js/materialize.min.js"></script>
<script>
var reclamo = document.getElementById("reclamo")
reclamo.addEventListener('click', function() {
alert("Para quejas y reclamos llamar a: (+54) 11 1234-5678")
})
</script>
</body>
</html>