-
Notifications
You must be signed in to change notification settings - Fork 0
/
carrito_poo.php
197 lines (166 loc) · 5.79 KB
/
carrito_poo.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
<?php
date_default_timezone_set('America/Argentina/Buenos_Aires');
class Cliente {
private $dni;
private $nombre;
private $correo;
private $telefono;
private $descuento;
public function getDNI() { return $this->dni; }
public function setDNI($valor) { $this->dni = $valor; }
public function getNombre() { return $this->nombre; }
public function setNombre($valor) { $this->nombre = $valor; }
public function getCorreo() { return $this->correo; }
public function setCorreo($valor) { $this->correo = $valor; }
public function getTelefono() { return $this->telefono; }
public function setTelefono($valor) { $this->telefono = $valor; }
public function getDescuento() { return $this->descuento; }
public function setDescuento($valor) { $this->descuento = $valor; }
public function __construct() {
$this->descuento = 0;
}
public function imprimir() {
echo "Nombre: " . $this->nombre . "<br>";
echo "DNI: " . $this->dni . "<br>";
echo "Correo: " . $this->correo . "<br>";
echo "Teléfono: " . $this->telefono . "<br>";
echo "Descuento: " . $this->descuento . "%<br>";
echo "<br>";
}
}
class Producto {
private $cod;
private $nombre;
private $precio;
private $descripcion;
private $iva;
public function getCod() { return $this->cod; }
public function setCod($valor) { $this->cod = $valor; }
public function getNombre() { return $this->nombre; }
public function setNombre($valor) { $this->nombre = $valor; }
public function getPrecio() { return $this->precio; }
public function setPrecio($valor) { $this->precio = $valor; }
public function getDescripcion() { return $this->descripcion; }
public function setDescripcion($valor) { $this->descripcion = $valor; }
public function getIVA() { return $this->iva; }
public function setIVA($valor) { $this->iva = $valor; }
public function __construct($cod) {
$this->cod = $cod;
$this->precio = 0;
$this->iva = 0;
}
public function calcularPrecioConIva() {
return $this->precio * (1 + $this->iva / 100);
}
public function imprimir() {
echo "COD: " . $this->cod . "<br>";
echo "Producto: " . $this->nombre . "<br>";
echo "Descripcion: " . $this->descripcion . "<br>";
echo "Precio (sin IVA): $" . $this->precio . "<br>";
echo "Precio + IVA (" . $this->iva . "%): $" . $this->calcularPrecioConIva() . "<br>";
echo "<br>";
}
}
class Carrito {
private $cliente;
private $aProductos;
private $subtotal;
private $total;
public function __construct($cliente) {
$this->cliente = $cliente;
$this->aProductos = [];
$this->subtotal = 0;
$this->total = 0;
}
public function cargarProducto($producto) {
$this->aProductos[] = $producto;
$this->subtotal += $producto->getPrecio();
$this->total += $producto->calcularPrecioConIva();
}
public function calcularTotalConDescuento() {
return $this->total * (1 - $this->cliente->getDescuento());
}
public function imprimirTicket() {
?>
<tr>
<th scope="row">Fecha</th>
<td><?= date("d/m/Y H:i:s") ?></td>
</tr>
<tr>
<th scope="row">DNI</th>
<td><?= $this->cliente->getDNI() ?></td>
</tr>
<tr>
<th scope="row">Nombre</th>
<td><?= $this->cliente->getNombre() ?></td>
</tr>
<tr>
<th scope="col" colspan="2">Productos:</th>
</tr>
<?php foreach ($this->aProductos as $prod): ?>
<tr>
<td><?= $prod->getNombre() ?></td>
<td>$<?= number_format($prod->getPrecio(), 2, ",", ".") ?></td>
</tr>
<?php endforeach; ?>
<tr>
<th scope="row">Subtotal s/IVA:</th>
<td>$<?= number_format($this->subtotal, 2, ",", ".") ?></td>
</tr>
<tr>
<th scope="row">TOTAL:</th>
<td>$<?= number_format($this->calcularTotalConDescuento(), 2, ",", ".") ?></td>
</tr>
<?php
}
}
//Programa
$cliente1 = new Cliente();
$cliente1->setDni("34765456");
$cliente1->setNombre("Bernabé");
$cliente1->setCorreo("bernabe@gmail.com");
$cliente1->setTelefono("+541188598686");
$cliente1->setDescuento(0.1);
$producto1 = new Producto("AB8767");
$producto1->setNombre("Notebook 15\" HP");
$producto1->setDescripcion("Esta es una computadora HP");
$producto1->setPrecio(30800);
$producto1->setIva(10.5);
$producto2 = new Producto("QWR579");
$producto2->setNombre("Heladera Whirlpool");
$producto2->setDescripcion("Esta es una heladera no frost");
$producto2->setPrecio(76000);
$producto2->setIva(21);
$carrito = new Carrito($cliente1);
$carrito->cargarProducto($producto1);
$carrito->cargarProducto($producto2);
// $cliente1->imprimir();
// $producto1->imprimir();
// $producto2->imprimir();
// print_r($carrito);
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carrito</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" integrity="sha256-PI8n5gCcz9cQqQXm3PEtDuPG8qx9oFsFctPg0S5zb8g=" crossorigin="anonymous">
</head>
<body>
<main class="container mt-3">
<div class="row">
<div class="col-md-5">
<table class="table border">
<thead>
<th scope="col" colspan="2" class="text-center">ECO MARKET</th>
</thead>
<tbody>
<?php $carrito->imprimirTicket(); ?>
</tbody>
</table>
</div>
</div>
</main>
</body>
</html>