-
Notifications
You must be signed in to change notification settings - Fork 3
/
administracion.php
executable file
·68 lines (67 loc) · 1.76 KB
/
administracion.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
<?php
include('session.php');
include("head.html");
include("menu.php");
require_once('clases/Articulo.php');
require_once('clases/Factura.php');
include('libreria.php');
include('db/searchs.php');
conectarDB();
$facturas = buscarFacturasPorDiaSinAnular(DATE('Y-m-d'));
$sizef = count($facturas);
$cantidadA = 0;
$total = 0;
for($i=0; $i< $sizef; $i++){
$artis = buscarArticulosPorCodigoFactura($facturas[$i]->getCodigo());
$cantidadA+= count($artis);
for($j=0; $j < count($artis); $j++){
$total += $artis[$j]->getCantidad() * $artis[$j]->getPrecio();
}
}
$articulos=buscarArticulosPorCantidad(5);
$size= count($articulos);
?>
<h2>Administracion</h2>
<?php if($size == 0): ?>
<p class="detalles">No hay articulos agotados</p>
<?php else: ?>
<p class="detalles">Articulos Agotados</p>
<br />
<table>
<tr class="first">
<td>Restan </td>
<td>Nombre </td>
<td>Descripcion </td>
<td>Precio Unitario Bsf</td>
</tr>
<?php for($i=0;$i<$size;$i++):?>
<tr>
<td><?php echo $articulos[$i]->getCantidad(); ?></td>
<td><?php echo $articulos[$i]->getNombre(); ?></td>
<td><?php echo $articulos[$i]->getDescripcion(); ?></td>
<td><?php echo $articulos[$i]->getPrecio(); ?></td>
</tr>
<?php endfor;?>
</table>
<?php endif ?>
<br />
Produccion del Día
<br />
<br />
<table>
<tr class="first">
<td>Cantidad de Articulos Vendidos</td>
<td>Cantidad de Ventas </td>
<td>Monto Total de Venta</td>
</tr>
<tr>
<td><?php echo $cantidadA;?></td>
<td><?php echo $sizef;?></td>
<td><?php echo $total;?></td>
</tr>
</table>
</div>
<?php
include("menuAdministracion.php");
include("foot.html");
?>