本文整理汇总了PHP中PDF_AutoPrint::SetXY方法的典型用法代码示例。如果您正苦于以下问题:PHP PDF_AutoPrint::SetXY方法的具体用法?PHP PDF_AutoPrint::SetXY怎么用?PHP PDF_AutoPrint::SetXY使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PDF_AutoPrint
的用法示例。
在下文中一共展示了PDF_AutoPrint::SetXY方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: date
$seguro = $myrow1['seguro'];
$numeroTransaccion = $myrow1['keyClientesInternos'];
//************devuelve seguro
$sSQL39 = "SELECT *\r\nFROM\r\nclientes\r\nwhere \r\nnumCliente='" . $seguro . "'";
$result39 = mysql_db_query($basedatos, $sSQL39);
$myrow39 = mysql_fetch_array($result39);
$seguro = $myrow39['nomCliente'];
$auxiliar = $myrow39['ID_AUXILIAR'];
$ctaMayor = $myrow39['ID_CTAMAYOR'];
//**********cierra devolver seguro
if ($seguro) {
$paciente = $seguro;
}
$pdf->SetFont('Arial', '', 8);
//establece el nombre del paciente
$pdf->SetXY(50, 10);
$pdf->Cell(0, 0, $auxiliar, 0, 0, L);
$pdf->SetX(1);
$pdf->SetXY(50, 15);
$pdf->Cell(0, 0, $ctaMayor, 0, 0, L);
$pdf->SetX(1);
$pdf->SetY(5);
$pdf->Cell(0, 0, $numeroTransaccion, 0, 0, R);
//numero de paciente
$pdf->SetXY(50, 5);
$pdf->Cell(0, 0, $paciente, 0, 0, L);
$pdf->SetX(1);
//cambiar fecha
//$myrow1['fecha1']=cambia_a_normal($myrow1['fecha1']);
$fecha1 = date("d/m/Y");
$pdf->SetY(10);
示例2:
$cant = $can;
$can = $can / 100 * $por;
$can += $cant;
return $can;
}
$sSQL311 = "Select * From clientesInternos WHERE entidad='" . $_GET['entidad'] . "' and folioVenta='" . $_GET['folioVenta'] . "'";
$result311 = mysql_db_query($basedatos, $sSQL311);
$myrow311 = mysql_fetch_array($result311);
$paciente = $myrow311['paciente'];
$numeroE = $myrow311['numeroE'];
$nCuenta = $myrow311['nCuenta'];
$keyClientesInternos = $myrow311['keyClientesInternos'];
//*************************************************************
$pdf->SetFont('Arial', 'B', 13);
//establece el encabezado de la empresa
$pdf->SetXY(75, 9);
$pdf->Cell(0, 0, 'HOSPITAL LA CARLOTA S.C. ', 0, 0, M);
$pdf->SetFont('Arial', 'I', 9);
$pdf->SetXY(65, 13);
$pdf->Cell(0, 0, 'Camino al Vapor #209 Col. Zambrano, Montemorelos N.L.', 0, 0, M);
$pdf->SetXY(84, 17);
$pdf->Cell(0, 0, 'CP 67500, Tel.(826)263.3188', 0, 0, M);
//establece el nombre del paciente
$pdf->SetFont('Arial', '', 10);
$pdf->SetXY(2, 25);
/* $pdf->Cell(0,0,'Paciente: '.$paciente,0,0,L); */
$sSQL317 = "Select nomCliente From clientes WHERE entidad='" . $_GET['entidad'] . "' and numCliente = '" . $myrow311['seguro'] . "'";
$result317 = mysql_db_query($basedatos, $sSQL317);
$myrow317 = mysql_fetch_array($result317);
//Compa�ia
$pdf->SetXY(2, 33);
示例3: cambia_a_normal
function cambia_a_normal($fecha){
ereg( "([0-9]{2,4})-([0-9]{1,2})-([0-9]{1,2})", $fecha, $mifecha);
$lafecha=$mifecha[3]."/".$mifecha[2]."/".$mifecha[1];
return $lafecha;
}
//******************************************************************
if($seguro)$paciente=$seguro;
$pdf->SetFont('Arial','',10);
//establece el nombre del paciente
$pdf->SetXY(2,5);
$pdf->Cell(0,0,'POLIZA DE DIARIO',0,0,M);
$pdf->SetX(1);
//*****************ech*************
$fecha1=$_GET['fecha'];
$pdf->SetY(10);
$pdf->Cell(0,0,cambia_a_normal($fecha1),0,0,R);
示例4: cambia_a_normal
$servidor = 'localhost';
$basedatos = 'sima';
mysql_connect($servidor, $usuario, $passwd);
function cambia_a_normal($fecha)
{
ereg("([0-9]{2,4})-([0-9]{1,2})-([0-9]{1,2})", $fecha, $mifecha);
$lafecha = $mifecha[3] . "/" . $mifecha[2] . "/" . $mifecha[1];
return $lafecha;
}
//******************************************************************
if ($seguro) {
$paciente = $seguro;
}
$pdf->SetFont('Arial', '', 10);
//establece el nombre del paciente
$pdf->SetXY(2, 5);
$pdf->Cell(0, 0, 'REPORTE DETALLE DE CAJA', 0, 0, M);
$pdf->SetX(1);
//******************************
$fecha1 = date("d/m/Y");
$pdf->SetY(10);
$pdf->Cell(0, 0, $fecha1, 0, 0, R);
//*****************************
$sSQL1a = "Select * From statusCaja where keyCatC='" . $_GET['codigoCaja'] . "' and numCorte='" . $_GET['numCorte'] . "' order by keySTC DESC";
$result1a = mysql_db_query($basedatos, $sSQL1a);
$myrow1a = mysql_fetch_array($result1a);
$pdf->SetXY(2, 10);
$pdf->Cell(0, 0, "Diario de Caja", 0, 0, M);
$pdf->SetX(1);
$pdf->SetXY(2, 13);
$pdf->Cell(0, 0, 'Cajero(a): ' . $myrow1a['usuario'], 0, 0, M);
示例5:
$lafecha=$mifecha[3]."/".$mifecha[2]."/".$mifecha[1];
return $lafecha;
}
//******************************************************************
if($seguro)$paciente=$seguro;
$sSQL2c= "Select * From contadorEntregaGranel WHERE keySol='".$_GET['keySol']."' ";
$result2c=mysql_db_query($basedatos,$sSQL2c);
$myrow2c = mysql_fetch_array($result2c);
$pdf->SetFont('Arial','',10);
//establece el nombre del paciente
$pdf->SetXY(2,5);
$pdf->Cell(0,0,'HOSPITAL LA CARLOTA',0,0,M);
$pdf->SetX(1);
//*****************ech*************
//$fecha1=$_GET['fecha'];
$pdf->SetY(10);
$pdf->Cell(0,0,'Orden: '.$myrow2c['contador'],0,0,R);
示例6:
$cant = $can;
$can = $can / 100 * $por;
$can += $cant;
return $can;
}
$sSQL311 = "Select * From clientesInternos WHERE keyClientesInternos='" . $_GET['keyClientesInternos'] . "'";
$result311 = mysql_db_query($basedatos, $sSQL311);
$myrow311 = mysql_fetch_array($result311);
$paciente = $myrow311['paciente'];
$numeroE = $myrow311['numeroE'];
$nCuenta = $myrow311['nCuenta'];
$usuario = $myrow311['usuario'];
$keyClientesInternos = $myrow311['keyClientesInternos'];
$pdf->SetFont('Arial', '', 8);
//establece el encabezado de la empresa
$pdf->SetXY(80, 13);
//$pdf->Cell(0,0,$sSQL311,0,0,M);
$pdf->SetFont('Arial', '', 8);
$pdf->SetXY(65, 17);
//$pdf->Cell(0,0,'Camino al Vapor #201 Col. Zambrano, CP 67500, Montemorelos N.L.',0,0,M);
$pdf->SetXY(90, 20);
//$pdf->Cell(0,0,'Tel. (826)263-3188',0,0,M);
//establece el nombre del paciente
$pdf->SetFont('Arial', '', 8);
$sSQL455 = "Select * from clientes where entidad='" . $_GET['entidad'] . "' and numCliente='" . $_GET['seguro'] . "'";
$result455 = mysql_db_query($basedatos, $sSQL455);
$myrow455 = mysql_fetch_array($result455);
$sSQL455 = "Select * from clientes where entidad='" . $_GET['entidad'] . "' and numCliente='" . $myrow455['clientePrincipal'] . "'";
$result455 = mysql_db_query($basedatos, $sSQL455);
$myrow455 = mysql_fetch_array($result455);
$razonSocial = $myrow455['razonSocial'];
示例7: cambia_a_normal
function cambia_a_normal($fecha){
ereg( "([0-9]{2,4})-([0-9]{1,2})-([0-9]{1,2})", $fecha, $mifecha);
$lafecha=$mifecha[3]."/".$mifecha[2]."/".$mifecha[1];
return $lafecha;
}
//******************************************************************
if($seguro)$paciente=$seguro;
$pdf->SetFont('Arial','',10);
//establece el nombre del paciente
$pdf->SetXY(2,5);
$pdf->Cell(0,0,'REPORTE DE VENTAS DIRECTAS',0,0,M);
$pdf->SetX(1);
//*****************ech*************
$fecha1=$_GET['fecha'];
$pdf->SetY(10);
$pdf->Cell(0,0,'Fecha Inicial: '.cambia_a_normal($_GET['fechaInicial']).' a la fecha: '.cambia_a_normal($_GET['fechaFinal']),0,0,R);
示例8:
$sSQL311= "Select * From clientesInternos WHERE keyClientesInternos='".$_GET['keyClientesInternos']."' ";
$result311=mysql_db_query($basedatos,$sSQL311);
$myrow311 = mysql_fetch_array($result311);
$paciente=$myrow311['paciente'];
$numeroE=$myrow311['numeroE'];
$nCuenta=$myrow311['nCuenta'];
$keyClientesInternos=$myrow311['keyClientesInternos'];
$pdf->SetFont('Arial','B',13);
//establece el nombre del paciente
$pdf->SetFont('Arial','',10);
$pdf->SetXY(20,25);
$pdf->Cell(0,0,''.$paciente,0,0,L);
$pdf->SetXY(2,29);
$pdf->Cell(0,0,'Folio Sistema: '.$myrow311['folioVenta'],0,0,L);
$pdf->SetFont('Arial','',10);
$pdf->SetXY(2,33);
if($myrow311['seguro']){
$sSQL1= "Select nomCliente From clientes WHERE entidad='".$myrow311['entidad']."' AND numCliente = '".$myrow311['seguro']."' ";
$result1=mysql_db_query($basedatos,$sSQL1);
$myrow1 = mysql_fetch_array($result1);
$pdf->Cell(0,0,'No. Seguro: '.$myrow1['nomCliente'],0,0,L);
示例9:
$pdf->AddPage();
//require("/configuracion/funciones.php");
$usuario = "omorales";
$passwd = 'wolf3333';
$servidor = 'localhost';
$basedatos = 'sima';
mysql_connect($servidor, $usuario, $passwd);
//******************************************************************
//clases fuera
if (!$_GET['particular'] and !$_GET['aseguradora']) {
$_GET['particular'] = 'si';
$_GET['aseguradora'] = 'si';
}
$pdf->SetFont('Arial', '', 7);
//establece el nombre del paciente
$pdf->SetXY(18, 18);
$pdf->Cell(0, 0, 'C�digo Descripci�n', 0, 0, L);
$pdf->SetXY(50, 18);
$pdf->Cell(0, 0, $ctaMayor, 0, 0, L);
if ($_GET['particular'] == 'si') {
$pdf->SetXY(170, 18);
$pdf->Cell(0, 0, 'Part.', 0, 0, L);
}
if ($_GET['aseguradora'] == 'si') {
$pdf->SetXY(182, 18);
$pdf->Cell(0, 0, 'Aseg.', 0, 0, L);
}
$pdf->SetY(5);
$pdf->Cell(0, 0, $numeroTransaccion, 0, 0, R);
//numero de paciente
$pdf->SetXY(18, 10);
示例10:
$cant = $can;
$can = $can / 100 * $por;
$can += $cant;
return $can;
}
$sSQL311 = "Select * From clientesInternos WHERE \r\nfolioVenta='" . $_GET['folioVenta'] . "'";
$result311 = mysql_db_query($basedatos, $sSQL311);
$myrow311 = mysql_fetch_array($result311);
$paciente = $myrow311['paciente'];
$numeroE = $myrow311['numeroE'];
$nCuenta = $myrow311['nCuenta'];
$usuario = $myrow311['usuario'];
$keyClientesInternos = $myrow311['keyClientesInternos'];
$pdf->SetFont('Arial', '', 8);
//establece el encabezado de la empresa
$pdf->SetXY(80, 13);
//$pdf->Cell(0,0,$sSQL311,0,0,M);
$pdf->SetFont('Arial', '', 8);
$pdf->SetXY(65, 17);
//$pdf->Cell(0,0,'Camino al Vapor #201 Col. Zambrano, CP 67500, Montemorelos N.L.',0,0,M);
$pdf->SetXY(90, 20);
//$pdf->Cell(0,0,'Tel. (826)263-3188',0,0,M);
//establece el nombre del paciente
$pdf->SetFont('Arial', '', 8);
$sSQL455 = "Select * from clientes where entidad='" . $_GET['entidad'] . "' \r\nand numCliente='" . $_GET['seguro'] . "'";
$result455 = mysql_db_query($basedatos, $sSQL455);
$myrow455 = mysql_fetch_array($result455);
if ($_GET['rfc']) {
$sSQL455 = "Select * from RFC where rfc='" . $_GET['rfc'] . "'";
$result455 = mysql_db_query($basedatos, $sSQL455);
$myrow455 = mysql_fetch_array($result455);
示例11: cambia_a_normal
function cambia_a_normal($fecha){
ereg( "([0-9]{2,4})-([0-9]{1,2})-([0-9]{1,2})", $fecha, $mifecha);
$lafecha=$mifecha[3]."/".$mifecha[2]."/".$mifecha[1];
return $lafecha;
}
//******************************************************************
if($seguro)$paciente=$seguro;
$pdf->SetFont('Arial','',10);
//establece el nombre del paciente
$pdf->SetXY(75,5);
$pdf->Cell(0,0,'HOSPITAL LA CARLOTA',0,0,M);
$pdf->SetX(1);
//*****************ech*************
$fecha1=$_GET['fecha'];
$pdf->SetY(10);
$pdf->SetFont('Arial','',8);
$pdf->Cell(0,0,'Fecha Impresion: '.date("d/m/Y"),0,0,R);
示例12: ereg
ereg( "([0-9]{2,4})-([0-9]{1,2})-([0-9]{1,2})", $fecha, $mifecha);
$lafecha=$mifecha[3]."/".$mifecha[2]."/".$mifecha[1];
return $lafecha;
}
//******************************************************************
if($seguro)$paciente=$seguro;
$fechaInicial=$_GET['fechaInicial'];
$fechaFinal=$_GET['fechaFinal'];
$pdf->SetFont('Arial','',10);
//establece el nombre del paciente
$pdf->SetXY(2,5);
$pdf->Cell(0,0,'VENTAS POR VOLUMEN ',0,0,M);
$pdf->SetX(1);
//*****************ech*************
$fecha1=$_GET['fecha'];
$pdf->SetFont('Arial','',8);
$pdf->SetY(10);
$pdf->Cell(0,0,'Inicial: '.cambia_a_normal($fechaInicial),0,0,R);
$pdf->SetY(13);
示例13: date
$seguro = $myrow1['seguro'];
$numeroTransaccion = $myrow1['keyClientesInternos'];
//************devuelve seguro
$sSQL39 = "SELECT *\r\nFROM\r\nclientes\r\nwhere \r\nnumCliente='" . $seguro . "'";
$result39 = mysql_db_query($basedatos, $sSQL39);
$myrow39 = mysql_fetch_array($result39);
$seguro = $myrow39['nomCliente'];
$auxiliar = $myrow39['ID_AUXILIAR'];
$ctaMayor = $myrow39['ID_CTAMAYOR'];
//**********cierra devolver seguro
if ($seguro) {
$paciente = $seguro;
}
$pdf->SetFont('Arial', '', 10);
//establece el nombre del paciente
$pdf->SetXY(2, 5);
$pdf->Cell(0, 0, 'HOSPITAL LA CARLOTA', 0, 0, M);
$pdf->SetX(1);
$pdf->SetY(5);
$pdf->Cell(0, 0, 'Num. Corte: ' . $numCorte, 0, 0, R);
//numero de paciente
$pdf->SetXY(2, 10);
$pdf->Cell(0, 0, "Diario de Caja", 0, 0, M);
$pdf->SetX(1);
$pdf->SetXY(2, 13);
$pdf->Cell(0, 0, 'Cajero(a): ' . $usuario, 0, 0, M);
$pdf->SetX(1);
//cambiar fecha
//$myrow1['fecha1']=cambia_a_normal($myrow1['fecha1']);
$fecha1 = date("d/m/Y");
$pdf->SetY(10);
示例14: sum
$sSQL16 = "\r\n\tSELECT \r\n sum(precioVenta) as Tabonos\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE \r\nnumeroE = '" . $numeroE1 . "'\r\n and\r\n nCuenta='" . $nCuenta1 . "'\r\nand \r\nstatus='transaccion'\r\nand\r\nnaturaleza='A' \r\nand\r\ntipoCliente='particular'\r\n";
$result16 = mysql_db_query($basedatos, $sSQL16);
$myrow16 = mysql_fetch_array($result16);
$Tabonos = $myrow16['Tabonos'];
$sSQL2 = "\r\n\tSELECT \r\n sum(precioVenta) as TCargos\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE \r\nnumeroE = '" . $numeroE1 . "'\r\n and\r\n nCuenta='" . $nCuenta1 . "'\r\nand \r\nstatus='transaccion'\r\nand\r\nnaturaleza='C' \r\n\r\n";
$result2 = mysql_db_query($basedatos, $sSQL2);
$myrow2 = mysql_fetch_array($result2);
$TCargos = $myrow2['TCargos'];
$TOTAL = $myrow17['sumaCargos'] - $Tabonos + $TCargos;
$sSQL13 = "\r\n\tSELECT \r\n sum(iva*cantidad) as sumaiva\r\nFROM\r\ncargosCuentaPaciente\r\nWHERE \r\nnumeroE = '" . $_GET['numeroE'] . "'\r\n and\r\n nCuenta='" . $_GET['nCuenta'] . "'\r\nand\r\nstatusCargo='cargado'\r\n\r\n";
$result13 = mysql_db_query($basedatos, $sSQL13);
$myrow13 = mysql_fetch_array($result13);
$iva = $myrow13['sumaiva'];
$pdf->SetFont('Arial', '', 12);
//establece el nombre del paciente
$pdf->SetXY(22, 18);
$pdf->Cell(0, 0, 'Descripci�n', 0, 0, L);
$pdf->SetXY(175, 18);
$pdf->Cell(0, 0, 'Descuento', 0, 0, L);
$pdf->Line(23, 21, 200, 21);
$pdf->SetY(5);
$pdf->Cell(0, 0, $numeroTransaccion, 0, 0, R);
//numero de paciente
$pdf->SetXY(30, 5);
$pdf->Cell(0, 0, $_GET['titulo'], 0, 0, L);
$pdf->SetX(1);
//cambiar fecha
//$myrow1['fecha1']=cambia_a_normal($myrow1['fecha1']);
$fecha1 = date("d/m/Y");
/* $pdf->SetY(10);
$pdf->Cell(0,0,$fecha1,0,0,R); */
示例15:
{
$cant = $can;
$can = $can / 100 * $por;
$can += $cant;
return $can;
}
$sSQL311 = "Select * From clientesInternos WHERE folioVenta='" . $_GET['folioVenta'] . "'";
$result311 = mysql_db_query($basedatos, $sSQL311);
$myrow311 = mysql_fetch_array($result311);
$paciente = $myrow311['paciente'];
$numeroE = $myrow311['numeroE'];
$nCuenta = $myrow311['nCuenta'];
$keyClientesInternos = $myrow311['keyClientesInternos'];
$pdf->SetFont('Arial', '', 12);
//establece el encabezado de la empresa
$pdf->SetXY(80, 10);
$pdf->Cell(0, 0, 'HOSPITAL LA CARLOTA S.C. ', 0, 0, M);
$pdf->SetFont('Arial', '', 10);
$pdf->SetXY(65, 13);
$pdf->Cell(0, 0, 'Camino al Vapor #201 Col. Zambrano, CP 67500, Montemorelos N.L.', 0, 0, M);
$pdf->SetXY(90, 17);
$pdf->Cell(0, 0, 'Tel. (826)263-3188', 0, 0, M);
//establece el nombre del paciente
$pdf->SetFont('Arial', '', 13);
$pdf->SetXY(2, 25);
$pdf->Cell(0, 0, 'Paciente: ' . $paciente, 0, 0, L);
$pdf->SetXY(2, 29);
if ($myrow311['seguro']) {
$sSQL1 = "Select nomCliente From clientes WHERE entidad='" . $myrow311['entidad'] . "' AND numCliente = '" . $myrow311['seguro'] . "' ";
$result1 = mysql_db_query($basedatos, $sSQL1);
$myrow1 = mysql_fetch_array($result1);