28/01/2011, 15:13
|
| | Fecha de Ingreso: septiembre-2010
Mensajes: 7
Antigüedad: 14 años, 3 meses Puntos: 0 | |
Respuesta: No se cual puede ser el error ese es mi formulario
<?php
session_start();
if(isset($_SESSION['sig_dic']))
include("../diccionarios/$_SESSION[sig_dic]");
include("diccionario/$_SESSION[sig_dic]");
include("../conexiones/conexion.php");
include("../conexiones/seguridad.php");
include("../conf.php");
include("../funciones/auxiliares.php");
$auxiliares_class = new auxiliares ;
include_once("../funciones/nomina.php");
$objNomina = new nomina;
$pernomina= $_GET['idtercero'];
$totaldesc=$objNomina->calculasumadescuentos($pernomina);
$totaldev=$objNomina->calcularsumadevengos($pernomina);
$res=$objNomina->comprobantenomina($pernomina);
//print_r($res);exit;
$nombre=$res[1]['nom_ter'];
$cedula=$res[1]['identificacion'];
$fini=$res[1]['fecha_desde'];
$ffin=$res[1]['fecha_hasta'];
$con=$res[1]['idconcepto_nomina'];
$concep=$res[1]['concepto'];
$val=$res[1]['val'];
$valor=$res[1]['valor'];
$resul=$totaldev['totaldev'];
$descu=$totaldesc['totaldes'];
$horafec=$res[1]['fechahora'];
$hora=$res[1]['horas'];
//echo $horafec;exit;
//print_r ($res);
;
?>
<html>
<head>
</head>
<body>
<table width="1098" border="0">
<tr>
<th width="187" height="85" scope="col"><img src="images/logos_empresas/geo.jpg"></th>
<th width="304" scope="col">PRECOPERATIVA GEO<br>
NIT:900.150.101.7<br>
COMPROBANTE PAGO NOMINA<br></th>
<th width="593" scope="col">FECHA:<br>
PAGINA:<br>
USUARIO:<br></th>
</tr>
</table>
<br>
<table width="1101" border="0">
<tr>
<th width="83" height="32" scope="col"> </th>
<th width="234" scope="col"> </th>
<th width="217" scope="col">PERIODO: </th>
<th width="205" scope="col">F. INICIO: <?php echo $fini;?></th>
<th width="187" scope="col">F.FIN: <?php echo $ffin;?></th>
<th width="149" scope="col"></th>
</tr>
<tr>
<td height="76"> </td>
<td> </td>
<td><strong>EMPLEADO:</strong> <?php echo $nombre;?><br>
<br>
<strong>CEDULA:</strong> <?php echo $cedula;?>
<br>
<br>
</strong></td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><strong>CODIGO</strong></td>
<td><strong> CONCEPTO</strong></td>
<td><strong>CANTIDAD</strong></td>
<td><strong>DEVENGADO</strong></td>
<td><strong>DEDUCCCIONES</strong></td>
<td><strong>NETO RECIBIDO</strong></td>
</tr>
<?php
foreach ($res as $re) {
?>
<tr>
<td height="21" align="center"><?php echo $re['idconcepto_nomina'];?></td>
<td align="center"><?php echo $re['concepto'];?></td>
<td>
<?php
if ($re['fechahora']==1)
echo $re['horas'];
else
echo '1';
?>
</td>
<td>
<?php
if ($re['idtipo']==$GLOBALS['DEVENGO'])
echo $re['val'];
else
echo '0' ;
?>
</td>
<td>
<?php
if ($re['idtipo']==$GLOBALS['DESCUENTO'])
echo $re['val'];
else
echo '0' ;
?>
</td>
<td></td>
<td> </td>
</tr>
<tr>
</tr>
<?php
}
?>
<?php
$neto =$totaldev['totaldev'] - $totaldesc['totaldes'];
?>
<td height="39"><strong>Totales:</strong></td>
<td> </td>
<td> </td>
<td><?php echo $resul;?></td>
<td><?php echo $descu;?></td>
<td><?php echo $neto;?></td>
</tr>
<tr>
<td height="46"> </td>
<td>--------------------<br>
Firma y C.C. del empleado <br></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html> |