当前位置: 首页>>代码示例>>PHP>>正文


PHP PDF::SetWidths方法代码示例

本文整理汇总了PHP中PDF::SetWidths方法的典型用法代码示例。如果您正苦于以下问题:PHP PDF::SetWidths方法的具体用法?PHP PDF::SetWidths怎么用?PHP PDF::SetWidths使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PDF的用法示例。


在下文中一共展示了PDF::SetWidths方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: ON

 $pdf->Open();
 $pdf->AddPage();
 $pdf->setY(10);
 $pdf->setX(100);
 $pdf->Cell(60, 8, "Este reporte de ventas corresponde a las siguentes fechas: ", 0, 1);
 $pdf->setX(120);
 $pdf->Cell(60, 8, "del " . $fecha . "al " . $fechaFinal, 0, 0);
 $pdf->SetMargins(20, 20, 20);
 $pdf->Ln(10);
 //    $pdf->SetFont('Arial','',12);
 //    $pdf->Cell(0,6,'Clave: '.$fila['idViajero'],0,1);
 // $pdf->Cell(0,6,'Nombre: '.$fila['Nombre'].' '.$fila['Direccion'].' '.$fila['Telefono'],0,1);
 // $pdf->Cell(0,6,'Sexo: '.$fila['Correo'],0,1);
 // $pdf->Cell(0,6,'Domicilio: '.$fila['Correo'],0,1);
 // $pdf->Ln(10);
 $pdf->SetWidths(array(15, 55, 60, 40, 35, 35, 18));
 $pdf->SetFont('Arial', 'B', 10);
 $pdf->SetFillColor(85, 107, 47);
 $pdf->SetTextColor(255);
 $pdf->SetY(20);
 $pdf->setX(5);
 for ($i = 0; $i < 1; $i++) {
     $pdf->Row(array('Folio', 'Cliente', 'Vendedor', 'Fecha de Compra', 'Importe', 'Neto', 'Tipo'));
 }
 // $strConsulta  = "SELECT * FROM venta WHERE (`EstatusP`= 'Cerrado') AND (`FechaCompra` BETWEEN '$fecha' AND '$fechaFinal')";
 $strConsulta = "SELECT \n\t\tFolioPago as Folio,\n\t\tCantPago as Importe,\n\t\tFechaExpedicion as Fecha,\n\t\t`usuarios`.`nombre` as Vendedor,\n\t\t`cliente`.`nombre` as Cliente,\n\t\t`pagov`.`Tipo`,\n\t\tNeto\n\n\t\tFROM pagov\n\t\tLEFT JOIN venta ON (`pagov`.`FolioVenta` = `Venta`.`FolioVta`) \n\t\tLEFT JOIN usuarios ON (`venta`.`IdUsuario` = `usuarios`.`idUsuario`) \n\t\tleft join cliente on (`venta`.`idViajero`=`cliente`.`idViajero`)\n\t\tORDER BY FechaCompra DESC";
 $historial = mysql_query($strConsulta);
 $numfilas = mysql_num_rows($historial);
 for ($i = 0; $i < $numfilas; $i++) {
     $fila = mysql_fetch_array($historial);
     $pdf->SetFont('Arial', '', 10);
开发者ID:kailIII,项目名称:angyTours,代码行数:31,代码来源:ReporteBitacoraE.php

示例2: Footer

        $this->Line(1, 77, 210, 77);
        $this->Ln(20);
    }
    function Footer()
    {
        $this->SetY(-15);
        $this->SetFont('Arial', 'I', 8);
        $this->Cell(0, 10, 'Pag. ' . $this->PageNo() . '/{nb}', 0, 0, 'C');
    }
}
$pdf = new PDF('P', 'mm', 'a4');
$pdf->AddPage();
$pdf->SetMargins(0, 0, 0, 0);
$pdf->AliasNbPages();
$pdf->AddFont('Amble-Regular');
$pdf->SetWidths(array(130, 100));
$pdf->SetFont('Amble-Regular', '', 10);
$tarifa0 = 0;
$tarifa12 = 0;
$iva = 0;
$descuento = 0;
$total = 0;
$sql = "select nombres_completos,direccion,telefono1,telefono2,fecha_actual,identificacion,correo,fecha_actual,fecha_cancelacion,numero_serie,forma_pago,tarifa0,tarifa12,iva,descuento,total from cliente,factura_venta where cliente.id_cliente = factura_venta.id_cliente and id_factura_venta = '{$_GET['id']}'";
$sql = sql($conexion, $sql);
while ($row = pg_fetch_row($sql)) {
    $pdf->SetX(5);
    $pdf->Cell(90, 5, maxCaracter("CLIENTE: " . utf8_decode($row[0]), 44), 0, 1, 'L', 0);
    $pdf->SetFont('Amble-Regular', '', 14);
    $pdf->Text(98, 85, "NRO FACTURA:            " . $row[9], 0, 'C', 0);
    $pdf->Text(98, 85, "NRO FACTURA:            " . $row[9], 0, 'C', 0);
    $pdf->SetFont('Amble-Regular', '', 10);
开发者ID:Oskrin,项目名称:neltex_formulario,代码行数:31,代码来源:factura_venta.php

示例3: PDF

    }
}
$id = $_GET['id'];
$p = $_GET['p'];
$f = $_GET['f'];
$m = $_GET['m'];
$o = $_GET['o'];
$pdf = new PDF('L', 'mm', 'Letter');
$pdf->Open();
$pdf->AddPage();
$pdf->SetMargins(20, 20, 20);
$pdf->SetFont('Arial', '', 8);
$pdf->SetTextColor(220, 50, 50);
$pdf->cell(222, -10, 'Receta No [' . $id . ' ]', 0, 0, 'C');
$pdf->Ln(1);
$pdf->SetWidths(array(150, 90));
$pdf->SetFont('Arial', '', 10);
$pdf->SetFillColor(255, 255, 255);
$pdf->SetTextColor(2);
$pdf->Row(array('Paciente : _' . $p, 'Fecha : _' . $f), 0);
$pdf->Ln(5);
$pdf->SetTextColor(0);
$pdf->Cell(0, 3, 'Medicamento: ', 0, 1);
$pdf->Write(6, "____________________________________________________________________________________________________________________");
$pdf->Ln(8);
$miarreglo = $m;
$renglon = explode('<br />', $miarreglo);
$i = 0;
while ($i <= 10) {
    $pdf->Write(7, $renglon[$i]);
    // porción1
开发者ID:KurokiUrabe,项目名称:Clinic,代码行数:31,代码来源:recetapdf.php

示例4: PDF

 	print_r($r2);
 	echo "<br><br>";
 */
 $name = $r1['studentbio_fname'] . " " . $r1['studentbio_lname'];
 // echo "name=$name";
 $school = $r2['school_names_desc'];
 $q5 = @mysql_query("select * from studentcontact where studentcontact_id = {$r1['studentbio_id']}");
 $r5 = @mysql_fetch_array($q5);
 $address1 = $r5['studentcontact_address1'];
 $address2 = $r5['studentcontact_address2'];
 $city = $r5['studentcontact_city'];
 $zip = $r5['studentcontact_zip'];
 $pdf = new PDF('L');
 $w = array(35, 35, 35, 35, 35, 35);
 $pdf->Open();
 $pdf->SetWidths($w);
 $pdf->SetMargins(50, 30);
 $pdf->AddPage();
 $pdf->SetFillColor(255, 255, 255);
 $pdf->SetXY(195, 35);
 $pdf->SetFont('Times', 'IB', 16);
 $pdf->Write(1, $school);
 $pdf->SetFont('Times', '', 14);
 $pdf->Ln();
 $pdf->SetXY(30, 50);
 $pdf->Write(1, $name);
 $pdf->Ln();
 $pdf->SetXY(30, 55);
 $pdf->Write(1, $address1);
 $pdf->Ln();
 if (!empty($address2)) {
开发者ID:google-code-backups,项目名称:swifttide,代码行数:31,代码来源:generatereportcardnew.php

示例5: trim

            } else {
                if ($risk == "High") {
                    $pdf->SetFillColor(255, 219, 219);
                } else {
                    if ($risk == "Medium") {
                        $pdf->SetFillColor(255, 242, 131);
                    } else {
                        if ($risk == "Low") {
                            $pdf->SetFillColor(255, 255, 192);
                        } else {
                            $pdf->SetFillColor(255, 255, 227);
                        }
                    }
                }
            }
            $pdf->SetWidths(array($vwidth_array[0] + $vwidth_array[1]));
            $info = trim($info);
            $info = preg_replace("/^\\s*/", "", $info);
            $info = preg_replace("/\n{2,}/", "\n", $info);
            $info = preg_replace("/^/m", "\t\t\t\t\t", $info);
            if (!is_null($links_to_vulns[$hostIP_ctx][$r2n[$risk]])) {
                $link = $links_to_vulns[$hostIP_ctx][$r2n[$risk]];
                unset($links_to_vulns[$hostIP_ctx][$r2n[$risk]]);
            } else {
                $link = null;
            }
            $pdf->Row(array(_($risk) . ":\n\n" . $info), $link);
        }
    }
    $pdf->Ln();
}
开发者ID:AntBean,项目名称:alienvault-ossim,代码行数:31,代码来源:respdf.php

