-
Notifications
You must be signed in to change notification settings - Fork 0
/
promociones.php
94 lines (91 loc) · 4.18 KB
/
promociones.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/estilos.css">
<link rel="icon" href="./favicon.ico">
<title>Promociones</title>
</head>
<body>
<?php
$enlaceActivo = 'promociones.php';
$esTemaOscuro = TRUE;
require_once "./commons/header.php";
?>
<div class="container">
<div class="container-actions">
<a class="btn-link btn-link--primary" href="./formpromocion.php">Crear promoción</a>
</div>
<div class="container-promos">
<?php
include('database-init.php');
$promociones = $db->getPromos();
if ($promociones) :
?>
<table class="table-promos">
<thead>
<tr>
<th>#</th>
<th>Nombre promoción</th>
<th>Descuento (%)</th>
<th>Inicio de la promo</th>
<th>Fin de la promo</th>
<th>Habitaciones</th>
</tr>
</thead>
<tbody>
<?php
foreach ($promociones as $indice => $promocion) :
?>
<tr>
<td><?= $indice + 1 ?></td>
<td><?= $promocion['nombre'] ?></td>
<td><?= $promocion['porcentaje_descuento'] ?></td>
<td><?= $promocion['fecha_inicio'] ?></td>
<td><?= $promocion['fecha_fin'] ?></td>
<td>
<?php
if ($promocion['habitaciones']) :
?>
<ul class="table-promos__list">
<?php
foreach ($promocion['habitaciones'] as $habitacion) :
?>
<li class="table-promos__list-item">
<a class="table-promos__link" href="./reservacionpromo.php?habitacionid=<?= $habitacion['id'] ?>&promocionid=<?= $promocion['id'] ?>">
Habitación #<?= $habitacion['numero'] ?>
</a>
<span class="text-small">
<?= ucfirst($habitacion['tipo_habitacion']) ?>,
<strong><?= round((1 - ($promocion['porcentaje_descuento'] / 100)) * $habitacion['precio']) . ".00" ?></strong>
<span class="strikethrough"><?= $habitacion['precio'] ?></span>
<?= $habitacion['bano_privado'] ? ', baño privado' : '' ?>
</span>
</li>
<?php
endforeach;
?>
</ul>
<?php
else :
?>
<p>Ya no hay habitaciones con promociones</p>
<?php
endif;
?>
</td>
</tr>
<?php
endforeach;
?>
</tbody>
</table>
<?php
endif;
?>
</div>
</div>
</body>
</html>