public function eCuenta($usuario, $fecha1, $hora1, $nT, $basedatos) { include CONSTANT_PATH_CONFIGURACION . "/funciones.php"; if (!$_GET['nT']) { $_GET['nT'] = $_GET['nt']; } ?> <script language=javascript> function ventanaSecundaria4 (URL){ window.open(URL,"ventana4","width=800,height=300,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria2 (URL){ window.open(URL,"ventana2","width=300,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language="javascript" type="text/javascript"> //Validacion de campos de texto no vacios by Mauricio Escobar // //Iv�n Nieto P�rez //Este script y otros muchos pueden //descarse on-line de forma gratuita //en El C�digo: www.elcodigo.com //********************************************************************************* // Function que valida que un campo contenga un string y no solamente un " " // Es tipico que al validar un string se diga // if(campo == "") ? alert(Error) // Si el campo contiene " " entonces la validacion anterior no funciona //********************************************************************************* //busca caracteres que no sean espacio en blanco en una cadena function vacio(q) { for ( i = 0; i < q.length; i++ ) { if ( q.charAt(i) != " " ) { return true } } return false } //valida que el campo no este vacio y no tenga solo espacios en blanco function valida(F) { if( vacio(F.campo.value) == false ) { alert("Introduzca un cadena de texto.") return false } else { alert("OK") //cambiar la linea siguiente por return true para que ejecute la accion del formulario return true } } </script> <SCRIPT LANGUAGE="JavaScript"> function checkIt(evt) { evt = (evt) ? evt : window.event var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57)) { status = "Este campo s�lo acepta n�meros." return false } status = "" return true } </SCRIPT> <script type="text/javascript"> <!-- por carlitos. cualquier duda o pregunta, visita www.forosdelweb.com var ancho=100 var alto=100 var fin=300 var x=100 var y=100 function inicio() { ventana = window.open("cita.php", "_blank", "height=1,width=1,top=x,left=y,screenx=x,screeny=y"); abre(); } function abre() { if (ancho<=fin) { ventana.moveto(x,y); ventana.resizeto(ancho,alto); x+=5 y+=5 ancho+=15 alto+=15 timer= settimeout("abre()",1) } else { cleartimeout(timer) } } // --> </script> <?php //************************ $sSQL3 = "Select * From clientesInternos WHERE keyClientesInternos = '" . $_GET['nT'] . "' "; $result3 = mysql_db_query($basedatos, $sSQL3); $myrow3 = mysql_fetch_array($result3); $numeroE = $myrow3['numeroE']; $nCuenta = $myrow3['nCuenta']; $seguro = $myrow3['seguro']; ?> <?php if ($seguro) { $_GET['tipoCliente'] = 'aseguradora'; } else { $_GET['tipoCliente'] = 'particular'; } //*****************************Verificando caja abierta************************** $sSQLC = "Select * From aperturaCaja "; $resultC = mysql_db_query($basedatos, $sSQLC); $myrowC = mysql_fetch_array($resultC); if ($poliza = $myrowC['numeroPoliza']) { //*******************Comienzo la validaci�n***************** if ($_POST['pagar'] and $numeroE and $nCuenta) { $numeroConfirmacion = rand(); $q = "UPDATE clientesInternos set \r\nstatus='cerrada',\r\nstatusDeposito='pagado'\r\n\r\nWHERE numeroE = '" . $numeroE . "' and nCuenta='" . $nCuenta . "'"; mysql_db_query($basedatos, $q); echo mysql_error(); $sSQL341 = "Select * From catTTCaja WHERE codigoTT = 'PSExt'"; $result341 = mysql_db_query($basedatos, $sSQL341); $myrow341 = mysql_fetch_array($result341); $naturaleza = $myrow341['naturaleza']; $tipoTransaccion = 'PSExt'; if ($naturaleza == 'Abono') { $naturaleza = 'A'; } else { if ($naturaleza == 'Cargo') { $naturaleza = 'C'; } else { if ($naturaleza == 'Credito') { $naturaleza = 'A'; } } } if ($_GET['tipoCliente'] == 'aseguradora') { $statusTraslado = 'trasladado'; $q1 = "UPDATE cargosCuentaPaciente set \r\nstatusTraslado='trasladado',\r\ntipoTransaccion='" . $_GET['tipoTransaccion'] . "',\r\nusuarioTraslado='" . $usuario . "',tipoCliente='" . $_GET['tipoCliente'] . "',\r\nnumPoliza='" . $poliza . "'\r\nWHERE status='cxc' and statusTraslado='standby'"; mysql_db_query($basedatos, $q1); echo mysql_error(); } else { if ($_GET['tipoCliente'] == 'particular') { $statusTraslado = 'trasladado'; $q1 = "UPDATE cargosCuentaPaciente set \r\nstatusTraslado='trasladado',\r\ntipoTransaccion='" . $_GET['tipoTransaccion'] . "',\r\nusuarioTraslado='" . $usuario . "',tipoCliente='" . $_GET['tipoCliente'] . "',\r\nnumPoliza='" . $poliza . "'\r\nWHERE status='particular' and statusTraslado='standby'"; mysql_db_query($basedatos, $q1); echo mysql_error(); } else { if ($_GET['tipoCliente'] == 'otros') { $statusTraslado = 'trasladado'; $q1 = "UPDATE cargosCuentaPaciente set \r\nstatusTraslado='trasladado',\r\ntipoTransaccion='" . $_GET['tipoTransaccion'] . "',\r\nusuarioTraslado='" . $usuario . "',tipoCliente='" . $_GET['tipoCliente'] . "',\r\nnumPoliza='" . $poliza . "'\r\nWHERE status='credito' and statusTraslado='standby'"; mysql_db_query($basedatos, $q1); echo mysql_error(); } } } $agrega = "INSERT INTO cargosCuentaPaciente (\r\nnumeroE,nCuenta,status,usuario,fecha1,cantidad,tipoTransaccion,codProcedimiento,hora1,\r\nnaturaleza,ejercicio,statusDeposito,numeroConfirmacion,almacen,usuarioTraslado,precioVenta,seguro,\r\nstatusTraslado,tipoCliente,tipoPaciente,numPoliza) values ('" . $numeroE . "','" . $nCuenta . "','transaccion',\r\n'" . $usuario . "','" . $fecha1 . "','1','" . $tipoTransaccion . "','" . $hora1 . "',\r\n'" . $hora1 . "','" . $naturaleza . "','" . $ID_EJERCICIOM . "','pagado','" . $numeroConfirmacion . "','" . $ALMACEN . "','" . $usuario . "',\r\n'" . $_GET['cantidadRecibida'] . "','" . $seguro . "','" . $statusTraslado . "','" . $_GET['tipoCliente'] . "','" . $tipoPaciente . "','" . $poliza . "'\r\n)"; mysql_db_query($basedatos, $agrega); echo mysql_error(); ?> <script> javascript:ventanaSecundaria6('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/imprimeCajaExternos.php?numeroE=<?php echo $nCliente5; ?> &nT=<?php echo $numeroCuenta; ?> &paciente=<?php echo $_POST['paciente']; ?> &orden=<?php echo $E; ?> &hora1=<?php echo $hora1; ?> '); </script> <?php } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title></title> <style type="text/css"> <!-- .style13 {color: #FFFFFF} .style11 {color: #FFFFFF; font-size: 10px; font-weight: bold; } .style7 {font-size: 9px} .Estilo24 {font-size: 10px} .style19 {color: #000000; font-weight: bold; } --> </style> </head> <style type="text/css"> <!-- .style12 {font-size: 10px} .style14 {font-size: 10px; color: #FFFFFF; } .style21 {color: #FF0000} --> </style> <BODY > <h1 align="center">Nota de Venta <?php echo $myrow3['almacen']; ?> </h1> <form name="form2" id="form2" method="get" action=""> <table width="43%" height="158" border="0" align="center" cellpadding="4" cellspacing="0"> <tr bgcolor="#FFFFFF"> <td width="29%" class="style12">Tipo Pago/Crédito </td> <td width="71%" class="style12"> <?php if (!$_GET['tipoPago']) { $_GET['tipoPago'] = 'Efectivo'; } ?> <select name="tipoPago" class="style7" id="select2" onchange="javascript:form.submit();"> <option <?php if ($_GET['tipoPago'] == 'Efectivo') { ?> selected="selected" <?php } ?> value="Efectivo">Efectivo</option> <option <?php if ($_GET['tipoPago'] == 'Tarjeta de Credito') { ?> selected="selected" <?php } ?> value="Tarjeta de Credito">Tarjeta de Credito</option> <option <?php if ($_GET['tipoPago'] == 'Cheque') { ?> selected="selected" <?php } ?> value="Cheque">Cheque</option> <option <?php if ($_GET['tipoPago'] == 'Credito') { ?> selected="selected" <?php } ?> value="Credito">Credito</option> </select></td> </tr> <tr bgcolor="#FFFFFF"> <?php if ($_GET['tipoPago'] == 'Tarjeta de Credito') { ?> <td class="style12">Código de Tarjeta</td> <td class="style12"><input name="codigo" type="text" class="style12" id="codigo" value="<?php if ($_GET['nuevo']) { echo "0000000000"; } else { if ($myrow2['codigo']) { echo $myrow2['codigo']; } } ?> " size="10" readonly=""/> <a href="javascript:ventanaSecundaria3('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /cargos/ventanaTC.php?nombreCampo=<?php echo "codigo"; ?> &descripcion=<?php echo "descripcion"; ?> &forma=<?php echo "form1"; ?> &comision=<?php echo "comision"; ?> ')"><img src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /imagenes/Save.png" alt="Laboratorio Fabricante" width="15" height="15" border="0" /></a></td> <input name="comision" type="hidden" value="" /> </tr> <tr bgcolor="#FFFFFF"> <td bgcolor="#FFFFFF" class="style12">Banco Tarjeta</td> <td bgcolor="#FFFFFF" class="style12"><input name="descripcion" type="text" class="style7" value="<?php echo $_GET['descripcion']; ?> " readonly=""/></td> </tr> <tr bgcolor="#FFFFFF"> <td class="style12">Últimos 4 Dígitos</td> <td class="style12"><label> <input name="ultimosDigitos" type="text" class="style7" id="ultimosDigitos" size="4" maxlength="4" value="<?php echo $_GET['ultimosDigitos']; ?> " onkeypress="return checkIt(event)"/> </label></td> </tr> <tr bgcolor="#FFFFFF"> </tr> <?php } ?> <?php //descuentos pacientes internos $sSQL18 = "SELECT *\r\nFROM\r\ndescuentos\r\nWHERE \r\nnumeroE='" . $numeroE . "' AND nCuenta ='" . $nCuenta . "' and nCuenta <>null\r\nand \r\nstatus='activo' and\r\nfechaFinal <= '" . $fecha1 . "'"; $result18 = mysql_db_query($basedatos, $sSQL18); $myrow18 = mysql_fetch_array($result18); echo mysql_error(); //descuentos pacientes ambulatorios $sSQL19 = "SELECT *\r\nFROM\r\ndescuentos\r\nWHERE \r\nnumeroE='" . $nCliente . "' \r\nand status='activo' and\r\nfechaFinal <= '" . $fecha1 . "'\r\n "; $result19 = mysql_db_query($basedatos, $sSQL19); $myrow19 = mysql_fetch_array($result19); //****************** if ($myrow19['cantidad']) { $descuento = $myrow19['cantidad']; } else { if ($myrow19['descuento']) { $TOTAL1 = $myrow19['descuento'] / 100 * $TOTAL; $descuento = $TOTAL1 - $descuento; } } if ($myrow18['cantidad']) { $descuento = $myrow18['cantidad']; } else { if ($myrow18['descuento']) { $TOTAL1 = $myrow18['descuento'] / 100 * $TOTAL; $descuento = $TOTAL1 - $descuento; } } $TOTAL -= $descuento; ?> </table> <input name="nT" type="hidden" class="style12" id="nT" value="<?php echo $_GET['nT']; ?> " readonly=""/> </form> <p align="center"> </p> <form id="form1" name="form1" method="post" action=""> <table width="642" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#990099" class="Estilo24"> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th bgcolor="#660066" class="style14" scope="col"><div align="left">Número de Transacción: </div></th> <th bgcolor="#660066" class="style14" scope="col"><div align="left"><?php echo $nCliente = $myrow3['keyClientesInternos']; ?> <input name="numeroE" type="hidden" class="Estilo24" id="numeroE" value="<?php echo $nCliente = $_POST['numeroE']; ?> " readonly=""/> </label></div> </th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th width="134" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong>Paciente: </strong></div></th> <th width="408" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong> <label> </label> </strong> <?php echo $myrow3['paciente']; ?> </div></th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <td class="Estilo24">Compañía: </td> <td class="Estilo24"><label> <?php echo $traeSeguro = $myrow3['seguro']; ?> <?php $sSQL212 = "SELECT *\r\nFROM\r\nclientes\r\nWHERE \r\nnumCliente='" . $traeSeguro . "'\r\n "; $result212 = mysql_db_query($basedatos, $sSQL212); $myrow212 = mysql_fetch_array($result212); ?> <input name="seguro2" type="hidden" id="seguro2" value="<?php echo $traeSeguro; ?> " /> </label></td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <td bgcolor="#FFCCFF" class="Estilo24">N° Credencial: </td> <td bgcolor="#FFCCFF" class="Estilo24"><?php echo $myrow3['credencial']; ?> </td> </tr> </table> <p> </p> <table width="672" border="0" align="center"> <tr> <th width="104" height="14" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Fecha/Hora (Cargo)</span></th> <th width="405" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Descripción</span></th> <th width="21" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Cant</span></th> <th width="59" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Importe IC </span></th> <th width="61" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">IVA</span></th> </tr> <tr> <?php //traigo agregados $sSQL81 = "\r\nSELECT \r\n *,((precioVenta*cantidad)+iva) as sumaTres\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\n numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n\r\n order by fecha1,hora1 asc\r\n"; if ($result81 = mysql_db_query($basedatos, $sSQL81)) { while ($myrow81 = mysql_fetch_array($result81)) { $keyCAP = $myrow81['keyCAP']; $a = $a + 1; $art = $myrow81['codProcedimiento']; $proc = $myrow81['codProcedimiento']; $codigo = $myrow81['codProcedimiento']; if ($col) { $color = '#FFCCFF'; $col = ""; } else { $color = '#FFFFFF'; $col = 1; } ?> <td height="23" bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"><?php echo $myrow81['fecha1'] . " " . $myrow81['hora1']; ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"><span class="style12"><span class="<?php echo $estilo; ?> "> <?php $descripcion = new articulosDetalles(); $descripcion->descripcion($numeroE, $nCuenta, $codigo, $basedatos); ?> </span></span> <span class="style12"> <?php if ($myrow81['um'] == 's' or $myrow81['um'] == 'S') { echo ' ( Servicio ) '; } ?> <?php if ($myrow81['status'] == 'cerrada') { echo '<blink>' . "[Cerrada]" . '</blink>'; } else { //echo '<blink>'."[CxC]".'</blink>'; } ?> </span> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"> <?php if ($_POST['tipoVista'] == 'Agrupado') { echo $cantidad = $myrow14['cantidad2']; } else { echo $cantidad = $myrow81['cantidad']; } ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"> <span class="style12"><span class="<?php echo $estilo; ?> "> <?php $importe = new acumulados(); $importe->importe($keyCAP, $basedatos); ?> </span></span> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"> <?php $mostrarIVA = new articulosDetalles(); echo $mostrarIVA->mostrarIVA($keyCAP, $basedatos); ?> </span></td> <?php if ($tipoTrans and !$myrow81['sumaTres']) { //echo "$".number_format("-".$myrow81['cantidadRecibida'],2); $TOTAL += "-" . $myrow81['cantidadRecibida']; } else { //echo "$".number_format($costoProcedimientos[0],2); //$TOTAL+=$costoProcedimientos[0]; //echo "$".number_format($myrow81['sumaTres'],2); } ?> </tr> <?php } ?> </table> <p> <input name="paso_bandera1" type="hidden" id="paso_bandera1" value="<?php echo $bandera; ?> " /> <input name="recibo" type="hidden" id="recibo" value="<?php echo $nCliente = $_POST['numeroE']; ?> " /> <input name="nCliente" type="hidden" id="nCliente" value="<?php echo $nCliente; ?> " /> <input name="almacen" type="hidden" id="almacen" value="<?php echo $ALMACEN; ?> " /><?php //echo "$".number_format($TOTAL,2); ?> </p> <div align="center"> <p> </p> <table width="679" border="0" align="center" class="style12"> <tr> <td width="139" class="style12"> </td> <td width="139" class="style12"> </td> <td width="139" class="style12"> </td> <td width="139" height="23" class="style12">IVA</td> <td width="90" class="style12"><div align="right"> <?php $iva = new acumulados(); $iva = $iva->ivaAcumulado($basedatos, $usuario, $numeroE, $nCuenta); echo "\$" . number_format($iva, 2); ?> </div></td> </tr> <tr bgcolor="#FFCCFF"> <td bgcolor="#FFFFFF" class="style12"> </td> <td bgcolor="#FFFFFF" class="style12"> </td> <td bgcolor="#FFFFFF" class="style12"> </td> <td height="23" class="style12">Total Cargos </td> <td class="style12"><div align="right"> <?php $totalAcumulado = new acumulados(); echo "\$" . number_format($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </div></td> </tr> </table> <p> </p> <p> <input name="pagar" type="submit" class="style7" id="pagar" value="Aplicar Pago" /> <input name="Submit" type="submit" class="style7" value="Trasladar a Compañia" /> </p> </div> <p> </p> </form> <?php } ?> <p align="center"> </p> <?php if ($_POST['banderaFecha']) { ?> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador" // el id del bot�n que lanzar� el calendario }); </script> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha1", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador1" // el id del bot�n que lanzar� el calendario }); </script> <?php } } ?> </body> </html> <?php }
public function eCuentaE($fecha1, $hora1, $dia, $usuario, $nT, $basedatos) { include CONSTANT_PATH_CONFIGURACION . "/funciones.php"; $cargosCia = new acumulados(); ?> <script language=javascript> function ventanaSecundaria4 (URL){ window.open(URL,"ventana4","width=800,height=300,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria2 (URL){ window.open(URL,"ventana2","width=630,height=500,scrollbars=YES,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria1 (URL){ window.open(URL,"ventana1","width=530,height=300,scrollbars=YES") } </script> <script language=javascript> function ventanaSecundaria5 (URL){ window.open(URL,"ventana5","width=500,height=500,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria3 (URL){ window.open(URL,"ventana3","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria6 (URL){ window.open(URL,"ventana6","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria7 (URL){ window.open(URL,"ventana7","width=500,height=600,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language="javascript" type="text/javascript"> //Validacion de campos de texto no vacios by Mauricio Escobar // //Iv�n Nieto P�rez //Este script y otros muchos pueden //descarse on-line de forma gratuita //en El C�digo: www.elcodigo.com //********************************************************************************* // Function que valida que un campo contenga un string y no solamente un " " // Es tipico que al validar un string se diga // if(campo == "") ? alert(Error) // Si el campo contiene " " entonces la validacion anterior no funciona //********************************************************************************* //busca caracteres que no sean espacio en blanco en una cadena function vacio(q) { for ( i = 0; i < q.length; i++ ) { if ( q.charAt(i) != " " ) { return true } } return false } //valida que el campo no este vacio y no tenga solo espacios en blanco function valida(F) { if( vacio(F.campo.value) == false ) { alert("Introduzca un cadena de texto.") return false } else { alert("OK") //cambiar la linea siguiente por return true para que ejecute la accion del formulario return true } } </script> <SCRIPT LANGUAGE="JavaScript"> function checkIt(evt) { evt = (evt) ? evt : window.event var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57)) { status = "Este campo s�lo acepta n�meros." return false } status = "" return true } </SCRIPT> <script type="text/javascript"> <!-- por carlitos. cualquier duda o pregunta, visita www.forosdelweb.com var ancho=100 var alto=100 var fin=300 var x=100 var y=100 function inicio() { ventana = window.open("cita.php", "_blank", "height=1,width=1,top=x,left=y,screenx=x,screeny=y"); abre(); } function abre() { if (ancho<=fin) { ventana.moveto(x,y); ventana.resizeto(ancho,alto); x+=5 y+=5 ancho+=15 alto+=15 timer= settimeout("abre()",1) } else { cleartimeout(timer) } } // --> </script> <?php //************************ACTUALIZO ********************** //********************Llenado de datos $sSQL3 = "Select * From clientesInternos WHERE keyClientesInternos = '" . $_GET['nT'] . "' "; $result3 = mysql_db_query($basedatos, $sSQL3); $myrow3 = mysql_fetch_array($result3); $numeroE = $myrow3['numeroE']; $nCuenta = $myrow3['nCuenta']; $cuarto = $myrow3['cuarto']; //***************aplicar pago********************** if ($_POST['actualizar']) { $particular = $_POST['particular']; $aseguradora = $_POST['aseguradora']; for ($i = 0; $i <= $_POST['bandera2']; $i++) { if ($aseguradora[$i]) { $status = 'efectivo'; $keyCAP[] = $aseguradora[$i]; } else { $status = 'cxc'; $keyCAP[] = $particular[$i]; } $agrega = "UPDATE cargosCuentaPaciente set \r\nstatusAlta='" . $status . "',\r\nusuarioAlta='" . $usuario . "',\r\nfechaAlta='" . $fecha1 . "',\r\nhoraAlta='" . $hora1 . "'\r\n\r\nwhere\r\nkeyCAP='" . $keyCAP[$i] . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); } //cierra for } //cierra actualizar $cargosParticulares = new acumulados(); $totalxSurtir = new acumulados(); $cargosAseguradora = new acumulados(); $otros = new acumulados(); if ($_POST['imprimir']) { ?> <script> javascript:ventanaSecundaria2('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/imprimeCaja2.php?numeroE=<?php echo $numeroE; ?> &nCuenta=<?php echo $nCuenta; ?> &paciente=<?php echo $_POST['paciente']; ?> &numeroConfirmacion=<?php echo $numeroConfirmacion; ?> &hora1=<?php echo $hora1; ?> '); </script> <?php } ?> <!-Hoja de estilos del calendario --> <link rel="stylesheet" type="text/css" media="all" href="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-tas.css" title="win2k-cold-1" /> <!-- librer�a principal del calendario --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar.js"></script> <!-- librer�a para cargar el lenguaje deseado --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/lang/calendar-es.js"></script> <!-- librer�a que declara la funci�n Calendar.setup, que ayuda a generar un calendario en unas pocas l�neas de c�digo --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-setup.js"></script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <script> function muestra_oculta(id){ if (document.getElementById){ //se obtiene el id var el = document.getElementById(id); //se define la variable "el" igual a nuestro div el.style.display = (el.style.display == 'none') ? 'block' : 'none'; //damos un atributo display:none que oculta el div } } window.onload = function(){/*hace que se cargue la funci�n lo que predetermina que div estar� oculto hasta llamar a la funci�n nuevamente*/ muestra_oculta('contenido_a_mostrar');/* "contenido_a_mostrar" es el nombre de la etiqueta DIV que deseamos mostrar */ } </script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title></title> <style type="text/css"> <!-- .style13 {color: #FFFFFF} .style11 {color: #FFFFFF; font-size: 10px; font-weight: bold; } .style7 {font-size: 9px} .Estilo24 {font-size: 10px} .style19 {color: #000000; font-weight: bold; } --> </style> </head> <style type="text/css"> <!-- .style12 {font-size: 10px} .style14 {font-size: 10px; color: #FFFFFF; } .style21 {color: #FF0000} --> </style> <BODY > <h1 align="center">Nota de Venta </h1> <form id="form1" name="form1" method="post" action=""> <table width="642" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#990099" class="Estilo24"> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th bgcolor="#660066" class="style14" scope="col"><div align="left">Número de Transacción: </div></th> <th bgcolor="#660066" class="style14" scope="col"><div align="left"><?php echo $nCliente = $myrow3['keyClientesInternos']; ?> <input name="numeroE" type="hidden" class="Estilo24" id="numeroE" value="<?php echo $nCliente = $_POST['numeroE']; ?> " readonly=""/> </label></div> </th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th width="134" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong>Paciente: </strong></div></th> <th width="408" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong> <label> </label> </strong> <?php echo $myrow3['paciente']; ?> </div></th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <td class="Estilo24">Compañía: </td> <td class="Estilo24"><label> <?php echo $traeSeguro = $myrow3['seguro']; ?> <?php displaySeguro::despliegaSeguro($traeSeguro, $basedatos); ?> <input name="seguro2" type="hidden" id="seguro2" value="<?php echo $traeSeguro; ?> " /> </label></td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <td bgcolor="#FFCCFF" class="Estilo24">N° Credencial: </td> <td bgcolor="#FFCCFF" class="Estilo24"><?php echo $myrow3['credencial']; ?> </td> </tr> </table> <p> </p> <table width="675" border="0" align="center"> <tr> <th width="105" height="14" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Fecha/Hora </span></th> <th width="348" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Descripción/Concepto</span></th> <th width="21" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Cant</span></th> <th width="73" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Importe</span></th> <th width="51" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">IVA</span></th> <th width="51" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Convenio</span></th> </tr> <tr> <?php //traigo agregados $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,tipoConvenio\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\n numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\nand\r\nstatusCargo!='cancelado'\r\n \r\n \r\n \r\n order by fecha1,hora1 asc\r\n"; $result81 = mysql_db_query($basedatos, $sSQL81); while ($myrow81 = mysql_fetch_array($result81)) { $a += '1'; $art = $myrow81['codProcedimiento']; $codigo = $proc = $myrow81['codProcedimiento']; $keyCAP = $myrow81['keyCAP']; ?> <td height="21" bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="<?php echo $estilo; ?> "> <?php echo $myrow81['hora1'] . " " . cambia_a_normal($myrow81['fecha1']); ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="<?php echo $estilo; ?> "><span class="style12"><span class="style7"> <?php $descripcion = new articulosDetalles(); $descripcion->descripcion($numeroE, $nCuenta, $codigo, $basedatos); ?> </span></span> <span class="style12"> <?php if ($myrow811['um'] == 's' or $myrow811['um'] == 'S') { echo ' ( Servicio ) '; } ?> </span> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="center"><span class="<?php echo $estilo; ?> "> <?php echo $cantidad = $myrow81['cantidad']; ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="<?php echo $estilo; ?> "><span class="style12"><span class="style7"> <?php $importe = new acumulados(); echo $importe->importe($keyCAP, $basedatos); ?> </span></span></span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="<?php echo $estilo; ?> "><span class="style12"><span class="style7"> <?php $mostrarIVA = new articulosDetalles(); echo $mostrarIVA->mostrarIVA($keyCAP, $basedatos); ?> </span></span></span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="center"><span class="<?php echo $estilo; ?> "> <span class="style12"><span class="style7"> <?php if ($myrow81['tipoConvenio'] and $myrow81['tipoConvenio'] != 'No') { echo 'C'; } else { echo '---'; } ?> </span></span> </span></div></td> </tr> <?php } ?> </table> <p> </p> <div align="center"> <table width="558" border="0" align="center" class="style12"> <tr> <td width="113" class="style12"> </td> <td width="124" class="style12"> </td> <td width="97" class="style12"><span class="style7">Total Cargos </span> <?php $totalAcumulado = new acumulados(); echo "\$" . number_format($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </td> <td width="106" height="23" class="style12"><span class="style7">Total Abonos <?php $abonos = new acumulados(); echo "\$" . number_format($abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </span></td> <td width="96" class="style12"><div align="right"> Saldo Actual <?php echo "\$" . number_format($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta) - $abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </div></td> </tr> </table> </div> <p align="center"> <?php if (!$totalCargos) { ?> <input name="imprimir" type="submit" class="style7" id="aplicarPago" value="Imprimir" /> <?php } ?> <input name="Submit" type="button" class="style7" value="Aplicar Pagos" onClick="javascript:ventanaSecundaria7('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/ventanaAplicaPagoInternos.php?numeroE=<?php echo $numeroE; ?> &almacen=<?php echo $bali; ?> &seguro=<?php echo $_POST['seguro']; ?> &nCuenta=<?php echo $myrow3['keyClientesInternos']; ?> &tipoCliente=<?php echo 'particular'; ?> ')"/> </p> </form> <p align="center"> </p> </body> </html> <?php }
public function facturaCoaseguro($tipoFacturacion, $entidad, $fecha1, $hora1, $dia, $usuario, $nT, $basedatos) { include CONSTANT_PATH_CONFIGURACION . "/funciones.php"; $cargosCia = new acumulados(); ?> <script language=javascript> function ventanaSecundaria (URL){ window.open(URL,"ventana","width=800,height=600,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria4 (URL){ window.open(URL,"ventana4","width=800,height=300,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria2 (URL){ window.open(URL,"ventana2","width=630,height=500,scrollbars=YES,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria1 (URL){ window.open(URL,"ventana1","width=530,height=300,scrollbars=YES") } </script> <script language=javascript> function ventanaSecundaria5 (URL){ window.open(URL,"ventana5","width=500,height=500,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria3 (URL){ window.open(URL,"ventana3","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria6 (URL){ window.open(URL,"ventana6","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria7 (URL){ window.open(URL,"ventana7","width=500,height=600,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language="javascript" type="text/javascript"> //Validacion de campos de texto no vacios by Mauricio Escobar // //Iv�n Nieto P�rez //Este script y otros muchos pueden //descarse on-line de forma gratuita //en El C�digo: www.elcodigo.com //********************************************************************************* // Function que valida que un campo contenga un string y no solamente un " " // Es tipico que al validar un string se diga // if(campo == "") ? alert(Error) // Si el campo contiene " " entonces la validacion anterior no funciona //********************************************************************************* //busca caracteres que no sean espacio en blanco en una cadena function vacio(q) { for ( i = 0; i < q.length; i++ ) { if ( q.charAt(i) != " " ) { return true } } return false } //valida que el campo no este vacio y no tenga solo espacios en blanco function valida(F) { if( vacio(F.campo.value) == false ) { alert("Introduzca un cadena de texto.") return false } else { alert("OK") //cambiar la linea siguiente por return true para que ejecute la accion del formulario return true } } </script> <SCRIPT LANGUAGE="JavaScript"> function checkIt(evt) { evt = (evt) ? evt : window.event var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57)) { status = "Este campo s�lo acepta n�meros." return false } status = "" return true } </SCRIPT> <script type="text/javascript"> <!-- por carlitos. cualquier duda o pregunta, visita www.forosdelweb.com var ancho=100 var alto=100 var fin=300 var x=100 var y=100 function inicio() { ventana = window.open("cita.php", "_blank", "height=1,width=1,top=x,left=y,screenx=x,screeny=y"); abre(); } function abre() { if (ancho<=fin) { ventana.moveto(x,y); ventana.resizeto(ancho,alto); x+=5 y+=5 ancho+=15 alto+=15 timer= settimeout("abre()",1) } else { cleartimeout(timer) } } // --> </script> <?php //************************ACTUALIZO ********************** //********************Llenado de datos if (!$_GET['nT']) { $_GET['nT'] = $nT; } //********************Llenado de datos $sSQL3 = "Select * From clientesInternos WHERE keyClientesInternos = '" . $_GET['nT'] . "' or keyClientesInternos='" . $_GET['nT1'] . "'"; $result3 = mysql_db_query($basedatos, $sSQL3); $myrow3 = mysql_fetch_array($result3); $numeroE = $myrow3['numeroE']; $nCuenta = $myrow3['nCuenta']; $cuarto = $myrow3['cuarto']; $seguro = $myrow3['seguro']; //***************aplicar pago********************** if ($_GET['facturar'] and $_GET['numFactura'] and $_GET['flag'] == 'standby') { $keyCAP = $_GET['keyCAP']; for ($i = 0; $i <= $_GET['bandera']; $i++) { if ($keyCAP[$i]) { //********************** $sSQL31 = "Select statusFactura From cargosCuentaPaciente WHERE keyCAP = '" . $keyCAP[$i] . "'"; $result31 = mysql_db_query($basedatos, $sSQL31); $myrow31 = mysql_fetch_array($result31); //verifico q ya esta facturado if ($myrow31['statusFactura'] == 'standby') { $agrega = "UPDATE cargosCuentaPaciente set \r\nnumFactura='" . $_GET['numFactura'] . "',\r\nstatusFactura='cargado',\r\nusuarioSolicitudFactura='" . $usuario . "',\r\nfechaSolicitudFactura='" . $fecha1 . "',\r\nhoraSolicitudFactura='" . $hora1 . "'\r\n\r\nwhere\r\nkeyCAP='" . $keyCAP[$i] . "'"; mysql_db_query($basedatos, $agrega); echo mysql_error(); $leyenda = 'Se factur� con El n�mero de Factura es el ' . $_GET['numFactura']; } else { $leyenda = 'registros ya facturados!'; } } } echo $leyenda; /* echo '<script language="JavaScript" type="text/javascript"> <!-- opener.location.reload(true); self.close(); // --> </script>'; */ $flag = 'load'; } else { $flag = 'standby'; } if ($_GET['quitar']) { $keyCAP = $_GET['keyCAP1']; for ($i = 0; $i <= $_GET['bandera']; $i++) { if ($keyCAP[$i]) { $agrega = "UPDATE cargosCuentaPaciente set \r\n\r\nstatusFactura='standby',\r\nusuarioSolicitudFactura='" . $usuario . "',\r\nfechaSolicitudFactura='" . $fecha1 . "',\r\nhoraSolicitudFactura='" . $hora1 . "'\r\n\r\nwhere\r\nkeyCAP='" . $keyCAP[$i] . "' \r\n"; //mysql_db_query($basedatos,$agrega); echo mysql_error(); } } } ?> <!-Hoja de estilos del calendario --> <link rel="stylesheet" type="text/css" media="all" href="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-tas.css" title="win2k-cold-1" /> <!-- librer�a principal del calendario --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar.js"></script> <!-- librer�a para cargar el lenguaje deseado --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/lang/calendar-es.js"></script> <!-- librer�a que declara la funci�n Calendar.setup, que ayuda a generar un calendario en unas pocas l�neas de c�digo --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-setup.js"></script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <html xmlns="http://www.w3.org/1999/xhtml"> <style type="text/css"> <!-- .style71 {font-size: 9px} .style71 {font-size: 9px} .style71 {font-size: 9px} --> </style> <head> <title></title> <style type="text/css"> <!-- .style13 {color: #FFFFFF} .style11 {color: #FFFFFF; font-size: 10px; font-weight: bold; } .style7 {font-size: 9px} .Estilo24 {font-size: 10px} .style19 {color: #000000; font-weight: bold; } --> </style> </head> <style type="text/css"> <!-- .style12 {font-size: 10px} .style14 {font-size: 10px; color: #FFFFFF; } .style21 {color: #FF0000} --> </style> <BODY > <h1 align="center">FACTURACION</h1> <form id="form1" name="form1" method="get" action=""> <table width="413" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#990099" class="Estilo24"> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th bgcolor="#660066" class="style14" scope="col"><div align="left">Transacción: </div></th> <th bgcolor="#660066" class="style14" scope="col"><div align="left"><?php echo $nCliente = $myrow3['keyClientesInternos']; ?> <input name="numeroE" type="hidden" class="Estilo24" id="numeroE" value="<?php echo $nCliente = $_GET['numeroE']; ?> " readonly=""/> </label></div> </th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th width="134" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong>Paciente: </strong></div></th> <th width="408" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong> <label> </label> </strong> <?php echo $myrow3['paciente']; ?> </div></th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <td class="Estilo24">Compañía: </td> <td class="Estilo24"><label> <?php echo $traeSeguro = $myrow3['seguro']; ?> <?php displaySeguro::despliegaSeguro($traeSeguro, $basedatos); ?> <input name="seguro2" type="hidden" id="seguro2" value="<?php echo $traeSeguro; ?> " /> </label></td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <td bgcolor="#FFCCFF" class="Estilo24">N° Credencial: </td> <td bgcolor="#FFCCFF" class="Estilo24"><?php echo $myrow3['credencial']; ?> </td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <th class="Estilo24" scope="col"><div align="left"><strong>Médico: </strong></div></th> <th class="Estilo24" scope="col"><div align="left"> <label> <?php echo $medico = $myrow3['medico']; ?> </label> <label> </label> <?php $sSQL18 = "Select * From medicos WHERE numMedico ='" . $medico . "'"; $result18 = mysql_db_query($basedatos, $sSQL18); $rNombre18 = mysql_fetch_array($result18); ?> <?php echo $dr = "Dr(a): " . $rNombre18["apellido1"] . " " . $rNombre18["apellido2"] . " " . $rNombre18["apellido3"] . " " . $rNombre18["nombre1"] . " " . $rNombre18["nombre2"]; ?> </div></th> </tr> <tr> <th class="Estilo24" scope="col"> </th> <th bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"># de Factura </div></th> <th bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"> <label> <input name="numFactura" type="text" class="style7" id="numFactura" value="<?php if ($_GET['numFactura']) { echo $_GET['numFactura']; } ?> " <?php if ($_GET['numFactura']) { echo 'disabled=""'; } ?> /> </label> </div></th> </tr> </table> <p> </p> <table width="597" border="0" align="center"> <tr> <th width="62" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">#MOV </span></div></th> <th width="100" height="14" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Fecha/Hora </span></div></th> <th width="282" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Descripción/Concepto</span></div></th> <th width="25" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Cant</span></div></th> <th width="59" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Importe</span></div></th> <th width="43" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">IVA</span></div></th> </tr> <?php //traigo agregados $sSQL81 = "\r\nSELECT \r\n*\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\n numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n \r\nand\r\nstatus='transaccion'\r\nand\r\nstatusFactura='solicita'\r\nand tipoCliente='coaseguro'\r\n\r\n\r\n order by hora1 asc\r\n"; if ($result81 = mysql_db_query($basedatos, $sSQL81)) { while ($myrow81 = mysql_fetch_array($result81)) { $tipoCliente = $myrow81['tipoCliente']; $a += '1'; $art = $myrow81['codProcedimiento']; $codigo = $proc = $myrow81['codProcedimiento']; $keyCAP = $myrow81['keyCAP']; $keyCAP1[] = $myrow81['keyCAP']; $fecha1 = $myrow81['fecha1']; $fecha2 = $myrow81['fecha1']; $sSQL14 = "\r\nSELECT \r\nstatusFactura\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE \r\nkeyCAP='" . $keyCAP . "'\r\n\r\n"; $result14 = mysql_db_query($basedatos, $sSQL14); $myrow14 = mysql_fetch_array($result14); //**** $sSQL = "\r\nSELECT sum(precioVenta*cantidad) as precioVentas\r\nfrom \r\ncargosCuentaPaciente\r\nWHERE \r\ngpoProducto= '" . $myrow81['gpoProducto'] . "'\r\nand\r\nkeyCAP='" . $keyCAP . "'\r\n"; $result = mysql_db_query($basedatos, $sSQL); $myrow = mysql_fetch_array($result); $sSQL31 = "Select statusFactura From cargosCuentaPaciente WHERE keyCAP = '" . $keyCAP . "'"; $result31 = mysql_db_query($basedatos, $sSQL31); $myrow31 = mysql_fetch_array($result31); ?> <tr> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "><?php echo $myrow81['keyCAP']; ?> </span> <input name="keyCAP[]" type="hidden" id="keyCAP[]" value="<?php echo $myrow81['keyCAP']; ?> " /> </div></td> <td height="21" bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "> <?php echo $myrow81['hora1'] . " " . cambia_a_normal($myrow81['fecha1']); ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "><span class="style12"><span class="style7"> <?php $descripcion = new articulosDetalles(); $descripcion->descripcion($keyCAP, $numeroE, $nCuenta, $codigo, $basedatos); ?> </span></span> <span class="style12"> <?php if ($myrow81['gpoProducto']) { echo '[' . $myrow81['gpoProducto'] . ']'; } if ($myrow31['statusFactura'] == 'cargado') { echo '<blink>' . '[REGISTRO FACTURADO] ' . '</blink>'; } ?> </span> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "> </span><span class="<?php echo $estilo; ?> "><?php echo $myrow81['cantidad']; ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "> <span class="style12"><span class="style7"> <?php $cantidadRegistros += 1; $importes[0] += $myrow81['precioVenta']; echo "\$" . number_format($myrow81['precioVenta'], 2); $cantidadTransaccion[0] += $myrow81['precioVenta']; ?> </span></span> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><span class="style71"> <?php $mostrarIVA = new articulosDetalles(); echo $mostrarIVA->mostrarIVA($keyCAP, $basedatos); $cantidadIVA[0] += $myrow81['iva']; ?> </span></td> </tr> <?php $FECHA[$a] = $myrow81['fecha1']; } ?> </table> <p align="center"> <?php $sSQL74 = "SELECT SUM(precioVenta*cantidad) as acumuladoPrincipal\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE\r\n\r\n(numeroE='" . $numeroE . "' and nCuenta='" . $nCuenta . "')\r\n and statusCargo='cargado'\r\n and\r\n tipoCliente='aseguradora'\r\n "; $result74 = mysql_db_query($basedatos, $sSQL74); $myrow74 = mysql_fetch_array($result74); $porcentaje = $cantidadTransaccion[0] / $myrow74[0]; ?> <label> <input name="facturar" type="submit" class="style7" value="Facturar" <?php if ($_GET['facturar'] or $myrow31['statusFactura'] == 'cargado') { echo 'disabled=""'; } ?> /> </label> <label> </label> </p> <?php echo $myrow31['statusFactura']; if ($myrow31['statusFactura'] == 'solicita') { ?> <p align="center" class="style71"> <a href="#" onClick="javascript:ventanaSecundaria('printInvoice.php?numeroE=<?php echo $numeroE; ?> &nCuenta=<?php echo $nCuenta; ?> &entidad=<?php echo $entidad; ?> &nT=<?php echo $nT; ?> &numFactura=<?php echo $_GET['numFactura']; ?> &porcentaje=<?php echo $porcentaje; ?> ')"> Imprimir Factura </a> <----> <a href="#" onClick="javascript:ventanaSecundaria('printDetailsInvoice.php?numeroE=<?php echo $numeroE; ?> &nCuenta=<?php echo $nCuenta; ?> &almacenSolicitante=<?php echo $ALMACEN; ?> &entidad=<?php echo $entidad; ?> &numFactura=<?php echo $_GET['numFactura']; ?> ')"> Imprimir Detalles </a> </p> <?php } ?> <div align="center"> <p align="left"> <table width="384" border="0" align="left" cellpadding="1" cellspacing="1" class="style71"> <tr> <th width="216" bgcolor="#FFCCFF" class="<?php echo $estilo; ?> " scope="col"><div align="left">Descripción</div></th> <th width="76" bgcolor="#FFCCFF" class="<?php echo $estilo; ?> " scope="col"><div align="left">Importe</div></th> <th width="78" bgcolor="#FFCCFF" class="<?php echo $estilo; ?> " scope="col"><div align="left">% Importe aPagar </div></th> </tr> <tr> <?php $sSQL71 = "SELECT sum(precioVenta) as sumaAbonos\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE\r\n(numeroE='" . $numeroE . "' and nCuenta='" . $nCuenta . "')\r\nand\r\ntipoCobro='Efectivo'\r\nand\r\nstatus='transaccion'\r\nand\r\nnaturaleza='A'"; $result71 = mysql_db_query($basedatos, $sSQL71); $myrow71 = mysql_fetch_array($result71); $sSQL = "\r\nSELECT codigoGP,descripcionGP FROM gpoProductos\r\nWHERE \r\nentidad='" . $entidad . "' \r\nand\r\nactivo='activo'\r\n"; if ($result = mysql_db_query($basedatos, $sSQL)) { while ($myrow = mysql_fetch_array($result)) { $codigo = $code = $myrow['codigo']; if ($col) { $color = '#FFCCFF'; $col = ""; } else { $color = '#FFFFFF'; $col = 1; } $C = $myrow['codigoGP']; $sSQL7 = "SELECT SUM(precioVenta*cantidad) as acumulado,SUM(iva*cantidad) as sumaIVA\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE\r\ngpoProducto='" . $C . "'\r\nand\r\n\r\n\r\n(numeroE='" . $numeroE . "' and nCuenta='" . $nCuenta . "')\r\n and (status!='standby' and statusCargo!='standby' AND status!='cancelado')\r\n and\r\n tipoCliente='aseguradora'\r\n "; $result7 = mysql_db_query($basedatos, $sSQL7); $myrow7 = mysql_fetch_array($result7); $sumarIVA[0] += $myrow7['sumaIVA']; $acumulado[0] += $myrow7['acumulado']; ?> <td bgcolor="<?php echo $color; ?> " ><div align="left"><span class=""> <?php echo $myrow['descripcionGP']; ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><?php echo "\$" . number_format($myrow7['acumulado'], 2); ?> </td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><?php if ($myrow7[0]) { //$porcentaje=$_GET['porcentaje']; $importePorcentaje = $myrow7[0] * $porcentaje; $importeP[0] += $importePorcentaje; echo "\$" . number_format($importePorcentaje, 2); } else { echo '$' . '0.00'; } ?> </td> </tr> <?php } } ?> </table> � </p> <p align="left"> </p> <p align="left"> </p> <p align="left"> </p> <p align="left"> </p> <p align="left"> </p> <p align="left"> </p> <table width="384" height="0" border="0" align="left" cellpadding="0" cellspacing="1" class="style71"> <tr> <td bgcolor="#660066" class="style14"><span class="Estilo24">IVA (Acumulado) </span></td> <td bgcolor="#660066" class="style14"><?php echo "\$" . number_format($sumarIVA[0], 2); ?> </td> <td bgcolor="#660066" class="style14"><?php $sSQL74 = "SELECT SUM(iva*cantidad) as sumaIVA\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE\r\n(numeroE='" . $numeroE . "' and nCuenta='" . $nCuenta . "')\r\nand\r\nstatus!='transaccion'\r\n\r\n and (status!='standby' and statusCargo!='standby' AND status!='cancelado')\r\n "; $result74 = mysql_db_query($basedatos, $sSQL74); $myrow74 = mysql_fetch_array($result74); $sumaIVA = $myrow74['sumaIVA'] * $_GET['porcentaje']; echo "\$" . number_format($sumaIVA, 2); ?> </td> </tr> <tr> <td width="46%" bgcolor="#660066" class="style14"><div align="left">TOTALES</div></td> <td width="17%" bgcolor="#660066" class="style14"><?php echo "\$" . number_format($acumulado[0] + $sumarIVA[0], 2); ?> </td> <td width="16%" bgcolor="#660066" class="style14"><?php echo "\$" . number_format($importeP[0] + $sumaIVA, 2); ?> </td> </tr> <tr> <td class="style71"><?php ?> </td> <td class="style71"> </td> <td class="style71"> </td> </tr> </table> <p> </p> <p> </p> <p> </p> </div> <?php if ($myrow3['status'] != 'cerrada') { ?> <?php $cargosParticulares = new acumulados(); $totalxSurtir = new acumulados(); $cargosAseguradora = new acumulados(); $otros = new acumulados(); if ($cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $totalxSurtir->totalxSurtir($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $otros->otros($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta) == NULL) { ?> <?php } ?> <?php } else { echo "LA CUENTA DEL PACIENTE " . $myrow3['paciente'] . " ESTA CERRADA..."; } ?> <input name="bandera" type="hidden" value="<?php echo $a; ?> " /> <input name="flag" type="hidden" value="<?php echo $flag; ?> " /> <input name="nT1" type="hidden" id="nT1" value="<?php echo $_GET['nT']; ?> " /> </form> <?php } ?> <p align="center"> </p> <?php if ($_GET['banderaFecha']) { ?> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador" // el id del bot�n que lanzar� el calendario }); </script> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha1", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador1" // el id del bot�n que lanzar� el calendario }); </script> <?php } ?> </body> </html> <?php }
"><span class="style12"><span class="style7"> <?php $importe = new acumulados(); echo $importe->importe($keyCAP, $basedatos); ?> </span></span></span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="<?php echo $estilo; ?> "><span class="style12"><span class="style7"> <?php $mostrarIVA = new articulosDetalles(); echo $mostrarIVA->mostrarIVA($keyCAP, $basedatos); ?> </span></span></span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="center"><span class="<?php echo $estilo; ?> "> <span class="style12"><span class="style7"> <?php if ($myrow81['tipoConvenio'] and $myrow81['tipoConvenio'] != 'No') { echo 'C'; } else {
public function eCuentaE($usuario, $entidad, $almacen, $fecha1, $hora1, $dia, $usu, $nT, $basedatos) { $bali = $almacen; include CONSTANT_PATH_CONFIGURACION . "/funciones.php"; $cargosCia = new acumulados(); ?> <script language=javascript> function ventanaSecundaria4 (URL){ window.open(URL,"ventana4","width=800,height=300,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria2 (URL){ window.open(URL,"ventana2","width=630,height=500,scrollbars=YES,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria1 (URL){ window.open(URL,"ventana1","width=530,height=300,scrollbars=YES") } </script> <script language=javascript> function ventanaSecundaria5 (URL){ window.open(URL,"ventana5","width=500,height=500,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria3 (URL){ window.open(URL,"ventana3","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria6 (URL){ window.open(URL,"ventana6","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria7 (URL){ window.open(URL,"ventana7","width=500,height=600,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language="javascript" type="text/javascript"> //Validacion de campos de texto no vacios by Mauricio Escobar // //Iv�n Nieto P�rez //Este script y otros muchos pueden //descarse on-line de forma gratuita //en El C�digo: www.elcodigo.com //********************************************************************************* // Function que valida que un campo contenga un string y no solamente un " " // Es tipico que al validar un string se diga // if(campo == "") ? alert(Error) // Si el campo contiene " " entonces la validacion anterior no funciona //********************************************************************************* //busca caracteres que no sean espacio en blanco en una cadena function vacio(q) { for ( i = 0; i < q.length; i++ ) { if ( q.charAt(i) != " " ) { return true } } return false } //valida que el campo no este vacio y no tenga solo espacios en blanco function valida(F) { if( vacio(F.campo.value) == false ) { alert("Introduzca un cadena de texto.") return false } else { alert("OK") //cambiar la linea siguiente por return true para que ejecute la accion del formulario return true } } </script> <SCRIPT LANGUAGE="JavaScript"> function checkIt(evt) { evt = (evt) ? evt : window.event var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57)) { status = "Este campo s�lo acepta n�meros." return false } status = "" return true } </SCRIPT> <script type="text/javascript"> <!-- por carlitos. cualquier duda o pregunta, visita www.forosdelweb.com var ancho=100 var alto=100 var fin=300 var x=100 var y=100 function inicio() { ventana = window.open("cita.php", "_blank", "height=1,width=1,top=x,left=y,screenx=x,screeny=y"); abre(); } function abre() { if (ancho<=fin) { ventana.moveto(x,y); ventana.resizeto(ancho,alto); x+=5 y+=5 ancho+=15 alto+=15 timer= settimeout("abre()",1) } else { cleartimeout(timer) } } // --> </script> <?php //************************ACTUALIZO ********************** //********************Llenado de datos $sSQL3 = "Select * From clientesInternos WHERE keyClientesInternos = '" . $_GET['nT'] . "' "; $result3 = mysql_db_query($basedatos, $sSQL3); $myrow3 = mysql_fetch_array($result3); $numeroE = $myrow3['numeroE']; $nCuenta = $myrow3['nCuenta']; $cuarto = $myrow3['cuarto']; $seguroT = ltrim($myrow3['seguro']); //***************aplicar pago********************** if ($_POST['actualizar']) { $particular = $_POST['particular']; $aseguradora = $_POST['aseguradora']; for ($i = 0; $i <= $_POST['bandera2']; $i++) { if ($aseguradora[$i]) { $status = 'efectivo'; $keyCAP[] = $aseguradora[$i]; } else { $status = 'cxc'; $keyCAP[] = $particular[$i]; } $agrega = "UPDATE cargosCuentaPaciente set \r\nstatusAlta='" . $status . "',\r\nusuarioAlta='" . $usuario . "',\r\nfechaAlta='" . $fecha1 . "',\r\nhoraAlta='" . $hora1 . "'\r\n\r\nwhere\r\nkeyCAP='" . $keyCAP[$i] . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); } //cierra for } //cierra actualizar $cargosParticulares = new acumulados(); $totalxSurtir = new acumulados(); $cargosAseguradora = new acumulados(); $otros = new acumulados(); if ($_POST['imprimir']) { //*************SACO EL NUMERO DE MOVIMIENTO y lo actualizo************************* $sSQLC = "Select * From statusCaja where entidad='" . $entidad . "' and usuario='" . $usuario . "' order by keySTC DESC "; $resultC = mysql_db_query($basedatos, $sSQLC); $myrowC = mysql_fetch_array($resultC); $q = "UPDATE statusCaja set \r\nnumRecibo= numRecibo+1\r\nwhere\r\nentidad='" . $entidad . "'\r\nand\r\nkeyCatC='" . $myrowC['keyCatC'] . "'\r\nand\r\nstatus='abierta'\r\norder by keySTC DESC "; mysql_db_query($basedatos, $q); echo mysql_error(); $sSQLC = "Select * From statusCaja where entidad='" . $entidad . "' and usuario='" . $usuario . "' order by keySTC DESC "; $resultC = mysql_db_query($basedatos, $sSQLC); $myrowC = mysql_fetch_array($resultC); $q0 = "UPDATE clientesInternos,cargosCuentaPaciente set \r\nclientesInternos.numRecibo= '" . $myrowC['numRecibo'] . "',\r\ncargosCuentaPaciente.numRecibo= '" . $myrowC['numRecibo'] . "'\r\nwhere\r\n\r\nclientesInternos.keyClientesInternos='" . $_GET['nT'] . "'\r\nand\r\nclientesInternos.keyClientesInternos=cargosCuentaPaciente.keyClientesInternos\r\n\r\n"; mysql_db_query($basedatos, $q0); echo mysql_error(); //************************************************************* if ($_GET['paquete'] == 'si') { ?> <script language="javascript"> ventanaSecundaria2('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /cargos/imprimirReciboPaquetes.php?numeroE=<?php echo $myrow3['numeroE']; ?> &nCuenta=<?php echo $myrow3['nCuenta']; ?> &keyClientesInternos=<?php echo $myrow3['keyClientesInternos']; ?> &paciente=<?php echo $_POST['paciente']; ?> &numeroConfirmacion=<?php echo $numeroConfirmacion; ?> &hora1=<?php echo $hora1; ?> &cajero=<?php echo $usuario; ?> &codigoPaquete=<?php echo $myrow3['codigoPaquete']; ?> &numRecibo=<?php echo $myrowC['numRecibo']; ?> &paciente=<?php echo $_POST['paciente']; ?> &cantidadRecibida=<?php echo $_POST['cantidadRecibida']; ?> &folioVenta=<?php echo $myrow3['folioVenta']; ?> '); close(); </script> <?php } else { ?> <script> javascript:ventanaSecundaria2('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /cargos/imprimirCargosPA.php?numeroE=<?php echo $numeroE; ?> &nCuenta=<?php echo $nCuenta; ?> &keyClientesInternos=<?php echo $nT; ?> &paciente=<?php echo $_POST['paciente']; ?> &numeroConfirmacion=<?php echo $numeroConfirmacion; ?> &hora1=<?php echo $hora1; ?> &cajero=<?php echo $usuario; ?> '); close(); </script> <?php } ?> <?php } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <?php $estilos = new muestraEstilos(); $estilos->styles(); ?> </head> <h1 align="center" class="titulos">Nota de Venta </h1> <form id="form1" name="form1" method="post" action=""> <table width="642" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#990099" class="Estilo24"> <tr> <th width="10" class="blanco" scope="col"> </th> <th bgcolor="#660066" class="blanco" scope="col"><div align="left" class="blanco">Referencia</div></th> <th bgcolor="#660066" class="blanco" scope="col"><div align="left" class="blanco"><?php echo $nCliente = $myrow3['folioVenta']; ?> <input name="numeroE" type="hidden" class="blanco" id="numeroE" value="<?php echo $nCliente = $_POST['numeroE']; ?> " readonly=""/> </label></div> </th> </tr> <tr> <th width="10" class="normal" scope="col"> </th> <th width="134" bgcolor="#FFCCFF" class="normal" scope="col"><div align="left" class="normal">Paciente: </div></th> <th width="408" bgcolor="#FFCCFF" scope="col"><div align="left" class="normal"><strong> <label> </label> </strong> <?php echo $myrow3['paciente']; ?> </div></th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <td class="normal">Compañía: </td> <td class="normal"> <label> <?php echo $traeSeguro = $myrow3['seguro']; ?> <?php displaySeguro::despliegaSeguro($traeSeguro, $basedatos); ?> <input name="seguro2" type="hidden" id="seguro2" value="<?php echo $traeSeguro; ?> " /> </label> </td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <td bgcolor="#FFCCFF" class="normal">N° Credencial: </td> <td bgcolor="#FFCCFF" class="normal"><?php echo $myrow3['credencial']; ?> </td> </tr> </table> <p align="center"> <?php if ($_GET['codigoPaquete']) { echo 'Paquete: ' . $_GET['codigoPaquete']; } ?> </p> <table width="713" border="0" align="center"> <tr> <th width="140" height="14" bgcolor="#660066" class="blanco" scope="col"><div align="left" class="blanco">Fecha/Hora </div></th> <th width="331" bgcolor="#660066" class="blanco" scope="col"><div align="left" class="blanco">Descripción/Concepto</div></th> <th width="34" bgcolor="#660066" class="blanco" scope="col"><div align="left" class="blanco">Cant</div></th> <th width="80" bgcolor="#660066" class="blanco" scope="col"><div align="left" class="blanco">Importe</div></th> <th width="50" bgcolor="#660066" class="blanco" scope="col"><div align="left" class="blanco">IVA</div></th> <th width="52" bgcolor="#660066" class="blanco" scope="col"><div align="left" class="blanco">Convenio</div></th> </tr> <tr> <?php //traigo agregados if ($_GET['paquete'] == 'si') { $sSQL81 = "\r\nSELECT \r\n*\r\nFROM\r\narticulosPaquetesPacientes \r\n WHERE \r\nkeyClientesInternos='" . $_GET['nT'] . "'\r\n"; } else { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,tipoConvenio,folioVenta\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\nkeyClientesInternos='" . $_GET['nT'] . "'\r\n \r\n \r\n \r\n order by fecha1,hora1 asc\r\n"; } $result81 = mysql_db_query($basedatos, $sSQL81); while ($myrow81 = mysql_fetch_array($result81)) { $a += '1'; if ($_GET['paquete'] == 'si') { $codigo = $proc = $myrow81['codigo']; $chain = $myrow81['hora'] . " " . cambia_a_normal($myrow81['fecha']); $sSQL31 = "select * from articulosPaquetes where keyE='" . $myrow81['keyE'] . "'"; $result31 = mysql_db_query($basedatos, $sSQL31); $myrow31 = mysql_fetch_array($result31); } else { $chain = $myrow81['hora1'] . " " . cambia_a_normal($myrow81['fecha1']); $art = $myrow81['codProcedimiento']; $codigo = $proc = $myrow81['codProcedimiento']; $keyCAP = $myrow81['keyCAP']; } ?> <td height="21" bgcolor="<?php echo $color; ?> " class="normal"> <?php echo $chain; ?> </td> <td bgcolor="<?php echo $color; ?> " class="normal"> <?php $descripcion = new articulosDetalles(); $descripcion->descripcion($keyCAP, $numeroE, $nCuenta, $codigo, $basedatos); ?> <?php if ($myrow811['um'] == 's' or $myrow811['um'] == 'S') { echo ' ( Servicio ) '; } ?> </td> <td bgcolor="<?php echo $color; ?> " ><div align="center" class="normal"> <?php echo $cantidad = $myrow81['cantidad']; ?> </div></td> <td bgcolor="<?php echo $color; ?> " class="normal"> <?php if ($_GET['paquete'] == 'si') { echo '$' . number_format($myrow31['precioPaquete1'], 2); $sumatoria[0] += $myrow31['precioPaquete1'] * $myrow31['cantidad']; } else { $importe = new acumulados(); echo $importe->importe($keyCAP, $basedatos); } ?> </td> <td bgcolor="<?php echo $color; ?> " class="normal"> <?php if ($_GET['paquete'] == 'si') { echo '$' . number_format($myrow31['ivaPrecioPaquete1'], 2); $sumatoriaIVA[0] += $myrow31['ivaPrecioPaquete1'] * $myrow31['cantidad']; } else { $mostrarIVA = new articulosDetalles(); echo $mostrarIVA->mostrarIVA($keyCAP, $basedatos); } ?> </td> <td bgcolor="<?php echo $color; ?> "><div align="center" class="normal"> <?php if ($myrow81['tipoConvenio'] and $myrow81['tipoConvenio'] != 'No') { echo 'C'; } else { echo '---'; } ?> </div></td> </tr> <?php } ?> </table> <p> </p> <div align="center"> <table width="558" border="0" align="center"> <tr> <td width="113" class="style12"> </td> <td width="124" class="style12"> </td> <td width="97" class="normal">Total Cargos <?php $totalAcumulado = new acumulados(); if ($_GET['paquete'] == 'si') { echo '$' . number_format($sumatoria[0] + $sumatoriaIVA[0], 2); $cantidadRecibida = $sumatoria[0] + $sumatoriaIVA[0]; } else { echo "\$" . number_format($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta), 2); } ?> </td> <td width="106" height="23"><div align="left" class="normal">Total Abonos <?php $abonos = new acumulados(); echo "\$" . number_format($abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </div></td> <td width="96"><div align="left" class="normal"><strong>Saldo Actual</strong><strong> <?php if ($_GET['paquete'] == 'si') { $abono = $abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta); $abono1 = $abono * '-1'; echo '$' . number_format(round($sumatoria[0] + $sumatoriaIVA[0] - $abono1), 2); } else { if ($abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta) < 0) { $abono = $abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta); $abono1 = $abono * '-1'; } echo "\$" . number_format($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta) - $abono1, 2); } ?> </strong></div></td> </tr> <tr> <td class="style12"> </td> <td class="style12"> </td> <td class="style12"><input name="cantidadRecibida" type="hidden" class="style7" id="cantidadRecibida" value="" /></td> <td height="23" class="normal"><div align="right"></div></td> <td class="normal"><div align="right"></div></td> </tr> <tr> <td class="style12"> </td> <td class="style12"> </td> <td class="style12"> </td> <td height="23" class="style23 Estilo24"><div align="right"></div></td> <td class="style12"><div align="right"></div></td> </tr> </table> </div> <p align="center"> <?php if ($_GET['paquete'] == 'si') { //***********************CALCULAR if (round($sumatoria[0] + $sumatoriaIVA[0] - $abono1) == NULL) { ?> <label> <input name="imprimir" type="image" class="style27" id="imprimir" value="Imprimir" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /imagenes/btns/printbutton.png"/> </label> <?php } else { ?> <input name="Submit" type="image" class="style27" value="Aplicar Pagos" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /imagenes/btns/aplicapay.png" onclick="javascript:ventanaSecundaria7('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/ventanaAplicaPagoInternos.php?usuario=<?php echo $_GET['usuario']; ?> &numeroE=<?php echo $numeroE; ?> &almacen=<?php echo $_GET['almacenSolicitante']; ?> &almacenFuente=<?php echo $almacen; ?> &seguro=<?php echo $seguroT; ?> &nCuenta=<?php echo $myrow3['keyClientesInternos']; ?> &tipoCliente=<?php echo 'particular'; ?> &tipoVenta=<?php echo $_GET['tipoVenta']; ?> &paquete=<?php echo $_GET['paquete']; ?> ')"/> <input name="keyClientesInternos" type="hidden" class="style7" id="keyClientesInternos" value="<?php echo $_GET['nT']; ?> " /> <?php } //********************************* } else { if (round($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta) - $abono1) == NULL) { ?> <label> <input name="imprimir" type="image" class="style27" id="imprimir" value="Imprimir" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /imagenes/btns/printbutton.png"/> </label> <?php } else { ?> <input name="Submit" type="image" class="style27" value="Aplicar Pagos" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /imagenes/btns/aplicapay.png" onclick="javascript:ventanaSecundaria7('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/ventanaAplicaPagoInternos.php?usuario=<?php echo $_GET['usuario']; ?> &numeroE=<?php echo $numeroE; ?> &almacen=<?php echo $_GET['almacenSolicitante']; ?> &almacenFuente=<?php echo $almacen; ?> &seguro=<?php echo $seguroT; ?> &nCuenta=<?php echo $myrow3['keyClientesInternos']; ?> &tipoCliente=<?php echo 'particular'; ?> &tipoVenta=<?php echo $_GET['tipoVenta']; ?> ')"/> <input name="keyClientesInternos" type="hidden" class="style7" id="keyClientesInternos" value="<?php echo $_GET['nT']; ?> " /> <?php } } ?> </p> </form> <p align="center"> </p> </body> </html> <?php }
public function eCuenta($nT, $basedatos) { include CONSTANT_PATH_CONFIGURACION . "/funciones.php"; if (!$_GET['nT']) { $_GET['nT'] = $_GET['nt']; } ?> <script language=javascript> function ventanaSecundaria4 (URL){ window.open(URL,"ventana4","width=800,height=300,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria2 (URL){ window.open(URL,"ventana2","width=300,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language="javascript" type="text/javascript"> //Validacion de campos de texto no vacios by Mauricio Escobar // //Iv�n Nieto P�rez //Este script y otros muchos pueden //descarse on-line de forma gratuita //en El C�digo: www.elcodigo.com //********************************************************************************* // Function que valida que un campo contenga un string y no solamente un " " // Es tipico que al validar un string se diga // if(campo == "") ? alert(Error) // Si el campo contiene " " entonces la validacion anterior no funciona //********************************************************************************* //busca caracteres que no sean espacio en blanco en una cadena function vacio(q) { for ( i = 0; i < q.length; i++ ) { if ( q.charAt(i) != " " ) { return true } } return false } //valida que el campo no este vacio y no tenga solo espacios en blanco function valida(F) { if( vacio(F.campo.value) == false ) { alert("Introduzca un cadena de texto.") return false } else { alert("OK") //cambiar la linea siguiente por return true para que ejecute la accion del formulario return true } } </script> <SCRIPT LANGUAGE="JavaScript"> function checkIt(evt) { evt = (evt) ? evt : window.event var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57)) { status = "Este campo s�lo acepta n�meros." return false } status = "" return true } </SCRIPT> <script type="text/javascript"> <!-- por carlitos. cualquier duda o pregunta, visita www.forosdelweb.com var ancho=100 var alto=100 var fin=300 var x=100 var y=100 function inicio() { ventana = window.open("cita.php", "_blank", "height=1,width=1,top=x,left=y,screenx=x,screeny=y"); abre(); } function abre() { if (ancho<=fin) { ventana.moveto(x,y); ventana.resizeto(ancho,alto); x+=5 y+=5 ancho+=15 alto+=15 timer= settimeout("abre()",1) } else { cleartimeout(timer) } } // --> </script> <?php //************************ACTUALIZO PRECIOS********************** //********************Llenado de datos $sSQL3 = "Select * From clientesInternos WHERE keyClientesInternos = '" . $_GET['nT'] . "' "; $result3 = mysql_db_query($basedatos, $sSQL3); $myrow3 = mysql_fetch_array($result3); $numeroE = $myrow3['numeroE']; $nCuenta = $myrow3['nCuenta']; //***************aplicar pago********************** if (!$_POST['tipoVista']) { $_POST['tipoVista'] = 'Detalle'; } ?> <!-Hoja de estilos del calendario --> <link rel="stylesheet" type="text/css" media="all" href="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-tas.css" title="win2k-cold-1" /> <!-- librer�a principal del calendario --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar.js"></script> <!-- librer�a para cargar el lenguaje deseado --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/lang/calendar-es.js"></script> <!-- librer�a que declara la funci�n Calendar.setup, que ayuda a generar un calendario en unas pocas l�neas de c�digo --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-setup.js"></script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title></title> <style type="text/css"> <!-- .style13 {color: #FFFFFF} .style11 {color: #FFFFFF; font-size: 10px; font-weight: bold; } .style7 {font-size: 9px} .Estilo24 {font-size: 10px} .style19 {color: #000000; font-weight: bold; } --> </style> </head> <style type="text/css"> <!-- .style12 {font-size: 10px} .style14 {font-size: 10px; color: #FFFFFF; } .style21 {color: #FF0000} --> </style> <BODY > <h1 align="center">Estado de Cuenta </h1> <form id="form1" name="form1" method="post" action=""> <table width="642" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#990099" class="Estilo24"> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th bgcolor="#660066" class="style14" scope="col"><div align="left">Número de Transacción: </div></th> <th bgcolor="#660066" class="style14" scope="col"><div align="left"><?php echo $nCliente = $myrow3['keyClientesInternos']; ?> <input name="numeroE" type="hidden" class="Estilo24" id="numeroE" value="<?php echo $nCliente = $_POST['numeroE']; ?> " readonly=""/> </label></div> </th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th class="Estilo24" scope="col"><div align="left"><strong>Médico: </strong></div></th> <th class="Estilo24" scope="col"><div align="left"> <label> <?php echo $medico = $myrow3['medico']; ?> </label> <label> </label> <?php $sSQL18 = "Select * From medicos WHERE numMedico ='" . $medico . "'"; $result18 = mysql_db_query($basedatos, $sSQL18); $rNombre18 = mysql_fetch_array($result18); ?> <?php echo $dr = "Dr(a): " . $rNombre18["apellido1"] . " " . $rNombre18["apellido2"] . " " . $rNombre18["apellido3"] . " " . $rNombre18["nombre1"] . " " . $rNombre18["nombre2"]; ?> </div></th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th width="134" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong>Paciente: </strong></div></th> <th width="408" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong> <label> </label> </strong> <?php echo $myrow3['paciente']; ?> </div></th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <td class="Estilo24">Compañía: </td> <td class="Estilo24"><label> <?php echo $traeSeguro = $myrow3['seguro']; ?> <?php $sSQL212 = "SELECT *\r\nFROM\r\nclientes\r\nWHERE \r\nnumCliente='" . $traeSeguro . "'\r\n "; $result212 = mysql_db_query($basedatos, $sSQL212); $myrow212 = mysql_fetch_array($result212); ?> <input name="seguro2" type="hidden" id="seguro2" value="<?php echo $traeSeguro; ?> " /> </label></td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <td bgcolor="#FFCCFF" class="Estilo24">N° Credencial: </td> <td bgcolor="#FFCCFF" class="Estilo24"><?php echo $myrow3['credencial']; ?> </td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <td class="Estilo24">Fecha</td> <td class="Estilo24"><span class="style12"> <label> <input type="checkbox" name="banderaFecha" value="checkbox" onClick="javascript:this.form.submit();" <?php if ($_POST['banderaFecha']) { echo 'checked="checked"'; } ?> /> </label> <?php if ($_POST['banderaFecha']) { ?> <input name="fecha" type="text" class="style12" id="campo_fecha" value="<?php if ($_POST['fecha']) { echo $_POST['fecha']; } else { if ($myrow3['hoy']) { echo $myrow3['hoy']; } else { echo $fecha1; } } ?> " size="9" readonly="" /> <label> <input name="button" type="button" class="style12" id="lanzador" value="..." /> Entre </label> <input name="fecha2" type="text" class="style12" id="campo_fecha1" value="<?php if ($_POST['fecha2']) { echo $_POST['fecha2']; } else { if ($myrow3['hoy']) { echo $myrow3['hoy']; } else { echo $fecha1; } } ?> " size="9" readonly="" /> <label> <input name="button2" type="button" class="style12" id="lanzador1" value="..." /> <input name="show" type="submit" class="style7" id="show" value=">" /> <?php } else { ?> <input name="fecha3" type="hidden" class="style12" id="fecha2" value="<?php echo 'all'; ?> "/> <?php } ?> </label> </span></td> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <td bgcolor="#FFCCFF" class="Estilo24">Tipo de Vista: </td> <td bgcolor="#FFCCFF" class="Estilo24"><label> <select name="tipoVista" class="style7" id="tipoVista" onChange="javascript:form1.submit();"> <option>Escoje la Opción</option> <option <?php if ($_POST['tipoVista'] == 'Agrupado') { ?> selected="selected" <?php } ?> value="Agrupado">Agrupado</option> <option <?php if ($_POST['tipoVista'] == 'Detalle') { ?> selected="selected" <?php } ?> value="Detalle">Detalle</option> </select> </label></td> </tr> </table> <p> </p> <?php if ($_POST['tipoVista']) { ?> <table width="672" border="0" align="center"> <tr> <th width="104" height="14" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Fecha/Hora (Cargo)</span></th> <th width="405" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Descripción</span></th> <th width="21" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Cant</span></th> <th width="59" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Importe IC </span></th> <th width="61" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">IVA</span></th> </tr> <tr> <?php //traigo agregados if ($_POST['tipoVista'] == 'Agrupado' and $_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\n *,((precioVenta*cantidad)+iva) as sumaTres\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n and (status!='standby' and statusCargo!='standby')\r\n and\r\n(fecha1 between'" . $_POST['fecha'] . "' and '" . $_POST['fecha2'] . "')\r\n\r\n\r\n \r\n group by codProcedimiento \r\n order by fecha1,hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Detalle' and $_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\n *,((precioVenta*cantidad)+iva) as sumaTres\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\n numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n \r\n and (status!='standby' and statusCargo!='standby')\r\n and \r\n (fecha1 between'" . $_POST['fecha'] . "' and '" . $_POST['fecha2'] . "')\r\n\r\n order by fecha1,hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Agrupado' and !$_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\n *,((precioVenta*cantidad)+iva) as sumaTres\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\nnumeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n\r\n\r\n \r\n group by codProcedimiento \r\n order by fecha1,hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Detalle' and !$_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\n *,((precioVenta*cantidad)+iva) as sumaTres\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\n numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n\r\n\r\n \r\n \r\n \r\n order by fecha1,hora1 asc\r\n"; } } } } if ($result81 = mysql_db_query($basedatos, $sSQL81)) { while ($myrow81 = mysql_fetch_array($result81)) { $keyCAP = $myrow81['keyCAP']; $a = $a + 1; $art = $myrow81['codProcedimiento']; $proc = $myrow81['codProcedimiento']; $codigo = $myrow81['codProcedimiento']; if ($col) { $color = '#FFCCFF'; $col = ""; } else { $color = '#FFFFFF'; $col = 1; } if ($_POST['tipoVista'] == 'Agrupado') { $sSQL14 = "\r\nSELECT \r\nsum(cantidad) as cantidad2\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE \r\ncodProcedimiento = '" . $proc . "' and numeroE = '" . $numeroE . "'\r\n"; $result14 = mysql_db_query($basedatos, $sSQL14); $myrow14 = mysql_fetch_array($result14); } ?> <td height="23" bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"><?php echo $myrow81['fecha1'] . " " . $myrow81['hora1']; ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"><span class="style12"><span class="<?php echo $estilo; ?> "> <?php $descripcion = new articulosDetalles(); $descripcion->descripcion($numeroE, $nCuenta, $codigo, $basedatos); ?> </span></span> <span class="style12"> <?php if ($myrow81['um'] == 's' or $myrow81['um'] == 'S') { echo ' ( Servicio ) '; } ?> <?php if ($myrow81['status'] == 'cerrada') { echo '<blink>' . "[Cerrada]" . '</blink>'; } else { //echo '<blink>'."[CxC]".'</blink>'; } ?> </span> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"> <?php if ($_POST['tipoVista'] == 'Agrupado') { echo $cantidad = $myrow14['cantidad2']; } else { echo $cantidad = $myrow81['cantidad']; } ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"> <span class="style12"><span class="<?php echo $estilo; ?> "> <?php $importe = new acumulados(); echo $importe->importe($keyCAP, $basedatos); ?> </span></span> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="style7"> <?php $mostrarIVA = new articulosDetalles(); echo $mostrarIVA->mostrarIVA($keyCAP, $basedatos); ?> </span></td> <?php if ($tipoTrans and !$myrow81['sumaTres']) { //echo "$".number_format("-".$myrow81['cantidadRecibida'],2); $TOTAL += "-" . $myrow81['cantidadRecibida']; } else { //echo "$".number_format($costoProcedimientos[0],2); //$TOTAL+=$costoProcedimientos[0]; //echo "$".number_format($myrow81['sumaTres'],2); } ?> </tr> <?php } } ?> </table> <p> <input name="paso_bandera1" type="hidden" id="paso_bandera1" value="<?php echo $bandera; ?> " /> <input name="recibo" type="hidden" id="recibo" value="<?php echo $nCliente = $_POST['numeroE']; ?> " /> <input name="nCliente" type="hidden" id="nCliente" value="<?php echo $nCliente; ?> " /> <input name="almacen" type="hidden" id="almacen" value="<?php echo $ALMACEN; ?> " /><?php //echo "$".number_format($TOTAL,2); ?> </p> <div align="center"> <p> </p> <table width="239" border="0" align="left" class="style12"> <tr> <td width="139" height="23" bgcolor="#FFCCFF" class="style12">Medicamentos</td> <td width="90" bgcolor="#FFCCFF" class="style12"><div align="right"><?php echo $Tmedicamentos; ?> </div></td> </tr> <tr> <td height="23" class="style12">Material Quirúrgico </td> <td class="style12"><div align="right"><?php echo $TPAT; ?> </div></td> </tr> <tr bgcolor="#FFCCFF"> <td height="23" class="style12">Servicios Hospitalarios </td> <td class="style12"><div align="right"><?php echo "\$" . number_format($servicios[0], 2); ?> </div></td> </tr> <tr> <td height="23" class="style12">IVA</td> <td class="style12"><div align="right"> <?php $iva = new acumulados(); $iva = $iva->ivaAcumulado($basedatos, $usuario, $numeroE, $nCuenta); echo "\$" . number_format($iva, 2); ?> </div></td> </tr> <tr bgcolor="#FFCCFF"> <td height="23" class="style12">Total Cargos </td> <td class="style12"><div align="right"> <?php $totalAcumulado = new acumulados(); echo "\$" . number_format($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </div></td> </tr> </table> <p> </p> <table width="239" border="0" align="center" class="style12"> <tr bgcolor="#FFCCFF"> <td width="141" height="23" bgcolor="#FFCCFF" class="style12"><span class="style7">Total Abonos</span></td> <td width="88" class="style12"> <div align="right"> <?php $abonos = new acumulados(); echo "\$" . number_format($abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </div></td> </tr> <tr> <td height="23" class="style12">Saldo Actual </td> <td class="style12"><div align="right"> <?php $totalCargos = new acumulados(); $totalCargos = $totalCargos->total($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta), $abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta), $numeroE1, $nCuenta1); echo "\$" . number_format($totalCargos, 2); ?> </div></td> </tr> </table> <p> </p> </div> <p> </p> </form> <?php } ?> <p align="center"> </p> <?php if ($_POST['banderaFecha']) { ?> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador" // el id del bot�n que lanzar� el calendario }); </script> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha1", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador1" // el id del bot�n que lanzar� el calendario }); </script> <?php } ?> </body> </html> <?php }
public function eCuenta($bali, $transacciones, $TITULO, $entidad, $fecha1, $hora1, $dia, $usuario, $nT, $basedatos) { include CONSTANT_PATH_CONFIGURACION . "/funciones.php"; $cargosCia = new acumulados(); ?> <script language=javascript> function ventanaSecundaria4 (URL){ window.open(URL,"ventana4","width=800,height=300,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria2 (URL){ window.open(URL,"ventana2","width=630,height=500,scrollbars=YES,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria1 (URL){ window.open(URL,"ventana1","width=530,height=300,scrollbars=YES") } </script> <script language=javascript> function ventanaSecundaria5 (URL){ window.open(URL,"ventana5","width=500,height=500,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria3 (URL){ window.open(URL,"ventana3","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria6 (URL){ window.open(URL,"ventana6","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria7 (URL){ window.open(URL,"ventana7","width=500,height=600,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language="javascript" type="text/javascript"> //Validacion de campos de texto no vacios by Mauricio Escobar // //Iv�n Nieto P�rez //Este script y otros muchos pueden //descarse on-line de forma gratuita //en El C�digo: www.elcodigo.com //********************************************************************************* // Function que valida que un campo contenga un string y no solamente un " " // Es tipico que al validar un string se diga // if(campo == "") ? alert(Error) // Si el campo contiene " " entonces la validacion anterior no funciona //********************************************************************************* //busca caracteres que no sean espacio en blanco en una cadena function vacio(q) { for ( i = 0; i < q.length; i++ ) { if ( q.charAt(i) != " " ) { return true } } return false } //valida que el campo no este vacio y no tenga solo espacios en blanco function valida(F) { if( vacio(F.campo.value) == false ) { alert("Introduzca un cadena de texto.") return false } else { alert("OK") //cambiar la linea siguiente por return true para que ejecute la accion del formulario return true } } </script> <SCRIPT LANGUAGE="JavaScript"> function checkIt(evt) { evt = (evt) ? evt : window.event var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57)) { status = "Este campo s�lo acepta n�meros." return false } status = "" return true } </SCRIPT> <script type="text/javascript"> <!-- por carlitos. cualquier duda o pregunta, visita www.forosdelweb.com var ancho=100 var alto=100 var fin=300 var x=100 var y=100 function inicio() { ventana = window.open("cita.php", "_blank", "height=1,width=1,top=x,left=y,screenx=x,screeny=y"); abre(); } function abre() { if (ancho<=fin) { ventana.moveto(x,y); ventana.resizeto(ancho,alto); x+=5 y+=5 ancho+=15 alto+=15 timer= settimeout("abre()",1) } else { cleartimeout(timer) } } // --> </script> <?php //************************ACTUALIZO ********************** //********************Llenado de datos if (!$_GET['nT']) { $_GET['nT'] = $nT; } if (!$bali) { $bali = $_GET['almacenFuente']; } $sSQL3 = "Select * From clientesInternos WHERE keyClientesInternos = '" . $_GET['nT'] . "' "; $result3 = mysql_db_query($basedatos, $sSQL3); $myrow3 = mysql_fetch_array($result3); $numeroE = $myrow3['numeroE']; $nCuenta = $myrow3['nCuenta']; $cuarto = $myrow3['cuarto']; //***************aplicar pago********************** if ($_POST['actualizar']) { $particular = $_POST['particular']; $aseguradora = $_POST['aseguradora']; for ($i = 0; $i <= $_POST['bandera2']; $i++) { if ($aseguradora[$i]) { $status = 'efectivo'; $keyCAP[] = $aseguradora[$i]; } else { $status = 'cxc'; $keyCAP[] = $particular[$i]; } $agrega = "UPDATE cargosCuentaPaciente set \r\nstatusAlta='" . $status . "',\r\nusuarioAlta='" . $usuario . "',\r\nfechaAlta='" . $fecha1 . "',\r\nhoraAlta='" . $hora1 . "'\r\n\r\nwhere\r\nkeyCAP='" . $keyCAP[$i] . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); } //cierra for } //cierra actualizar $cargosParticulares = new acumulados(); $totalxSurtir = new acumulados(); $cargosAseguradora = new acumulados(); $otros = new acumulados(); if ($_POST['cerrar'] and $cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $totalxSurtir->totalxSurtir($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $otros->otros($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta) == NULL) { $particular = $_POST['particular']; $aseguradora = $_POST['aseguradora']; //********************CIERRO STATUS CUENTA*********************** $agrega = "UPDATE cargosCuentaPaciente set \r\nstatusCuenta='cerrada'\r\n\r\n\r\nwhere\r\nnumeroE='" . $numeroE . "' \r\nand\r\nnCuenta='" . $nCuenta . "'\r\n\r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); //********************************************* //cierro cuenta $agrega = "UPDATE clientesInternos set \r\nstatus='cerrada',\r\nstatusCuenta='cerrada',\r\nusuarioCierre='" . $usuario . "',\r\nfechaCierre='" . $fecha1 . "',\r\nhoraCierre='" . $hora1 . "'\r\n\r\nwhere\r\nkeyClientesInternos='" . $_GET['nT'] . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); //cierro cuarto a sucio $agrega = "UPDATE cuartos set \r\nstatus='sucio',\r\nusuarioSalida='" . $usuario . "',\r\nfechaSalida='" . $fecha1 . "',\r\nhoraSalida='" . $hora1 . "'\r\n\r\nwhere\r\ncodigoCuarto='" . $cuarto . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); $leyenda = 'Se cerr� la cuenta'; ?> <?php } if (!$_POST['tipoVista']) { $_POST['tipoVista'] = 'Detalle'; } ?> <?php if ($_POST['imprimir']) { ?> <script> javascript:ventanaSecundaria2('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /cargos/imprimirCargosInternosCC.php?numeroE=<?php echo $numeroE; ?> &nCuenta=<?php echo $nCuenta; ?> &paciente=<?php echo $_POST['paciente']; ?> &numeroConfirmacion=<?php echo $numeroConfirmacion; ?> &hora1=<?php echo $hora1; ?> &keyClientesInternos=<?php echo $myrow3['keyClientesInternos']; ?> '); <!-- window.opener.document.forms["form1"].submit(); self.close(); // --> </script> <?php } ?> <!-Hoja de estilos del calendario --> <link rel="stylesheet" type="text/css" media="all" href="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-tas.css" title="win2k-cold-1" /> <!-- librer�a principal del calendario --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar.js"></script> <!-- librer�a para cargar el lenguaje deseado --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/lang/calendar-es.js"></script> <!-- librer�a que declara la funci�n Calendar.setup, que ayuda a generar un calendario en unas pocas l�neas de c�digo --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-setup.js"></script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <?php $showStyles = new muestraEstilos(); $showStyles->styles(); ?> </head> <BODY > <?php //ventanasPrototype::links(); ?> <h1 align="center"><?php echo $TITULO; ?> </h1> <form id="form1" name="form1" method="post" action=""> <table width="549" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#990099" class="normal"> <tr> <th bgcolor="#660066" class="blanco" scope="col"><div align="left">Número de Transacción: </div></th> <th bgcolor="#660066" class="blanco" scope="col"><div align="left"><?php echo $nCliente = $myrow3['keyClientesInternos']; ?> <input name="numeroE" type="hidden" class="normal" id="numeroE" value="<?php echo $nCliente = $_POST['numeroE']; ?> " readonly=""/> </label></div> </th> </tr> <tr> <th width="134" bgcolor="#FFCCFF" class="normal" scope="col"><div align="left"><strong>Paciente: </strong></div></th> <th width="408" bgcolor="#FFCCFF" class="normal" scope="col"><div align="left"><strong> <label> </label> </strong> <?php echo $myrow3['paciente']; ?> </div></th> </tr> <tr> <td class="normal">Compañía: </td> <td class="normal"><label> <?php echo $traeSeguro = $myrow3['seguro']; ?> <?php displaySeguro::despliegaSeguro($traeSeguro, $basedatos); ?> <input name="seguro2" type="hidden" id="seguro2" value="<?php echo $traeSeguro; ?> " /> </label></td> </tr> <tr> <td bgcolor="#FFCCFF" class="normal">N° Credencial: </td> <td bgcolor="#FFCCFF" class="normal"><?php echo $myrow3['credencial']; ?> </td> </tr> <tr> <td class="normal">Fecha</td> <td class="normal"><span class="normal"> <label> <input type="checkbox" name="banderaFecha" value="checkbox" onClick="javascript:this.form.submit();" <?php if ($_POST['banderaFecha']) { echo 'checked="checked"'; } ?> /> </label> <?php if ($_POST['banderaFecha']) { ?> <input name="fecha" type="text" class="normal" id="campo_fecha" value="<?php if ($_POST['fecha']) { echo $_POST['fecha']; } else { if ($myrow3['hoy']) { echo $myrow3['hoy']; } else { echo $fecha1; } } ?> " size="9" readonly="" /> <label> <input name="button" type="button" class="normal" id="lanzador" value="..." /> Entre </label> <input name="fecha2" type="text" class="normal" id="campo_fecha1" value="<?php if ($_POST['fecha2']) { echo $_POST['fecha2']; } else { if ($myrow3['hoy']) { echo $myrow3['hoy']; } else { echo $fecha1; } } ?> " size="9" readonly="" /> <label> <input name="button2" type="button" class="normal" id="lanzador1" value="..." /> <input name="show" type="submit" class="normal" id="show" value=">" /> <?php } else { ?> <input name="fecha3" type="hidden" class="normal" id="fecha2" value="<?php echo 'all'; ?> "/> <?php } ?> </label> </span></td> </tr> <tr> <th class="normal" scope="col"><div align="left"><strong>Médico: </strong></div></th> <th class="normal" scope="col"><div align="left"> <label> <?php echo $medico = $myrow3['medico']; ?> </label> <label> </label> <?php $sSQL18 = "Select * From medicos WHERE numMedico ='" . $medico . "'"; $result18 = mysql_db_query($basedatos, $sSQL18); $rNombre18 = mysql_fetch_array($result18); ?> <?php echo $dr = "Dr(a): " . $rNombre18["apellido1"] . " " . $rNombre18["apellido2"] . " " . $rNombre18["apellido3"] . " " . $rNombre18["nombre1"] . " " . $rNombre18["nombre2"]; ?> </div></th> </tr> <tr> <td bgcolor="#FFCCFF" class="normal">Tipo de Vista: </td> <td bgcolor="#FFCCFF" class="normal"><label> <select name="tipoVista" class="normal" id="tipoVista" onChange="javascript:form1.submit();"> <option>Escoje la Opción</option> <option <?php if ($_POST['tipoVista'] == 'Agrupado') { ?> selected="selected" <?php } ?> value="Agrupado">Agrupado</option> <option <?php if ($_POST['tipoVista'] == 'Detalle') { ?> selected="selected" <?php } ?> value="Detalle">Detalle</option> </select> </label></td> </tr> </table> <p> </p> <?php //compruebo el proceso de alta $sSQL32 = "Select * From procesoAlta WHERE (status='request' or status='cargado')\r\nand\r\nkeyClientesInternos='" . $_GET['nT'] . "'"; $result32 = mysql_db_query($basedatos, $sSQL32); $myrow32 = mysql_fetch_array($result32); ?> <?php if ($myrow32['numeroE']) { ?> <table width="471" border="0" align="center"> <tr> <th width="420" height="15" bgcolor="#660066" scope="col"><div align="left"><span class="blanco">Departamento </span></div></th> <th width="58" bgcolor="#660066" scope="col"><div align="left"><span class="blanco">Fecha</span></div></th> <th width="76" bgcolor="#660066" scope="col"><div align="left"><span class="blanco">Hora</span></div></th> <th width="37" bgcolor="#660066" scope="col"><div align="left"><span class="blanco">Usuario</span></div></th> <th width="56" bgcolor="#660066" scope="col"><div align="left"><span class="blanco">Status </span></div></th> </tr> <tr> <?php $sSQL = "Select * From almacenes WHERE entidad='" . $entidad . "'\r\n and\r\naltaPaciente='si'\r\norder by descripcion ASC\r\n"; if ($sSQL) { $result = mysql_db_query($basedatos, $sSQL); while ($myrow = mysql_fetch_array($result)) { if ($col) { $color = '#FFCCFF'; $col = ""; } else { $color = '#FFFFFF'; $col = 1; } $A = $myrow['almacen']; $sSQL661 = "Select * From procesoAlta \r\nWHERE\r\nentidad='" . $entidad . "'\r\nand\r\nstatus='cargado'\r\nand\r\nalmacen='" . $A . "'\r\nand\r\nkeyClientesInternos='" . $_GET['nT'] . "'"; $result661 = mysql_db_query($basedatos, $sSQL661); $myrow661 = mysql_fetch_array($result661); ?> <td bgcolor="<?php echo $color; ?> " class="normal"><span class="style71"><?php if ($myrow661['status']) { echo $myrow['descripcion']; } else { echo $myrow['descripcion'] . ' [No se ha completado el proceso de Cierre]'; } ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="normal"><span class="style71"><?php if ($myrow661['fecha']) { echo cambia_a_normal($myrow661['fecha']); } ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="normal"><span class="style71"><?php echo $myrow661['hora']; ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="normal"><span class="style71"><?php echo $myrow661['usuario']; ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="normal"><span class="style71"><?php if (!$myrow661['status']) { echo '<img src="' . CONSTANT_PATH_SIMA_RAIZ . '/imagenes/candado.png" alt="LA CUENTA ESTA EN REVISION" width="12" height="12" border="0">'; } else { echo '<img src="' . CONSTANT_PATH_SIMA_RAIZ . '/imagenes/solicitado.png" alt="LA CUENTA ESTA EN REVISION" width="12" height="12" border="0">'; } ?> <span class="normal"></span></span></td> </tr> <?php } } ?> </table> <?php } ?> <p> <?php if ($_POST['tipoVista']) { ?> </p> <table width="847" border="0" align="center"> <tr> <th width="96" height="14" bgcolor="#660066" class="blanco" scope="col"><div align="left"><span class="blanco ">Fecha/Hora </span></div></th> <th width="300" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">Descripción/Concepto</span></div></th> <th width="21" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">Cant</span></div></th> <th width="55" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">P.U.</span></div></th> <th width="55" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">Importe</span></div></th> <th width="33" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">IVA</span></div></th> <th width="27" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">Status</span></div></th> <th width="47" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">D Solicita</span></div></th> <th width="52" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">D Cargo.</span></div></th> <th width="72" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">Tipo P </span></div></th> <th width="38" bgcolor="#660066" scope="col"><div align="left"><span class="blanco ">N </span></div></th> </tr> <?php //traigo agregados if ($_POST['tipoVista'] == 'Agrupado' and $_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,gpoProducto,naturaleza,tipoTransaccion,porcentajeVariable,cargosHospitalarios,descripcion,status,almacen,statusDevolucion\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE keyClientesInternos='" . $_GET['nT'] . "'\r\n \r\n and\r\n(fecha1 between'" . $_POST['fecha'] . "' and '" . $_POST['fecha2'] . "')\r\n\r\n\r\n \r\n group by codProcedimiento \r\n order by fecha1,hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Detalle' and $_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,gpoProducto,naturaleza,tipoTransaccion,porcentajeVariable,cargosHospitalarios,descripcion,status,almacen,statusDevolucion\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\nkeyClientesInternos='" . $_GET['nT'] . "'\r\n \r\n and \r\n (fecha1 between '" . $_POST['fecha'] . "' AND '" . $_POST['fecha2'] . "')\r\n \r\n order by hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Agrupado' and !$_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,gpoProducto,naturaleza,tipoTransaccion,porcentajeVariable,cargosHospitalarios,descripcion,status,almacen,statusDevolucion\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\nkeyClientesInternos='" . $_GET['nT'] . "'\r\n \r\n group by codProcedimiento \r\n order by fecha1,hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Detalle' and !$_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,gpoProducto,naturaleza,tipoTransaccion,porcentajeVariable,cargosHospitalarios,descripcion,status,almacen,statusDevolucion\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\nkeyClientesInternos='" . $_GET['nT'] . "'\r\nand \r\nstatus!='cancelado'\r\n \r\n \r\n \r\n order by fecha1,hora1 asc\r\n"; } } } } if ($result81 = mysql_db_query($basedatos, $sSQL81)) { while ($myrow81 = mysql_fetch_array($result81)) { if ($col) { $color = '#FFCCFF'; $col = ""; } else { $color = '#FFFFFF'; $col = 1; } $a += '1'; $art = $myrow81['codProcedimiento']; $codigo = $proc = $myrow81['codProcedimiento']; $keyCAP = $myrow81['keyCAP']; if ($_POST['tipoVista'] == 'Agrupado') { $sSQL14 = "\r\nSELECT \r\nsum(cantidad) as cantidad2\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE \r\ncodProcedimiento = '" . $proc . "' and numeroE = '" . $numeroE . "'\r\n"; $result14 = mysql_db_query($basedatos, $sSQL14); $myrow14 = mysql_fetch_array($result14); } $style = 'normal'; ?> <tr> <td height="21" bgcolor="<?php echo $color; ?> " class="<?php echo $style; ?> "><div align="left"><span class="<?php echo $estilo; ?> "> <?php echo $myrow81['hora1'] . " " . cambia_a_normal($myrow81['fecha1']); ?> </span></div></td> <td bgcolor="<?php echo $color; ?> "> <div align="left"> <span class="<?php echo $style; ?> "> <?php $descripcion = new articulosDetalles(); $descripcion->descripcion($keyCAP, $numeroE, $nCuenta, $codigo, $basedatos); if ($myrow81['status'] != 'transaccion') { $nombreMed = new nombreMedico(); //echo " ".$myrow81['descripcion'].$nombreMed->nombreMed($myrow81['almacen'],$basedatos); } ?> <?php if ($myrow81['gpoProducto']) { echo '[' . $myrow81['gpoProducto'] . ']'; } ?> </span> </div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $style; ?> "><div align="left"> <?php if ($_POST['tipoVista'] == 'Agrupado') { echo $cantidad = $myrow14['cantidad2']; } else { echo $cantidad = $myrow81['cantidad']; } ?> </div></td> <td bgcolor="<?php echo $color; ?> " ><?php if ($myrow81['naturaleza'] == 'C') { echo '$' . number_format($myrow81['precioVenta'], 2); } else { echo '---'; } ?> </td> <td bgcolor="<?php echo $color; ?> " ><div align="left"><span class="<?php echo $style; ?> "> <?php if ($myrow81['cargosHospitalarios']) { $tipoTransaccion = $myrow81['tipoTransaccion']; $sSQL6 = "\r\n\tSELECT \r\nvariable\r\nFROM\r\ncatTTCaja\r\nWHERE \r\ncodigoTT = '" . $tipoTransaccion . "'\r\nand\r\nvariable='si'\r\n"; $result6 = mysql_db_query($basedatos, $sSQL6); $myrow6 = mysql_fetch_array($result6); if ($myrow6['variable']) { if ($myrow81['cargosHospitalarios'] == 'si') { $banderaPM = new acumulados(); $precioVentaC = $banderaPM->banderaPorcentajeMedicamentos($entidad, $basedatos, $usuario, $numeroE, $nCuenta); $precioVentaC = porcentaje($precioVentaC, $myrow81['porcentajeVariable'], $a); } else { $cargosAseguradora = new acumulados(); $precioVentaC = $cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta); $precioVentaC = porcentaje($precioVentaC, $myrow81['porcentajeVariable'], $a); } //Actualiza $q1 = "UPDATE cargosCuentaPaciente set \r\nprecioVenta='" . $precioVentaC . "'\r\nWHERE \r\nkeyCAP='" . $keyCAP . "'"; //mysql_db_query($basedatos,$q1); echo mysql_error(); } } ?> <?php $importe = new acumulados(); echo $importe->importe($keyCAP, $basedatos); ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " > <div align="left"> <span class="<?php echo $style; ?> "> <?php $mostrarIVA = new articulosDetalles(); echo $mostrarIVA->mostrarIVA($keyCAP, $basedatos); ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $style; ?> "><div align="left"> <?php $status = new acumulados(); echo $status->status($keyCAP, $basedatos, $usuario, $numeroE, $nCuenta); ?> </div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $style; ?> "><div align="left"> <?php echo $myrow81['almacenSolicitante']; ?> </div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $style; ?> "><div align="left"><?php echo $myrow81['almacenDestino']; ?> </div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $style; ?> "><?php echo $myrow81['tipoCliente']; ?> </td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $style; ?> "> <div align="left"> <?php echo $myrow81['naturaleza']; ?> </div></td> </tr> <?php } ?> </table> <p> </p> <p> <input name="recibo" type="hidden" id="recibo" value="<?php echo $nCliente = $_POST['numeroE']; ?> " /> <input name="nCliente" type="hidden" id="nCliente" value="<?php echo $nCliente; ?> " /> <input name="almacen" type="hidden" id="almacen" value="<?php echo $ALMACEN; ?> " /> </p> <div align="center"> <div align="left"> <p> </p> <?php $mostrarCuadroGP = new cuadritoAcumuladoGPO(); echo $mostrarCuadroGP->mostrarCuadrito($_POST['fecha'], $_POST['fecha2'], 'normal', $entidad, $numeroE, $nCuenta, $basedatos); ?> <p> </p> <p> </p> </div> <p> </p> <table width="239" border="0" align="center" class="normal"> <tr> <td width="141" height="23" class="normal">Total por Surtir (iva incluido ) </td> <td width="88" class="normal"><div align="right"> <?php $totalxSurtir = new acumulados(); echo "\$" . number_format($totalxSurtir->totalxSurtir($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </div></td> </tr> </table> <p> </p> <p> </p> <table width="239" border="0" align="left" class="normal"> <tr> <td width="139" height="23" class="normal">IVA</td> <td width="90" class="normal"><div align="right"> <?php $iva = new acumulados(); $iva = $iva->ivaAcumulado($basedatos, $usuario, $numeroE, $nCuenta); echo "\$" . number_format($iva, 2); ?> </div></td> </tr> <tr bgcolor="#FFCCFF"> <td height="23" class="normal">Total Cargos </td> <td class="normal"><div align="right"> <?php $totalAcumulado = new acumulados(); $cargoS = $totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta); echo "\$" . number_format($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta) + $coaseguro, 2); ?> </div></td> </tr> </table> <p> </p> <p> </p> <p align="left"> </p> <table width="239" border="0" align="left" > <tr bgcolor="#FFCCFF"> <td width="141" height="23" class="normal"><span class="normal">Total Abonos</span></td> <td width="88" class="normal"> <div align="right"> <?php $abonos = new acumulados(); $abonoS = $abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta); echo "\$" . number_format($abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </div> </td> </tr> <tr> <td height="23" class="normal">Saldo Actual </td> <td class="normal"><div align="right"> <?php $totalCargos = new acumulados(); $totalCargos = $totalCargos->total($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta), $abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta), $numeroE1, $nCuenta1); if ($abonoS < 0) { $abonoS *= -1; } $STotal = $cargoS - $abonoS; echo "\$" . number_format($cargoS - $abonoS, 2); /* if(!$STotal and eregi('-',$STotal)){ echo 'step'; } */ /* if(($cargoS-$abonoS>0){ echo "$".number_format($cargoS-$abonoS,2); } else { echo "$".number_format(($cargoS-$abonoS)*-1,2); } */ ?> </div></td> </tr> </table> <?php if ($myrow3['status'] != 'cerrada') { ?> <p> </p> <p> </p> <p> </p> <p> </p> <p> </p> <table width="86%" border="0" cellspacing="0" cellpadding="0"> <tr> <th width="15%" scope="col"> <table width="94" border="0" align="left"> <tr bgcolor="#660066"> <th class="blanco" scope="col"> <span class="blanco">Particular<a href="#" onClick="javascript:ventanaSecundaria7('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/ventanaAplicaPagoInternos.php?numeroE=<?php echo $numeroE; ?> &almacen=<?php echo $bali; ?> &seguro=<?php echo $_POST['seguro']; ?> &nCuenta=<?php echo $myrow3['keyClientesInternos']; ?> &tipoCliente=<?php echo 'particular'; ?> ')"> </a></span></th> </tr> <tr> <th width="98" bgcolor="#660066" class="blanco" scope="col"><span class="blanco"> <span class="blanco">Total a pagar </span> </span></th> </tr> <tr> <td><div align="center"><span class="normal"> <span class="normal"> <?php //echo "$".number_format($cargosParticulares->cargosParticulares($basedatos,$usuario,$numeroE,$nCuenta),2); $cargosParticulares = new acumulados(); $T = $cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta); // $T=round($T,$ase); if ($T and $transacciones == 'si') { ?> <a href="#" onClick="javascript:ventanaSecundaria7('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/ventanaAplicaPagoInternos.php?almacenFuente=<?php echo $bali; ?> &numeroE=<?php echo $numeroE; ?> &almacen=<?php echo $bali; ?> &seguro=<?php echo $_POST['seguro']; ?> &nCuenta=<?php echo $myrow3['keyClientesInternos']; ?> &tipoCliente=<?php echo 'particular'; ?> &tipoVenta=<?php echo 'interno'; ?> &tipoMovimiento=<?php echo 'transaccion'; ?> &tipoPago=Efectivo')"> <?php echo "\$" . number_format($cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </a> <?php } else { echo "\$" . number_format($cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta), 2); } ?> </span></span></div></td> </tr> </table> </th> <th width="2%" scope="col"> </th> <th width="15%" scope="col"><table width="94" border="0" align="center"> <tr> <th bgcolor="#660066" scope="col"><span class="blanco">Otros Clientes </span></th> </tr> <tr> <th width="88" bgcolor="#660066" scope="col"><span class="blanco">Total a pagar </span></th> </tr> <tr> <td><div align="center"><span class="normal"> <?php $otros = new acumulados(); if ($otros->otros($basedatos, $usuario, $numeroE, $nCuenta) > 0) { ?> <a href="#" onClick="javascript:ventanaSecundaria7('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/ventanaAplicaPagoInternos.php?numeroE=<?php echo $numeroE; ?> &almacen=<?php echo $bali; ?> &almacenFuente=<?php echo $bali; ?> &seguro=<?php echo $_POST['seguro']; ?> &nCuenta=<?php echo $myrow3['keyClientesInternos']; ?> &tipoCliente=<?php echo 'otros'; ?> &tipoVenta=<?php echo 'interno'; ?> &tipoMovimiento=<?php echo 'transaccion'; ?> ')"> <?php echo "\$" . number_format($otros->otros($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </a> <?php } else { echo "\$" . number_format($otros->otros($basedatos, $usuario, $numeroE, $nCuenta), 2); } ?> </span></div></td> </tr> </table></th> <th width="31%" scope="col"> </th> <th width="2%" scope="col"> </th> <th width="5%" scope="col"> </th> <th width="16%" scope="col"><table width="94" border="0"> <tr> <th bgcolor="#660066" scope="col"><span class="blanco">D.Coaseguro </span></th> </tr> <tr> <th width="88" bgcolor="#660066" scope="col"><span class="blanco">Total a pagar </span></th> </tr> <tr> <td><div align="center"><span class="normal"> <?php $coaseguro = new acumulados(); if ($coaseguro->cargosCoaseguro($basedatos, $usuario, $numeroE, $nCuenta) > 0) { ?> <a href="#" onClick="javascript:ventanaSecundaria7('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/ventanaAplicaPagoInternos.php?numeroE=<?php echo $numeroE; ?> &almacen=<?php echo $bali; ?> &almacenFuente=<?php echo $bali; ?> &seguro=<?php echo $_POST['seguro']; ?> &nCuenta=<?php echo $myrow3['keyClientesInternos']; ?> &tipoCliente=<?php echo 'coaseguro'; ?> &tipoVenta=<?php echo 'interno'; ?> &tipoMovimiento=<?php echo 'transaccion'; ?> ')"> <?php echo "\$" . number_format($coaseguro->cargosCoaseguro($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </a> <?php } else { echo "\$" . number_format($coaseguro->cargosCoaseguro($basedatos, $usuario, $numeroE, $nCuenta), 2); } ?> </span></div></td> </tr> </table></th> <th width="14%" scope="col"><table width="94" border="0" align="right"> <tr> <th bgcolor="#660066" scope="col"><span class="blanco"> Compañía <?php //echo "$".number_format($Tcargos,2); ?> <?php //echo "$".number_format( $Tabonos,2); $t1 = $TOTAL + $Tiva; ?> <?php //echo "$".number_format($deposito[0],2); //echo "Pago por Otros"; $t2 = $Tabonos; ?> </span></th> </tr> <tr> <th width="172" bgcolor="#660066" class="blanco" scope="col">Saldo Cia. </th> </tr> <tr> <td><span class="normal"> <?php $cargosAseguradora = new acumulados(); if ($cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta) != null and $transacciones == 'si') { ?> <a href="#" onClick="javascript:ventanaSecundaria7('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/ventanaAplicaPagoInternos.php?numeroE=<?php echo $numeroE; ?> &almacen=<?php echo $bali; ?> &almacenFuente=<?php echo $bali; ?> &seguro=<?php echo $_POST['seguro']; ?> &nCuenta=<?php echo $myrow3['keyClientesInternos']; ?> &tipoCliente=<?php echo 'aseguradora'; ?> &tipoVenta=<?php echo 'interno'; ?> ')"> <?php echo "\$" . number_format($cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </a> <?php } else { echo "\$" . number_format($cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta), 2); } ?> </span> </td> </tr> </table></th> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> </table> <p> </p> </div> <?php if (($cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta) == NULL or $cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta) == 0) and ($totalxSurtir->totalxSurtir($basedatos, $usuario, $numeroE, $nCuenta) == NULL or $totalxSurtir->totalxSurtir($basedatos, $usuario, $numeroE, $nCuenta) == 0) and ($otros->otros($basedatos, $usuario, $numeroE, $nCuenta) == NULL or $otros->otros($basedatos, $usuario, $numeroE, $nCuenta) == 0) and ($cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta) == NULL or $cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta) == 0)) { ?> <p align="center"> <?php if (!$myrow661['status']) { ?> <input name="faltan" type="submit" class="normal" id="cerrar" value="Faltan Departamentos" disabled=""/> <?php } else { ?> <input name="cerrar" type="submit" class="normal" id="cerrar" value="Cerrar Cuenta" /> <?php } //cierra validaciones de proceso de cierre de departamentos ?> <input name="keyClientesInternos" type="hidden" id="keyClientesInternos" value="<?php echo $myrow3['keyClientesInternos']; ?> " /> </p> <div align="center"> <?php } ?> <?php } else { echo "LA CUENTA DEL PACIENTE " . $myrow3['paciente'] . " ESTA CERRADA..."; ?> <input name="imprimir" type="submit" class="normal" id="imprimir" value="Imprimir" /> <?php } ?> </div> </form> <?php } ?> <p align="center"> </p> <?php if ($_POST['banderaFecha']) { ?> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador" // el id del bot�n que lanzar� el calendario }); </script> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha1", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador1" // el id del bot�n que lanzar� el calendario }); </script> <?php } } ?> </body> </html> <?php }
public function trasladoDiarioCuentas($entidad, $fecha1, $hora1, $dia, $usuario, $nT, $basedatos) { include CONSTANT_PATH_CONFIGURACION . "/funciones.php"; $cargosCia = new acumulados(); ?> <script language=javascript> function ventanaSecundaria4 (URL){ window.open(URL,"ventana4","width=800,height=300,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria2 (URL){ window.open(URL,"ventana2","width=630,height=500,scrollbars=YES,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria1 (URL){ window.open(URL,"ventana1","width=530,height=300,scrollbars=YES") } </script> <script language=javascript> function ventanaSecundaria5 (URL){ window.open(URL,"ventana5","width=500,height=500,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria3 (URL){ window.open(URL,"ventana3","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria6 (URL){ window.open(URL,"ventana6","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria7 (URL){ window.open(URL,"ventana7","width=500,height=600,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language="javascript" type="text/javascript"> //Validacion de campos de texto no vacios by Mauricio Escobar // //Iv�n Nieto P�rez //Este script y otros muchos pueden //descarse on-line de forma gratuita //en El C�digo: www.elcodigo.com //********************************************************************************* // Function que valida que un campo contenga un string y no solamente un " " // Es tipico que al validar un string se diga // if(campo == "") ? alert(Error) // Si el campo contiene " " entonces la validacion anterior no funciona //********************************************************************************* //busca caracteres que no sean espacio en blanco en una cadena function vacio(q) { for ( i = 0; i < q.length; i++ ) { if ( q.charAt(i) != " " ) { return true } } return false } //valida que el campo no este vacio y no tenga solo espacios en blanco function valida(F) { if( vacio(F.campo.value) == false ) { alert("Introduzca un cadena de texto.") return false } else { alert("OK") //cambiar la linea siguiente por return true para que ejecute la accion del formulario return true } } </script> <SCRIPT LANGUAGE="JavaScript"> function checkIt(evt) { evt = (evt) ? evt : window.event var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57)) { status = "Este campo s�lo acepta n�meros." return false } status = "" return true } </SCRIPT> <script type="text/javascript"> <!-- por carlitos. cualquier duda o pregunta, visita www.forosdelweb.com var ancho=100 var alto=100 var fin=300 var x=100 var y=100 function inicio() { ventana = window.open("cita.php", "_blank", "height=1,width=1,top=x,left=y,screenx=x,screeny=y"); abre(); } function abre() { if (ancho<=fin) { ventana.moveto(x,y); ventana.resizeto(ancho,alto); x+=5 y+=5 ancho+=15 alto+=15 timer= settimeout("abre()",1) } else { cleartimeout(timer) } } // --> </script> <?php //************************ACTUALIZO ********************** //********************Llenado de datos if (!$_GET['nT']) { $_GET['nT'] = $nT; } if (!$bali) { $bali = $_GET['almacenFuente']; } $sSQL3 = "Select * From clientesInternos WHERE keyClientesInternos = '" . $_GET['nT'] . "' "; $result3 = mysql_db_query($basedatos, $sSQL3); $myrow3 = mysql_fetch_array($result3); $numeroE = $myrow3['numeroE']; $nCuenta = $myrow3['nCuenta']; $cuarto = $myrow3['cuarto']; //***************aplicar pago********************** if ($_POST['actualizar']) { $particular = $_POST['particular']; $aseguradora = $_POST['aseguradora']; for ($i = 0; $i <= $_POST['bandera2']; $i++) { if ($aseguradora[$i]) { $status = 'efectivo'; $keyCAP[] = $aseguradora[$i]; } else { $status = 'cxc'; $keyCAP[] = $particular[$i]; } $agrega = "UPDATE cargosCuentaPaciente set \r\nstatusAlta='" . $status . "',\r\nusuarioAlta='" . $usuario . "',\r\nfechaAlta='" . $fecha1 . "',\r\nhoraAlta='" . $hora1 . "'\r\n\r\nwhere\r\nkeyCAP='" . $keyCAP[$i] . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); } //cierra for } //cierra actualizar $cargosParticulares = new acumulados(); $totalxSurtir = new acumulados(); $cargosAseguradora = new acumulados(); $otros = new acumulados(); if ($_POST['cerrar'] and $cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $totalxSurtir->totalxSurtir($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $otros->otros($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta) == NULL) { $particular = $_POST['particular']; $aseguradora = $_POST['aseguradora']; for ($i = 0; $i <= $_POST['bandera2']; $i++) { $agrega = "UPDATE cargosCuentaPaciente set \r\nstatus='cerrada',\r\nusuarioAlta='" . $usuario . "',\r\nfechaAlta='" . $fecha1 . "',\r\nhoraAlta='" . $hora1 . "'\r\n\r\nwhere\r\nnumeroE='" . $numeroE . "' \r\nand\r\nnCuenta='" . $nCuenta . "'\r\nand statusAlta='efectivo'\r\n"; //mysql_db_query($basedatos,$agrega); echo mysql_error(); } //cierro cuenta $agrega = "UPDATE clientesInternos set \r\nstatus='cerrada',\r\nstatusCuenta='cerrada',\r\nusuarioCierre='" . $usuario . "',\r\nfechaCierre='" . $fecha1 . "',\r\nhoraCierre='" . $hora1 . "'\r\n\r\nwhere\r\nkeyClientesInternos='" . $_GET['nT'] . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); //cierro cuarto a sucio $agrega = "UPDATE cuartos set \r\nstatus='sucio',\r\nusuarioSalida='" . $usuario . "',\r\nfechaSalida='" . $fecha1 . "',\r\nhoraSalida='" . $hora1 . "'\r\n\r\nwhere\r\ncodigoCuarto='" . $cuarto . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); $leyenda = 'Se cerr� la cuenta'; ?> <script type="text/vbscript"> msgbox "LA CUENTA <?php echo $_GET['nT']; ?> ESTA CERRADA!" </script>'; <script> javascript:ventanaSecundaria6('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/imprimirCierreCuenta.php?numeroE=<?php echo $nCliente5; ?> &nT=<?php echo $numeroCuenta; ?> &paciente=<?php echo $_POST['paciente']; ?> &orden=<?php echo $E; ?> &hora1=<?php echo $hora1; ?> '); </script> <script> close(); </script> <script language="JavaScript" type="text/javascript"> <!-- opener.location.reload(true); self.close(); // --> </script> <?php } ?> <!-Hoja de estilos del calendario --> <link rel="stylesheet" type="text/css" media="all" href="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-tas.css" title="win2k-cold-1" /> <!-- librer�a principal del calendario --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar.js"></script> <!-- librer�a para cargar el lenguaje deseado --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/lang/calendar-es.js"></script> <!-- librer�a que declara la funci�n Calendar.setup, que ayuda a generar un calendario en unas pocas l�neas de c�digo --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-setup.js"></script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <html xmlns="http://www.w3.org/1999/xhtml"> <style type="text/css"> <!-- .style71 {font-size: 9px} .style71 {font-size: 9px} .style71 {font-size: 9px} --> </style> <head> <title></title> <style type="text/css"> <!-- .style13 {color: #FFFFFF} .style11 {color: #FFFFFF; font-size: 10px; font-weight: bold; } .style7 {font-size: 9px} .Estilo24 {font-size: 10px} .style19 {color: #000000; font-weight: bold; } --> </style> </head> <style type="text/css"> <!-- .style12 {font-size: 10px} .style14 {font-size: 10px; color: #FFFFFF; } .style21 {color: #FF0000} --> </style> <BODY > <?php ventanasPrototype::links(); ?> <h1 align="center">Reporte Diario de Cuentas </h1> <form id="form1" name="form1" method="post" action=""> <table width="642" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#990099" class="Estilo24"> <tr> <th width="10" class="Estilo24" scope="col"> </th> <td width="134" class="Estilo24">Fecha</td> <td width="408" class="Estilo24"><span class="style12"> <label> <input type="checkbox" name="banderaFecha" value="checkbox" onClick="javascript:this.form.submit();" <?php if ($_POST['banderaFecha']) { echo 'checked="checked"'; } ?> /> </label> <?php if ($_POST['banderaFecha']) { ?> <input name="fecha" type="text" class="style12" id="campo_fecha" value="<?php if ($_POST['fecha']) { echo $_POST['fecha']; } else { if ($myrow3['hoy']) { echo $myrow3['hoy']; } else { echo $fecha1; } } ?> " size="9" readonly="" /> <label> <input name="button" type="button" class="style12" id="lanzador" value="..." /> Entre </label> <input name="fecha2" type="text" class="style12" id="campo_fecha1" value="<?php if ($_POST['fecha2']) { echo $_POST['fecha2']; } else { if ($myrow3['hoy']) { echo $myrow3['hoy']; } else { echo $fecha1; } } ?> " size="9" readonly="" /> <label> <input name="button2" type="button" class="style12" id="lanzador1" value="..." /> <input name="show" type="submit" class="style7" id="show" value=">" /> <?php } else { ?> <input name="fecha3" type="hidden" class="style12" id="fecha2" value="<?php echo 'all'; ?> "/> <?php } ?> </label> </span></td> </tr> </table> <p> </p> <table width="847" border="0" align="center"> <tr> <th width="60" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">#MOV </span></div></th> <th width="96" height="14" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Fecha/Hora </span></div></th> <th width="300" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Descripción/Concepto</span></div></th> <th width="21" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Cant</span></div></th> <th width="55" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Importe</span></div></th> <th width="33" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">IVA</span></div></th> <th width="27" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Status</span></div></th> <th width="47" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">D Solicita</span></div></th> <th width="52" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">D Cargo.</span></div></th> <th width="72" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">Tipo P </span></div></th> <th width="38" bgcolor="#660066" class="style14" scope="col"><div align="left"><span class="style12 ">N </span></div></th> </tr> <?php //traigo agregados if ($_POST['tipoVista'] == 'Agrupado' and $_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,gpoProducto,naturaleza\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n and (status!='standby' and statusCargo!='standby' and status!='cxc' AND status!='cancelado')\r\n and\r\n(fecha1 between'" . $_POST['fecha'] . "' and '" . $_POST['fecha2'] . "')\r\n\r\n\r\n \r\n group by codProcedimiento \r\n order by fecha1,hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Detalle' and $_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,gpoProducto,naturaleza\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\n numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n \r\n and (status!='standby' and statusCargo!='standby' and status!='cxc' AND status!='cancelado')\r\n and \r\n (fecha1 between'" . $_POST['fecha'] . "' and '" . $_POST['fecha2'] . "')\r\n\r\n order by hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Agrupado' and !$_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,gpoProducto,naturaleza\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\nnumeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n\r\n\r\n \r\n group by codProcedimiento \r\n order by fecha1,hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Detalle' and !$_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente,gpoProducto,naturaleza\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\n numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n\r\nand \r\nstatus!='cancelado'\r\n \r\n \r\n \r\n order by fecha1,hora1 asc\r\n"; } } } } if ($result81 = mysql_db_query($basedatos, $sSQL81)) { while ($myrow81 = mysql_fetch_array($result81)) { $a += '1'; $art = $myrow81['codProcedimiento']; $codigo = $proc = $myrow81['codProcedimiento']; $keyCAP = $myrow81['keyCAP']; if ($_POST['tipoVista'] == 'Agrupado') { $sSQL14 = "\r\nSELECT \r\nsum(cantidad) as cantidad2\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE \r\ncodProcedimiento = '" . $proc . "' and numeroE = '" . $numeroE . "'\r\n"; $result14 = mysql_db_query($basedatos, $sSQL14); $myrow14 = mysql_fetch_array($result14); } ?> <tr> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "><?php echo $myrow81['keyCAP']; ?> </span></div></td> <td height="21" bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "> <?php echo $myrow81['hora1'] . " " . cambia_a_normal($myrow81['fecha1']); ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "><span class="style12"><span class="style7"> <?php $descripcion = new articulosDetalles(); $descripcion->descripcion($numeroE, $nCuenta, $codigo, $basedatos); ?> </span></span> <span class="style12"> <?php if ($myrow81['gpoProducto']) { echo '[' . $myrow81['gpoProducto'] . ']'; } ?> </span> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "> <?php if ($_POST['tipoVista'] == 'Agrupado') { echo $cantidad = $myrow14['cantidad2']; } else { echo $cantidad = $myrow81['cantidad']; } ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="left"><span class="<?php echo $estilo; ?> "> <span class="style12"><span class="style7"> <?php $importe = new acumulados(); echo $importe->importe($keyCAP, $basedatos); ?> </span></span> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><div align="left"><span class="style7"> <?php $mostrarIVA = new articulosDetalles(); echo $mostrarIVA->mostrarIVA($keyCAP, $basedatos); ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><div align="left"><span class="style7"> <span class="style12"> <?php $status = new acumulados(); echo $status->status($keyCAP, $basedatos, $usuario, $numeroE, $nCuenta); ?> </span></span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><div align="left"><span class="style7"><span class="style12"> <?php echo $myrow81['almacenSolicitante']; ?> </span></span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><div align="left"><span class="style7"><span class="style12"><?php echo $myrow81['almacenDestino']; ?> </span></span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><span class="Estilo24"><?php echo $myrow81['tipoCliente']; ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "> <div align="left"><span class="style7"><span class="style12"> <?php echo $myrow81['naturaleza']; ?> </span> </span></div></td> <?php if ($myrow811['statusAlta'] == 'cxc') { $flagCxC = 'activa'; ?> <?php } else { if ($myrow811['status'] == 'pagado') { $flagCxC = 'inactiva'; ?> <?php } else { $flagCxC = 'inactiva'; ?> <?php } } ?> <?php if (($myrow811['statusAlta'] == 'efectivo' or !$myrow811['statusAlta']) and $myrow811['status'] != 'pagado') { ?> <?php } else { if ($myrow811['status'] == 'pagado') { ?> <?php } } ?> </tr> <?php } } }
public function eCuenta($entidad, $fecha1, $hora1, $dia, $usuario, $nT, $basedatos) { include CONSTANT_PATH_CONFIGURACION . "/funciones.php"; $cargosCia = new acumulados(); ?> <script language=javascript> function ventanaSecundaria4 (URL){ window.open(URL,"ventana4","width=800,height=300,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria2 (URL){ window.open(URL,"ventana2","width=630,height=500,scrollbars=YES,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria1 (URL){ window.open(URL,"ventana1","width=530,height=300,scrollbars=YES") } </script> <script language=javascript> function ventanaSecundaria5 (URL){ window.open(URL,"ventana5","width=500,height=500,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria3 (URL){ window.open(URL,"ventana3","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria6 (URL){ window.open(URL,"ventana6","width=500,height=400,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language=javascript> function ventanaSecundaria7 (URL){ window.open(URL,"ventana7","width=500,height=600,scrollbars=YES,resizable=YES, maximizable=YES") } </script> <script language="javascript" type="text/javascript"> //Validacion de campos de texto no vacios by Mauricio Escobar // //Iv�n Nieto P�rez //Este script y otros muchos pueden //descarse on-line de forma gratuita //en El C�digo: www.elcodigo.com //********************************************************************************* // Function que valida que un campo contenga un string y no solamente un " " // Es tipico que al validar un string se diga // if(campo == "") ? alert(Error) // Si el campo contiene " " entonces la validacion anterior no funciona //********************************************************************************* //busca caracteres que no sean espacio en blanco en una cadena function vacio(q) { for ( i = 0; i < q.length; i++ ) { if ( q.charAt(i) != " " ) { return true } } return false } //valida que el campo no este vacio y no tenga solo espacios en blanco function valida(F) { if( vacio(F.campo.value) == false ) { alert("Introduzca un cadena de texto.") return false } else { alert("OK") //cambiar la linea siguiente por return true para que ejecute la accion del formulario return true } } </script> <SCRIPT LANGUAGE="JavaScript"> function checkIt(evt) { evt = (evt) ? evt : window.event var charCode = (evt.which) ? evt.which : evt.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57)) { status = "Este campo s�lo acepta n�meros." return false } status = "" return true } </SCRIPT> <script type="text/javascript"> <!-- por carlitos. cualquier duda o pregunta, visita www.forosdelweb.com var ancho=100 var alto=100 var fin=300 var x=100 var y=100 function inicio() { ventana = window.open("cita.php", "_blank", "height=1,width=1,top=x,left=y,screenx=x,screeny=y"); abre(); } function abre() { if (ancho<=fin) { ventana.moveto(x,y); ventana.resizeto(ancho,alto); x+=5 y+=5 ancho+=15 alto+=15 timer= settimeout("abre()",1) } else { cleartimeout(timer) } } // --> </script> <?php //************************ACTUALIZO ********************** //********************Llenado de datos $sSQL3 = "Select * From clientesInternos WHERE keyClientesInternos = '" . $_GET['nT'] . "' "; $result3 = mysql_db_query($basedatos, $sSQL3); $myrow3 = mysql_fetch_array($result3); $numeroE = $myrow3['numeroE']; $nCuenta = $myrow3['nCuenta']; $cuarto = $myrow3['cuarto']; //***************aplicar pago********************** if ($_POST['actualizar']) { $particular = $_POST['particular']; $aseguradora = $_POST['aseguradora']; for ($i = 0; $i <= $_POST['bandera2']; $i++) { if ($aseguradora[$i]) { $status = 'efectivo'; $keyCAP[] = $aseguradora[$i]; } else { $status = 'cxc'; $keyCAP[] = $particular[$i]; } $agrega = "UPDATE cargosCuentaPaciente set \r\nstatusAlta='" . $status . "',\r\nusuarioAlta='" . $usuario . "',\r\nfechaAlta='" . $fecha1 . "',\r\nhoraAlta='" . $hora1 . "'\r\n\r\nwhere\r\nkeyCAP='" . $keyCAP[$i] . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); } //cierra for } //cierra actualizar $cargosParticulares = new acumulados(); $totalxSurtir = new acumulados(); $cargosAseguradora = new acumulados(); $otros = new acumulados(); if ($_POST['cerrar'] and $cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $totalxSurtir->totalxSurtir($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $otros->otros($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta) == NULL) { $particular = $_POST['particular']; $aseguradora = $_POST['aseguradora']; for ($i = 0; $i <= $_POST['bandera2']; $i++) { $agrega = "UPDATE cargosCuentaPaciente set \r\nstatus='cerrada',\r\nusuarioAlta='" . $usuario . "',\r\nfechaAlta='" . $fecha1 . "',\r\nhoraAlta='" . $hora1 . "'\r\n\r\nwhere\r\nnumeroE='" . $numeroE . "' \r\nand\r\nnCuenta='" . $nCuenta . "'\r\nand statusAlta='efectivo'\r\n"; //mysql_db_query($basedatos,$agrega); echo mysql_error(); } //cierro cuenta $agrega = "UPDATE clientesInternos set \r\nstatus='cerrada',\r\nstatusCuenta='cerrada',\r\nusuarioCierre='" . $usuario . "',\r\nfechaCierre='" . $fecha1 . "',\r\nhoraCierre='" . $hora1 . "'\r\n\r\nwhere\r\nkeyClientesInternos='" . $_GET['nT'] . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); //cierro cuarto a sucio $agrega = "UPDATE cuartos set \r\nstatus='sucio',\r\nusuarioSalida='" . $usuario . "',\r\nfechaSalida='" . $fecha1 . "',\r\nhoraSalida='" . $hora1 . "'\r\n\r\nwhere\r\ncodigoCuarto='" . $cuarto . "' \r\n"; mysql_db_query($basedatos, $agrega); echo mysql_error(); $leyenda = 'Se cerr� la cuenta'; ?> <script type="text/vbscript"> msgbox "LA CUENTA <?php echo $_GET['nT']; ?> ESTA CERRADA!" </script>'; <script> javascript:ventanaSecundaria6('<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /INGRESOS%20HLC/caja/imprimirCierreCuenta.php?numeroE=<?php echo $nCliente5; ?> &nT=<?php echo $numeroCuenta; ?> &paciente=<?php echo $_POST['paciente']; ?> &orden=<?php echo $E; ?> &hora1=<?php echo $hora1; ?> '); </script> <script> close(); </script> <script language="JavaScript" type="text/javascript"> <!-- opener.location.reload(true); self.close(); // --> </script> <?php } if (!$_POST['tipoVista']) { $_POST['tipoVista'] = 'Detalle'; } ?> <!-Hoja de estilos del calendario --> <link rel="stylesheet" type="text/css" media="all" href="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-tas.css" title="win2k-cold-1" /> <!-- librer�a principal del calendario --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar.js"></script> <!-- librer�a para cargar el lenguaje deseado --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/lang/calendar-es.js"></script> <!-- librer�a que declara la funci�n Calendar.setup, que ayuda a generar un calendario en unas pocas l�neas de c�digo --> <script type="text/javascript" src="<?php echo CONSTANT_PATH_SIMA_RAIZ; ?> /calendario/calendar-setup.js"></script> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <style type="text/css"> <!-- .style71 {font-size: 9px} .style71 {font-size: 9px} .style71 {font-size: 9px} --> </style> <head> <script> function muestra_oculta(id){ if (document.getElementById){ //se obtiene el id var el = document.getElementById(id); //se define la variable "el" igual a nuestro div el.style.display = (el.style.display == 'none') ? 'block' : 'none'; //damos un atributo display:none que oculta el div } } window.onload = function(){/*hace que se cargue la funci�n lo que predetermina que div estar� oculto hasta llamar a la funci�n nuevamente*/ muestra_oculta('contenido_a_mostrar');/* "contenido_a_mostrar" es el nombre de la etiqueta DIV que deseamos mostrar */ } </script> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title></title> <style type="text/css"> <!-- .style13 {color: #FFFFFF} .style11 {color: #FFFFFF; font-size: 10px; font-weight: bold; } .style7 {font-size: 9px} .Estilo24 {font-size: 10px} .style19 {color: #000000; font-weight: bold; } --> </style> </head> <style type="text/css"> <!-- .style12 {font-size: 10px} .style14 {font-size: 10px; color: #FFFFFF; } .style21 {color: #FF0000} --> </style> <BODY > <h1 align="center">Estado de Cuenta Px </h1> <form id="form1" name="form1" method="post" action=""> <table width="642" border="0" align="center" cellpadding="1" cellspacing="1" bordercolor="#990099" class="Estilo24"> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th bgcolor="#660066" class="style14" scope="col"><div align="left">Número de Transacción: </div></th> <th bgcolor="#660066" class="style14" scope="col"><div align="left"><?php echo $nCliente = $myrow3['keyClientesInternos']; ?> <input name="numeroE" type="hidden" class="Estilo24" id="numeroE" value="<?php echo $nCliente = $_POST['numeroE']; ?> " readonly=""/> </label></div> </th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <th width="134" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong>Paciente: </strong></div></th> <th width="408" bgcolor="#FFCCFF" class="Estilo24" scope="col"><div align="left"><strong> <label> </label> </strong> <?php echo $myrow3['paciente']; ?> </div></th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <td class="Estilo24">Compañía: </td> <td class="Estilo24"><label> <?php echo $traeSeguro = $myrow3['seguro']; ?> <?php displaySeguro::despliegaSeguro($traeSeguro, $basedatos); ?> <input name="seguro2" type="hidden" id="seguro2" value="<?php echo $traeSeguro; ?> " /> </label></td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <td bgcolor="#FFCCFF" class="Estilo24">N° Credencial: </td> <td bgcolor="#FFCCFF" class="Estilo24"><?php echo $myrow3['credencial']; ?> </td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <td class="Estilo24">Fecha</td> <td class="Estilo24"><span class="style12"> <label> <input type="checkbox" name="banderaFecha" value="checkbox" onClick="javascript:this.form.submit();" <?php if ($_POST['banderaFecha']) { echo 'checked="checked"'; } ?> /> </label> <?php if ($_POST['banderaFecha']) { ?> <input name="fecha" type="text" class="style12" id="campo_fecha" value="<?php if ($_POST['fecha']) { echo $_POST['fecha']; } else { if ($myrow3['hoy']) { echo $myrow3['hoy']; } else { echo $fecha1; } } ?> " size="9" readonly="" /> <label> <input name="button" type="button" class="style12" id="lanzador" value="..." /> Entre </label> <input name="fecha2" type="text" class="style12" id="campo_fecha1" value="<?php if ($_POST['fecha2']) { echo $_POST['fecha2']; } else { if ($myrow3['hoy']) { echo $myrow3['hoy']; } else { echo $fecha1; } } ?> " size="9" readonly="" /> <label> <input name="button2" type="button" class="style12" id="lanzador1" value="..." /> <input name="show" type="submit" class="style7" id="show" value=">" /> <?php } else { ?> <input name="fecha3" type="hidden" class="style12" id="fecha2" value="<?php echo 'all'; ?> "/> <?php } ?> </label> </span></td> </tr> <tr> <th class="Estilo24" scope="col"> </th> <th class="Estilo24" scope="col"><div align="left"><strong>Médico: </strong></div></th> <th class="Estilo24" scope="col"><div align="left"> <label> <?php echo $medico = $myrow3['medico']; ?> </label> <label> </label> <?php $sSQL18 = "Select * From medicos WHERE numMedico ='" . $medico . "'"; $result18 = mysql_db_query($basedatos, $sSQL18); $rNombre18 = mysql_fetch_array($result18); ?> <?php echo $dr = "Dr(a): " . $rNombre18["apellido1"] . " " . $rNombre18["apellido2"] . " " . $rNombre18["apellido3"] . " " . $rNombre18["nombre1"] . " " . $rNombre18["nombre2"]; ?> </div></th> </tr> <tr> <th width="10" class="Estilo24" scope="col"> </th> <td bgcolor="#FFCCFF" class="Estilo24">Tipo de Vista: </td> <td bgcolor="#FFCCFF" class="Estilo24"><label> <select name="tipoVista" class="style7" id="tipoVista" onChange="javascript:form1.submit();"> <option>Escoje la Opción</option> <option <?php if ($_POST['tipoVista'] == 'Agrupado') { ?> selected="selected" <?php } ?> value="Agrupado">Agrupado</option> <option <?php if ($_POST['tipoVista'] == 'Detalle') { ?> selected="selected" <?php } ?> value="Detalle">Detalle</option> </select> </label></td> </tr> </table> <p> </p> <?php if ($_POST['tipoVista']) { ?> <table width="812" border="0" align="center"> <tr> <th width="105" height="14" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Fecha/Hora </span></th> <th width="348" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Descripción/Concepto</span></th> <th width="21" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Cant</span></th> <th width="62" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Importe</span></th> <th width="39" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">IVA</span></th> <th width="27" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Status</span></th> <th width="52" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">D Solicita</span></th> <th width="60" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">D Cargo.</span></th> <th width="60" bgcolor="#660066" class="style14" scope="col"><span class="style12 ">Tipo P </span></th> </tr> <tr> <?php //traigo agregados if ($_POST['tipoVista'] == 'Agrupado' and $_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n and (status!='standby' and statusCargo!='standby' and status!='cxc')\r\n and\r\n(fecha1 between'" . $_POST['fecha'] . "' and '" . $_POST['fecha2'] . "')\r\n\r\n\r\n \r\n group by codProcedimiento \r\n order by fecha1,hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Detalle' and $_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\n numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n \r\n and (status!='standby' and statusCargo!='standby' and status!='cxc')\r\n and \r\n (fecha1 between'" . $_POST['fecha'] . "' and '" . $_POST['fecha2'] . "')\r\n\r\n order by hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Agrupado' and !$_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\nnumeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n\r\n\r\n \r\n group by codProcedimiento \r\n order by fecha1,hora1 asc\r\n"; } else { if ($_POST['tipoVista'] == 'Detalle' and !$_POST['banderaFecha']) { $sSQL81 = "\r\nSELECT \r\nkeyCAP,codProcedimiento,um,hora1,fecha1,cantidad,iva,almacenDestino,almacenSolicitante,precioVenta,tipoCliente\r\nFROM\r\ncargosCuentaPaciente \r\n WHERE \r\n numeroE = '" . $numeroE . "'\r\n \r\n and nCuenta='" . $nCuenta . "'\r\n\r\n\r\n \r\n \r\n \r\n order by fecha1,hora1 asc\r\n"; } } } } if ($result81 = mysql_db_query($basedatos, $sSQL81)) { while ($myrow81 = mysql_fetch_array($result81)) { $a += '1'; $art = $myrow81['codProcedimiento']; $codigo = $proc = $myrow81['codProcedimiento']; $keyCAP = $myrow81['keyCAP']; if ($_POST['tipoVista'] == 'Agrupado') { $sSQL14 = "\r\nSELECT \r\nsum(cantidad) as cantidad2\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE \r\ncodProcedimiento = '" . $proc . "' and numeroE = '" . $numeroE . "'\r\n"; $result14 = mysql_db_query($basedatos, $sSQL14); $myrow14 = mysql_fetch_array($result14); } ?> <td height="21" bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="<?php echo $estilo; ?> "> <?php echo $myrow81['hora1'] . " " . cambia_a_normal($myrow81['fecha1']); ?> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><span class="<?php echo $estilo; ?> "><span class="style12"><span class="style7"> <?php $descripcion = new articulosDetalles(); $descripcion->descripcion($keyCAP, $numeroE, $nCuenta, $codigo, $basedatos); ?> </span></span> <span class="style12"> <?php if ($myrow811['um'] == 's' or $myrow811['um'] == 'S') { echo ' ( Servicio ) '; } ?> </span> </span></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="center"><span class="<?php echo $estilo; ?> "> <?php if ($_POST['tipoVista'] == 'Agrupado') { echo $cantidad = $myrow14['cantidad2']; } else { echo $cantidad = $myrow81['cantidad']; } ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="Estilo24"><div align="center"><span class="<?php echo $estilo; ?> "> <span class="style12"><span class="style7"> <?php $importe = new acumulados(); echo $importe->importe($keyCAP, $basedatos); ?> </span></span> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><div align="center"><span class="style7"> <?php $mostrarIVA = new articulosDetalles(); echo $mostrarIVA->mostrarIVA($keyCAP, $basedatos); ?> </span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><div align="center"><span class="style7"> <span class="style12"> <?php $status = new acumulados(); echo $status->status($keyCAP, $basedatos, $usuario, $numeroE, $nCuenta); ?> </span></span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><div align="center"><span class="style7"><span class="style12"> <?php echo $myrow81['almacenSolicitante']; ?> </span></span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "><div align="center"><span class="style7"><span class="style12"><?php echo $myrow81['almacenDestino']; ?> </span></span></div></td> <td bgcolor="<?php echo $color; ?> " class="<?php echo $estilo; ?> "> <div align="center"><span class="style7"><span class="style12"> <?php echo $myrow81['tipoCliente']; ?> </span> </span></div></td> <?php if ($myrow811['statusAlta'] == 'cxc') { $flagCxC = 'activa'; ?> <?php } else { if ($myrow811['status'] == 'pagado') { $flagCxC = 'inactiva'; ?> <?php } else { $flagCxC = 'inactiva'; ?> <?php } } ?> <?php if (($myrow811['statusAlta'] == 'efectivo' or !$myrow811['statusAlta']) and $myrow811['status'] != 'pagado') { ?> <?php } else { if ($myrow811['status'] == 'pagado') { ?> <?php } } ?> </tr> <?php } } ?> </table> <p> <input name="recibo" type="hidden" id="recibo" value="<?php echo $nCliente = $_POST['numeroE']; ?> " /> <input name="nCliente" type="hidden" id="nCliente" value="<?php echo $nCliente; ?> " /> <input name="almacen" type="hidden" id="almacen" value="<?php echo $ALMACEN; ?> " /><?php //echo "$".number_format($TOTAL,2); ?> </p> <div align="center"> <p> </p> <?php $mostrarCuadroGP = new cuadritoAcumuladoGPO(); echo $mostrarCuadroGP->mostrarCuadrito($fecha1, $fecha2, 'estilo24', $entidad, $numeroE, $nCuenta, $basedatos); ?> <p> </p> <p> </p> <table width="239" border="0" align="center" class="style12"> <tr> <td width="141" height="23" class="style12">Total por Surtir (iva incluido ) </td> <td width="88" class="style12"><div align="right"> <?php $totalxSurtir = new acumulados(); echo "\$" . number_format($totalxSurtir->totalxSurtir($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </div></td> </tr> </table> <p> </p> <p> </p> <p> </p> <table width="239" border="0" align="left" class="Estilo24"> <tr> <td width="139" height="23" class="Estilo24">IVA</td> <td width="90" class="Estilo24"><div align="right"> <?php $iva = new acumulados(); $iva = $iva->ivaAcumulado($basedatos, $usuario, $numeroE, $nCuenta); echo "\$" . number_format($iva, 2); ?> </div></td> </tr> <tr bgcolor="#FFCCFF"> <td height="23" class="Estilo24">Total Cargos </td> <td class="Estilo24"><div align="right"> <?php $totalAcumulado = new acumulados(); $cargoS = $totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta); echo "\$" . number_format($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta) + $coaseguro, 2); ?> </div></td> </tr> </table> <p> </p> <p> </p> <p> </p> <table width="239" border="0" align="left" class="style12"> <tr bgcolor="#FFCCFF"> <td width="141" height="23" bgcolor="#FFCCFF" class="style12"><span class="style7">Total Abonos</span></td> <td width="88" class="style12"> <div align="right"> <?php $abonos = new acumulados(); echo "\$" . number_format($abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta), 2); ?> </div> </td> </tr> <tr> <td height="23" class="style12">Saldo Actual </td> <td class="style12"><div align="right"> <?php $totalAcumulado = new acumulados(); $totalCargos = new acumulados(); $totalCargos = $totalCargos->total($totalAcumulado->totalAcumulado($basedatos, $usuario, $numeroE, $nCuenta), $abonos->abonos($basedatos, $usuario, $numeroE, $nCuenta), $numeroE1, $nCuenta1); echo "\$" . number_format($totalCargos, 2); ?> </div></td> </tr> </table> <?php if ($myrow3['status'] != 'cerrada') { ?> <p> </p> <p> </p> <p> </p> <p> </p> </div> <?php if ($cargosParticulares->cargosParticulares($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $totalxSurtir->totalxSurtir($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $otros->otros($basedatos, $usuario, $numeroE, $nCuenta) == NULL and $cargosAseguradora->cargosAseguradora($basedatos, $usuario, $numeroE, $nCuenta) == NULL) { ?> <p align="center"> </p> <?php } ?> <?php } else { echo "LA CUENTA DEL PACIENTE " . $myrow3['paciente'] . " ESTA CERRADA..."; } ?> </form> <?php } ?> <p align="center"> </p> <?php if ($_POST['banderaFecha']) { ?> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador" // el id del bot�n que lanzar� el calendario }); </script> <script type="text/javascript"> Calendar.setup({ inputField : "campo_fecha1", // id del campo de texto ifFormat : "%Y-%m-%d", // formato de la fecha que se escriba en el campo de texto button : "lanzador1" // el id del bot�n que lanzar� el calendario }); </script> <?php } ?> </body> </html> <?php }