示例6: date

 if (!is_null($orden['fechamuf'])) {
     $fechamuestreo .= ' y ' . date('d', strtotime($orden['fechamuf']));
 }
 $pdf->Cell(82.5, 5, utf8_decode('FECHA DE MUESTREO: ' . $fechamuestreo), 0, 0, 'C');
 $fechaanalisis = $orden['fechani'];
 if (!is_null($orden['fechanf'])) {
     $fechaanalisis .= ' al ' . date('d', strtotime($orden['fechanf']));
 }
 $pdf->Cell(0, 5, utf8_decode('LAPSO DE ANALISIS: ' . $fechaanalisis), 0, 1, 'C');
 $pdf->Cell(0, 5, utf8_decode('FECHA DE INFORME: ' . $orden['fechainforme']), 0, 1, 'C');
 $pdf->Ln(10);
 if ($gya) {
     $pdf->Cell(100, 5, utf8_decode('Parámetro: ' . $gya[0]['parametro']), 0, 0);
     $pdf->Cell(0, 5, utf8_decode('Método: ' . $gya[0]['metodo']), 0, 1, 'R');
     $pdf->SetFillColor(200);
     $pdf->SetWidths(array(20, 45, 40, 45, 15));
     $pdf->SetAligns(array('C'));
     $pdf->SetFonts(array('B'));
     $pdf->SetFontSizes(array(9));
     $pdf->Row(array('No. Mtra.', utf8_decode('Identificación'), 'Unidad', 'Resultado', 'M.C.'));
     $pdf->SetFillColor(255);
     $pdf->SetFonts(array(''));
     $pdf->SetAligns(array('C', 'L', 'C', 'C', 'C'));
     foreach ($gya as $key => $value) {
         $pdf->Row(array($value['muestranum'], utf8_decode($value['identificacion']), $value['unidades'], utf8_decode($value['resultado']), $value['LC']));
     }
     $pdf->Ln(10);
 }
 if ($coliformes) {
     $pdf->Cell(100, 5, utf8_decode('Parámetro: ' . $coliformes[0]['parametro']), 0, 0);
     $pdf->Cell(0, 5, utf8_decode('Método: ' . $coliformes[0]['metodo']), 0, 1, 'R');
开发者ID:jmoreno0118,项目名称:Microv2,代码行数:31,代码来源:pdf.php

示例7: PDF

			$y2  = $y1+5;
			$this->SetXY( $r1 , $y1 );
			$this->Cell($length,4, $ref);
		}
	}
	
	$pdf = new PDF('L','mm','A4');
	$pdf->AliasNbPages();	
	$titulos = array('GUIA','DESTINATARIO','DIRECCION','RECIBE','PAGADO','COBRAR','CREDITO');
	$medidas = array(23,90,80,25,20,20,20);
	
	//Carga de datos
	$pdf->SetFont('Arial','B',10);	
	$pdf->AddPage();	

	$pdf->SetWidths($medidas);
	$pdf->SetFont('Arial','B',6);	
	$pdf->Titulos($titulos,$medidas);
	$pdf->SetFont('Arial','B',6);
	for($i=0;$i<count($data);$i++){
		$pdf->Row($data[$i]);
	}
	
	$pdf->addLeyenda("TOTAL GUIAS A REPARTIR: ".$total."",170,10);
	$pdf->addLeyenda("RECIBI:_______________________________",175,10);
	$pdf->addLeyenda("CHOFERES: ".$fr->conductor1."",180,10);
	$pdf->addLeyenda("UNIDAD: ".$fr->unidad."",185,10);
	$pdf->addLeyenda("GUIAS DEVUELTAS:_____",180,150);
	$pdf->addLeyenda("ENCARGADO DE ALMACEN:_______________________________",185,150);
	$pdf->addLeyenda2("TOTAL:",160,226);
	$pdf->addLeyenda2("$".number_format($tpagado,2,'.',','),160,236);
