-
Notifications
You must be signed in to change notification settings - Fork 3
/
listarFactura.php
executable file
·60 lines (60 loc) · 2.03 KB
/
listarFactura.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
<?php
include('session.php');
include('head.html');
include('menu.php');
$size= count($facturas);
if($size==0){
?>
<script type="text/javascript">
alert('La Busqueda es Vacia para Listar, Elija uno de los Campos para Realizar la Busqueda de la Factura');
location.href='buscarFactura.php';
</script>
<?php
}
$n_div = countPage($size);
?>
<script type="text/javascript" src="js/validacion.js"></script>
<h2>Lista de Facturas</h2>
<br />
<?php for($i=0;$i<$n_div;$i++):?>
<div id="<?php echo $i; ?>" style="<?php if($i!=0){ echo 'display:none;';} ?>" >
<table>
<tr class="first">
<td>Codigo </td>
<td>Cedula Cliente </td>
<td>Cedula Vendedor </td>
<td>Fecha Registro </td>
<td>Fecha Entrega </td>
<td>Estatus </td>
<td>Accion </td>
</tr>
<?php for($j=($i*10);$j<($i+1)*10;$j++):?>
<tr>
<td><?php echo $facturas[$j]->getCodigo(); ?></td>
<td><?php echo $facturas[$j]->getCedulaCliente(); ?></td>
<td><?php echo $facturas[$j]->getCedulaVendedor(); ?></td>
<td><?php echo fecha_es2in($facturas[$j]->getFechaRegistro()); ?></td>
<td><?php echo fecha_es2in($facturas[$j]->getFechaEntrega()); ?></td>
<td><?php echo $facturas[$j]->getEstado(); ?></td>
<td><input type="button" value="Ver"
onclick="ir('verFactura.php?codigo=<?php echo $facturas[$j]->getCodigo();?>');" /></a></td>
</tr>
<?php if($j+1>=$size){break;}?>
<?php endfor;?>
</table>
<?php if($i+1<$n_div):?><input type="button" name="Siguiente" value="Siguiente"
onclick="document.getElementById('<?php echo $i+1; ?>').style.display='inline';
document.getElementById('<?php echo $i; ?>').style.display='none';" />
<?php endif;?>
<?php if($i!=0):?><input type="button" name="Atras" value="Atras"
onclick="document.getElementById('<?php echo $i-1; ?>').style.display='inline';
document.getElementById('<?php echo $i; ?>').style.display='none';" />
<?php endif;?>
</div>
<?php endfor;?>
</div>
<?php
include("menuFacturacion.php");
include("foot.html");
?>
?>