-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcrearPresupuestoShow.php
executable file
·79 lines (78 loc) · 3.13 KB
/
crearPresupuestoShow.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
<?php
include('session.php');
include('head.html');
include('menu.php');
?>
<script type="text/javascript" src="js/validacion.js"></script>
<h2>Presupuesto</h2>
<div id="factura">
<div id="fecha" style="text-align:right;">
<label for="fecha" class="bold">Fecha: </label><label for="fecha_texto">
<?php echo @date("d-m-Y"); ?></label><br />
</div>
<fieldset id="factura" >
<legend align="center">Datos del Cliente</legend>
<br />
<label for="cedula" class="bold">Cedula: </label><label
for="cedula_texto"><?php echo $cliente->getCedula();?></label>
<label for="nombre" class="bold">Nombre: </label><label for="nombre_texto">
<?php echo $cliente->getNombre();?></label>
<br /><br />
<label for="direccion" class="bold">Direccion: </label><label for="direccion_texto">
<?php echo $cliente->getDireccion();?></label>
<br /><br />
<label for="correo" class="bold">Correo Electronico: </label><label for="correo_text">
<?php echo $cliente->getCorreo();?></label>
<label for="telefono" class="bold">Telefono: </label><label for="telefono_texto">
<?php echo $cliente->getTelefono();?></label>
<br /><br />
</fieldset>
<fieldset>
<legend>Datos del Pedido</legend>
<br />
<label for="productos">Productos</label>
<br />
<table>
<tr class="first">
<td>Cantidad </td>
<td>Nombre </td>
<td align="center">Precio Unitario Bsf</td>
<td align="right" >Total Bsf</td>
</tr>
<?php $total=0;?>
<?php for($j=0;$j<$k;$j++): ?>
<tr>
<td><?php echo $cantidad[$j]; ?></td>
<td><?php echo $articulos[$j]->getNombre();?> </td>
<td align="center"><?php echo $articulos[$j]->getPrecio();?></td>
<td align="right"><?php echo ($articulos[$j]->getPrecio()*$cantidad[$j]);?></td>
<?php $total+=($articulos[$j]->getPrecio()*$cantidad[$j]);?>
</tr>
<?php endfor; ?>
</table>
<table align="right" style="width:30%;">
<tr>
<td class="bold">Total</td>
<td align="right"><?php echo $total;?></td>
</tr>
</table>
<br />
<br />
<label for="detalles" class="bold">Detalles de Diseño y Produccion </label>
<br />
<label for="detalles_texto"><?php echo $presupuesto->getDetalles();?></label>
<br />
<br />
<input type="button" value="Imprimir" onclick="ir('imprimirPresupuesto.php?Codigo=<?php echo $codigo;?>');" /></a>
<input type="button" value="Convertir en Factura" /></a>
<input type="button" value="Salir" onclick="ir('facturacion.php');" />
</fieldset>
</form>
</div>
</div>
<?php
include('menuFacturacion.php');
include('foot.html');
?>