开发者ID:sigmadesarrollo,项目名称:logisoft,代码行数:31,代码来源:relacionRepartoEad.php

示例8:

$pdf->AddPage();
$pdf->SetMargins(20, 20, 20);
$pdf->Ln(10);
$pdf->SetFont('Arial', '', 12);
$pdf->Cell(0, 6, 'Nombre: ' . $fila['nombre'], 0, 1);
$pdf->Cell(0, 6, 'Dni: ' . $fila['dni'], 0, 1);
$pdf->Cell(0, 6, 'Direccion: ' . $fila['direccion'], 0, 1);
$pdf->Cell(0, 6, 'Mascota: ' . $fila['mascota'], 0, 1);
$pdf->Cell(0, 6, 'Edad: ' . $fila['edad'], 0, 1);
$pdf->Cell(0, 6, 'Sexo: ' . $fila['sexo'], 0, 1);
$pdf->Cell(0, 6, 'Color: ' . $fila['color'], 0, 1);
$pdf->Cell(0, 6, 'Usuario: ' . $fila['usuario'], 0, 1);
$pdf->Cell(0, 6, 'Password: ' . $fila['password'], 0, 1);
$pdf->Cell(0, 6, 'Correo: ' . $fila['correo'], 0, 1);
$pdf->Ln(10);
$pdf->SetWidths(array(65, 60, 55, 50, 20));
$pdf->SetFont('Arial', 'B', 10);
$pdf->SetFillColor(85, 107, 47);
$pdf->SetTextColor(255);
/*for($i=0;$i<1;$i++)
			{
				$pdf->Row(array('FECHA', 'MEDICO', 'CONSULTORIO', 'DIAGNOSTICO'));
			}
	
	$historial = $con->conectar();	
	$strConsulta = "SELECT consultas_medicas.fecha_consulta, consultas_medicas.consultorio, consultas_medicas.diagnostico, medicos.nombre_medico 
	FROM consultas_medicas 
	Inner Join pacientes ON consultas_medicas.id_paciente = pacientes.id_paciente 
	Inner Join medicos ON consultas_medicas.id_medico = medicos.id_medico
	WHERE pacientes.id_paciente = '$paciente'";
	
开发者ID:jsabbath,项目名称:Huellitas,代码行数:30,代码来源:reporte_historial.php

示例9: PDF

        		$this->TituloCabecera(35,"Armazon",8);
        		$this->TituloCabecera(25,"Tipo Cristal",8);
        		$this->TituloCabecera(35,"Armazon",8);*/
        $this->TituloCabecera(15, "Monto Bs", 8);
        $this->TituloCabecera(15, "ACta Bs", 8);
        $this->TituloCabecera(15, "ACta \$us", 8);
        $this->TituloCabecera(20, "Saldo a Cobrar", 8);
        $this->TituloCabecera(20, "F Entrega", 8);
        $this->TituloCabecera(20, "F Ent. Real", 8);
        $this->TituloCabecera(20, "Hora Entrega", 8);
        $this->TituloCabecera(35, "Observación", 8);
    }
}
$pdf = new PDF("L", "mm", "letter");
$pdf->AddPage();
$pdf->SetWidths(array(15, 20, 40, 15, 15, 15, 20, 20, 20, 20, 35, 30));
$pdf->Fuente("", 9);
$pdf->SetAligns(array("R", "R", "", "R", "R", "R", "R", "R", "R", "R"));
$TTotalBs = 0;
foreach ($opt as $o) {
    $pac = $paciente->MostrarRegistro($o['CodPaciente']);
    $pac = array_shift($pac);
    $prod1 = $producto->MostrarRegistro($o['CodProducto1']);
    $prod1 = array_shift($prod1);
    $prod2 = $producto->MostrarRegistro($o['CodProducto2']);
    $prod2 = array_shift($prod2);
    $prod3 = $producto->MostrarRegistro($o['CodProducto3']);
    $prod3 = array_shift($prod3);
    $prod4 = $producto->MostrarRegistro($o['CodProducto4']);
    $prod4 = array_shift($prod4);
    $prodtipo = $productotipo->MostrarRegistro($o['CodProductoTipo']);
开发者ID:JonathanLoer,项目名称:opticacosmos,代码行数:31,代码来源:reporteentregas.php

示例10: PDF

        /*$this->TituloCabecera(25,"Tipo Cristal",8);
        		$this->TituloCabecera(35,"Armazon",8);
        		$this->TituloCabecera(25,"Tipo Cristal",8);
        		$this->TituloCabecera(35,"Armazon",8);*/
        $this->TituloCabecera(15, "Monto Bs", 8);
        $this->TituloCabecera(15, "ACta Bs", 8);
        $this->TituloCabecera(15, "ACta \$us", 8);
        $this->TituloCabecera(20, "Saldo a Cobrar", 8);
        $this->TituloCabecera(20, "F Entrega", 8);
        $this->TituloCabecera(35, "Observación", 8);
        $this->TituloCabecera(35, "Usuario", 8);
    }
}
$pdf = new PDF("L", "mm", "letter");
$pdf->AddPage();
$pdf->SetWidths(array(10, 15, 20, 15, 40, 15, 15, 15, 20, 20, 35, 35));
$pdf->Fuente("", 9);
$pdf->SetAligns(array("R", "C", "", "R", "L", "R", "R", "R", "R", "R"));
$TTotalBs = 0;
$contadorUsuario = 0;
foreach ($opt as $o) {
    if ($contadorUsuario != $idusuario) {
        $i = 0;
        $contadorUsuario = $idusuario;
    }
    $i++;
    $idusuario = $o['CodUsuarioEmitido'];
    $datosUsuario = $usuario->mostrarDatos($idusuario);
    $datosUsuario = array_shift($datosUsuario);
    $pac = $paciente->MostrarRegistro($o['CodPaciente']);
    $pac = array_shift($pac);
开发者ID:JonathanLoer,项目名称:opticacosmos,代码行数:31,代码来源:reportenoentregas.php

示例11: ON

 $pdf->Open();
 $pdf->AddPage();
 $pdf->setY(10);
 $pdf->setX(100);
 $pdf->Cell(60, 8, "Este reporte de ventas corresponde a las siguentes fechas: ", 0, 1);
 $pdf->setX(120);
 $pdf->Cell(60, 8, "del " . $fecha . "al " . $fechaFinal, 0, 0);
 $pdf->SetMargins(20, 20, 20);
 $pdf->Ln(10);
 //    $pdf->SetFont('Arial','',12);
 //    $pdf->Cell(0,6,'Clave: '.$fila['idViajero'],0,1);
 // $pdf->Cell(0,6,'Nombre: '.$fila['Nombre'].' '.$fila['Direccion'].' '.$fila['Telefono'],0,1);
 // $pdf->Cell(0,6,'Sexo: '.$fila['Correo'],0,1);
 // $pdf->Cell(0,6,'Domicilio: '.$fila['Correo'],0,1);
 // $pdf->Ln(10);
 $pdf->SetWidths(array(15, 60, 55, 50, 60));
 $pdf->SetFont('Arial', 'B', 10);
 $pdf->SetFillColor(85, 107, 47);
 $pdf->SetTextColor(255);
 for ($i = 0; $i < 1; $i++) {
     $pdf->Row(array('Folio', 'Cliente', 'Importe de la Venta', 'Fecha de Compra', 'Vendedor'));
 }
 // $strConsulta  = "SELECT * FROM venta WHERE (`EstatusP`= 'Cerrado') AND (`FechaCompra` BETWEEN '$fecha' AND '$fechaFinal')";
 $strConsulta = "SELECT FolioGrupo as Folio, CostoTotal as Importe,FechaCompra as Fecha,`usuarios`.`nombre` as Vendedor,`cliente`.`nombre` as Cliente FROM ventagrupo LEFT JOIN usuarios ON (`ventagrupo`.`idUsuario` = `usuarios`.`idUsuario`) left join cliente on (`ventagrupo`.`idViajero`=`cliente`.`idViajero`)\n\t\twhere EstatusP = 'Cerrado' AND (`FechaCompra` BETWEEN '{$fecha}' AND '{$fechaFinal}')";
 $historial = mysql_query($strConsulta);
 $numfilas = mysql_num_rows($historial);
 for ($i = 0; $i < $numfilas; $i++) {
     $fila = mysql_fetch_array($historial);
     $pdf->SetFont('Arial', '', 10);
     if ($i % 2 == 1) {
         $pdf->SetFillColor(153, 255, 153);
开发者ID:kailIII,项目名称:angyTours,代码行数:31,代码来源:ReporteBitacoraG.php

示例12: array

 $pdf->SetY(45);
 $pdf->SetLeftMargin(120);
 $pdf->ImprovedTable('', $temp['key']);
 $pdf->SetLeftMargin(15);
 // top right area eof
 // invoice number
 $pdf->Ln(10);
 $pdf->SetFont('Arial', 'B', 10);
 $pdf->Cell(0, 0, utf8_decode($this->pi_getLL('admin_invoice_number') . ': ' . $invoice['invoice_id']), 0, 1, 'L');
 $pdf->Ln(5);
 // invoice number eof
 // data table
 $temp = array();
 switch ($this->LLkey) {
     case "de":
         $pdf->SetWidths(array(10, 37, 68, 17, 26, 22));
         break;
     case "nl":
         $pdf->SetWidths(array(12, 31, 77, 12, 26, 22));
         break;
     case "en":
         $pdf->SetWidths(array(10, 35, 75, 12, 26, 22));
         break;
     case "fr":
         $pdf->SetWidths(array(10, 44, 61, 17, 26, 22));
         break;
     case "es":
         $pdf->SetWidths(array(16, 39, 60, 17, 26, 22));
         break;
     default:
         $pdf->SetWidths(array(12, 36, 67, 17, 26, 22));
开发者ID:bvbmedia,项目名称:multishop,代码行数:31,代码来源:zzzz_download_invoice_b2c.php

示例13: PDF

<?php

ob_end_clean();
require 'lib/fpdf/PDF.php';
$pdf = new PDF('P', 'mm', 'Letter');
$family = 'Helvetica';
$pdf->Open();
$pdf->SetMargins(20, 20, 20);
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetWidths(array(180));
$pdf->SetFont($family, 'B', 9);
$pdf->SetFillColor(1, 137, 105);
$pdf->SetTextColor(255);
// carga de datos del formulario de admision
$form = new MembershipAppForm($db);
$list = $form->getPDFListMembershipAppForm($_GET['id']);
$form_admision = $list[0];
// carga de datos de escolaridad
$sch = new Schooling($db);
$list_sch = $sch->getPDFListSchooling($_GET['id']);
$escolaridad = $list_sch[0];
// carga de datos de los padres del estudiante
$aparents = new ApplicationParents($db);
$list_padre = $aparents->getPDFListApplicationParents($_GET['id'], 25);
//PADRE
$list_madre = $aparents->getPDFListApplicationParents($_GET['id'], 26);
//MADRE
$datos_padre = $list_padre[0];
$datos_madre = $list_madre[0];
// carga de datos de los Hermanos
开发者ID:vicholuis,项目名称:proyectopruebalms,代码行数:31,代码来源:formulario_pdf.php

示例14: PDF

        $this->Ln();
        $this->TituloCabecera(10, "N", 8);
        $this->TituloCabecera(20, "FechaIngreso", 8);
        $this->TituloCabecera(40, "Cliente", 8);
        if ($ReporteCompleto == 1) {
            $this->TituloCabecera(20, "Total Optica", 8);
            $this->TituloCabecera(20, "Desc. Optica", 8);
        }
        $this->TituloCabecera(20, "Total", 8);
        $this->TituloCabecera(20, "Porcentaje", 8);
        //$this->TituloCabecera(20,"Total",8);
    }
}
$pdf = new PDF("P", "mm", "letter");
$pdf->AddPage();
$pdf->SetWidths(array(10, 20, 40, 20, 20, 20, 20, 20));
$pdf->Fuente("", 9);
$pdf->SetAligns(array("R", "R", "", "R", "R", "R", "R", "R", "R", "R", "L", "L", "L"));
$TTotalBs = 0;
foreach ($opt as $o) {
    $i++;
    $pac = $paciente->MostrarRegistro($o['CodPaciente']);
    $pac = array_shift($pac);
    $TotalBs = number_format($o['TotalBs'], 2, ".", "");
    $DescuentoOptica = number_format($TotalBs * (30 / 100), 2, ".", "");
    $TotalBsConOptica = number_format($TotalBs - $DescuentoOptica, 2, ".", "");
    $DescuentoMedico = number_format($TotalBsConOptica * ($Porcentaje / 100), 2, ".", "");
    $TotalMedico = number_format($TotalBsConOptica - $DescuentoMedico, 2, ".", "");
    $TTotalBs += $TotalBs;
    $TDescuentoOptica += $DescuentoOptica;
    $TTotalBsConOptica += $TotalBsConOptica;
开发者ID:JonathanLoer,项目名称:opticacosmos,代码行数:31,代码来源:reporte.php

示例15: strtoupper

    ///DIRECCION (X,Y)
    $pdf->Text(25, 94, utf8_decode('' . strtoupper($fila[11])), 0, 'C', 0);
    ///TELEFONO(X,Y)
    $pdf->Text(115, 94, utf8_decode('' . strtoupper($fila[12])), 0, 'C', 0);
    ///CIUDAD(X,Y)
    $pdf->Text(180, 76, utf8_decode(strtoupper($fila[13])), 0, 'C', 0);
    ///FECHA EMISION (X,Y)
    $pdf->Text(180, 82, utf8_decode(strtoupper($fila[14])), 0, 'C', 0);
    ////FORMA PAGO (X,Y)
    $pdf->Text(183, 88, utf8_decode(strtoupper($fila[15])), 0, 'C', 0);
    ///FECHA VENCIMIENTO (X,Y)
    $pdf->Ln(32);
}
///////////////
$pdf->SetFont('Arial', '', 8);
$pdf->SetWidths(array(20, 130, 30, 30));
$pdf->SetFillColor(85, 107, 47);
$sql = pg_query("select detalle_factura_venta.cantidad,productos.articulo,detalle_factura_venta.precio_venta,detalle_factura_venta.total_venta from factura_venta,detalle_factura_venta,productos where factura_venta.id_factura_venta=detalle_factura_venta.id_factura_venta and detalle_factura_venta.cod_productos=productos.cod_productos and detalle_factura_venta.id_factura_venta='{$_GET['id']}'");
$numfilas = pg_num_rows($sql);
for ($i = 0; $i < $numfilas; $i++) {
    $fila = pg_fetch_row($sql);
    $pdf->SetFont('Arial', '', 8);
    $pdf->SetFillColor(255, 255, 255);
    $pdf->SetTextColor(0);
    $pdf->Row(array(utf8_decode($fila[0]), utf8_decode($fila[1]), utf8_decode($fila[2]), utf8_decode($fila[3])));
}
$temp = '';
$temp1 = '';
$t = 180;
$prod = 0;
$cont_prod = 0;
开发者ID:kailIII,项目名称:catalogo,代码行数:31,代码来源:factura_venta1.php


注:本文中的PDF::SetWidths方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。