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


PHP PDF::Multicell方法代码示例

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


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

示例1: DataMySQLRetornar

$pdf->Ln();
$pdf->Cell(0, 4, 'Rua São Bento, 289 - Bairro Progresso - Rio do Sul - SC - CEP: 89160-000', 0, 0, 'R');
$pdf->Ln();
$pdf->Cell(0, 4, 'Fone: (47) 3522-1336 / 3521-4024 - consoli@consolieventos.com.br', 0, 0, 'R');
$pdf->Ln(14);
$pdf->SetFont('Arial', 'B', 14);
$pdf->SetFillColor(178, 178, 178);
$pdf->Cell(90, 7, 'Emissão do Pedido', 1, 0, 'C', 1);
$pdf->Cell(40, 7, 'Nro: ' . $dados_pedido["id"], 1, 0, 'C');
$pdf->Cell(0, 7, 'Emissão: ' . DataMySQLRetornar($dados_pedido["data"]), 1, 0, 'C');
$pdf->ln(8);
$pdf->SetFont('Arial', 'B', 12);
$pdf->Cell(0, 6, 'Dados do Formando', 1, 0, 'C', 1);
$pdf->ln();
$pdf->SetFont('Arial', '', 10);
$pdf->Multicell(0, 5, '[' . $dados_pedido["formando_id"] . '] - ' . $dados_pedido["formando_nome"] . "\n" . $dados_pedido["evento_nome"] . "\n" . DataMySQLRetornar($dados_pedido["evento_data"]), 1);
$pdf->ln(2);
$pdf->SetFont('Arial', 'B', 12);
$pdf->Cell(0, 6, 'Dados do Fornecedor', 1, 0, 'C', 1);
$pdf->ln();
$pdf->SetFont('Arial', '', 10);
$pdf->Multicell(0, 5, $dados_pedido["fornecedor_nome"] . "\n" . $dados_pedido["fornecedor_endereco"] . " - " . $dados_pedido["fornecedor_complemento"] . "\n" . $dados_pedido["fornecedor_bairro"] . " - " . $dados_pedido["fornecedor_cep"] . " - " . $dados_pedido["cidade_fornecedor_nome"] . "/" . $dados_pedido["fornecedor_uf"] . "\n" . $dados_pedido["fornecedor_telefone"] . " - " . $dados_pedido["fornecedor_email"] . " - " . $dados_pedido["fornecedor_contato"], 1);
$pdf->ln(3);
$pdf->SetFont('Arial', 'B', 12);
$pdf->Cell(0, 6, 'Descrição dos Produtos', 1, 0, 'C', 1);
$pdf->ln();
$pdf->SetFont('Arial', 'B', 10);
$pdf->Cell(20, 6, 'Quant.', 1, 0, 'C', 1);
$pdf->Cell(0, 6, 'Descrição/Observações', 1, 0, 'C', 1);
$pdf->ln();
//Busca os dados dos produtos
开发者ID:workcrm,项目名称:consoli,代码行数:31,代码来源:PedidoDetalheRelatorio.php

示例2:

 $b13 = $row5['b13'];
 $b14 = $row5['b14'];
 $b15 = $row5['b15'];
 $b16 = $row5['b16'];
 $b17 = $row5['b17'];
 $b18 = $row5['b18'];
 $b19 = $row5['b19'];
 $b20 = $row5['b20'];
 $encabezamiento = 'PLAN DE TRABAJO INDIVIDUALIZADO' . "\n" . '(Decreto 69/2007,Artículo 10)' . "\n" . 'MATERIA: ' . $materia2;
 $pdf->AddPage();
 $pdf->SetFont('Arial', 'B', 12);
 $pdf->Image('logoclm.jpg', 10, 10);
 $pdf->SetLineWidth(0.5);
 $pdf->Cell(50, 10, '');
 $pdf->SetFillColor(150, 150, 150);
 $pdf->Multicell(90, 8, $encabezamiento, 1, 'C', 1, 1);
 $pdf->SETXY(10, 50);
 $pdf->SetFont('Arial', 'B', 10);
 $pdf->Multicell(160, 5, 'PERFIL ACADÉMICO DEL ALUMNO. GRUPO:' . $grupo . "\n", 1, 'C', 1);
 $pdf->SetFont('Arial', '', 8);
 $pdf->SETXY(10, 55);
 $pdf->Multicell(80, 5, 'ALUMNO: ' . $nombre2 . "\n" . 'CURSO: ' . $curso2 . "\n" . 'TUTOR/-A: ' . $tutor2, 1);
 $pdf->SETXY(90, 55);
 $pdf->Multicell(80, 5, 'MATERIA: ' . $materia2 . "\n" . 'CALIFICACIÓN: ' . $calificacion2 . "\n" . 'PROFESOR/-A: ' . $profesor2, 1);
 $perfilacademico = "";
 if ($acnee2 == 1) {
     $perfilacademico = $perfilacademico . "El alumno es ACNEE.\n";
 }
 if ($objetor2 == 1) {
     $perfilacademico = $perfilacademico . "El alumno es objetor escolar.  \n";
 }
开发者ID:agomezgar,项目名称:pti31,代码行数:31,代码来源:ptiporgrupopdf.php

示例3: DataMySQLRetornar

$pdf->Ln(14);
$pdf->SetFont('Arial', 'B', 16);
$pdf->SetFillColor(178, 178, 178);
$pdf->Cell(0, 7, 'Pedido de Foto e Vídeo Nro ' . $dados_pedido["id"], 0, 0);
$pdf->ln();
$pdf->SetFont('Arial', 'B', 11);
$pdf->Cell(0, 5, 'Emissão: ' . DataMySQLRetornar($dados_pedido["data"]) . ' Por: ' . $dados_pedido["usuario_nome"], 0, 0);
$pdf->ln();
$pdf->SetFont('Arial', 'B', 11);
$pdf->Cell(0, 5, 'Data da Venda: ' . DataMySQLRetornar($dados_pedido["data_venda"]), 0, 0);
$pdf->ln(8);
$pdf->SetFont('Arial', 'B', 11);
$pdf->Cell(0, 6, 'Formando:', 1, 0, 'L', 1);
$pdf->ln();
$pdf->SetFont('Arial', '', 10);
$pdf->Multicell(0, 5, '[' . $dados_pedido["formando_id"] . '] - ' . $dados_pedido["formando_nome"] . "\n[" . $dados_pedido["evento_id"] . '] - ' . $dados_pedido["evento_nome"], 1);
$pdf->ln(3);
$pdf->SetFont('Arial', 'B', 11);
$pdf->Cell(0, 6, 'Observações do Pedido:', 1, 0, 'L', 1);
$pdf->ln();
$pdf->SetFont('Arial', 'I', 9);
$pdf->Multicell(0, 5, $dados_pedido["observacoes"], 1);
$pdf->ln(3);
$pdf->SetFont('Arial', 'B', 11);
$pdf->Cell(0, 6, 'Descrição dos Produtos:', 1, 0, 'L', 1);
$pdf->ln();
$pdf->SetFont('Arial', 'B', 10);
$pdf->Cell(118, 6, 'Descrição/Observações', 1, 0, 'C', 1);
$pdf->Cell(16, 6, 'Quant.', 1, 0, 'C', 1);
$pdf->Cell(28, 6, 'Unitário', 1, 0, 'R', 1);
$pdf->Cell(28, 6, 'Total', 1, 0, 'R', 1);
开发者ID:workcrm,项目名称:consoli,代码行数:31,代码来源:FotoVideoPedidoRelatorioPDF.php

示例4: DataMySQLRetornar

    $pdf->ln();
    $pdf->Cell(26, 5, $desc_status);
    $pdf->SetFont("Arial", "B", 10);
    $pdf->Cell(80, 5, $dados["atividade_nome"]);
    $pdf->SetFont("Arial", "", 10);
    $pdf->Cell(14, 5, $dados["atividade_dias"], 0, 'C');
    $pdf->Cell(30, 5, DataMySQLRetornar($dados["data_prazo"]));
    if ($dados["data_execucao"] != '0000-00-00') {
        $pdf->Cell(30, 5, DataMySQLRetornar($dados["data_execucao"]));
    } else {
        $pdf->Cell(30, 5, ' ');
    }
    $pdf->Cell(0, 5, $dados["usuario_nome"]);
    if ($dados["obs"] != '') {
        $pdf->ln();
        $pdf->setX(36);
        $pdf->SetFont("Arial", "I", 9);
        $pdf->Multicell(0, 3, $dados["obs"]);
        $pdf->SetFont("Arial", "", 10);
    }
    $quebra = $dados["evento_id"];
}
$pdf->SetFont("Arial", "B", 10);
$pdf->ln();
$pdf->Cell(0, 6, "Total Geral de Atividades: " . $registros, "T");
$pdf->ln();
$pdf->Cell(0, 6, "Em Aberto: " . $soma_aberto, "T");
$pdf->ln();
$pdf->Cell(0, 6, "Concluídas: " . $soma_fechado, "T");
//Gera o PDF
$pdf->Output();
开发者ID:workcrm,项目名称:consoli,代码行数:31,代码来源:EventoRelatorioAtividadePDF.php

示例5:

 if ($chkValorMultaJuros == 1) {
     $pdf->Cell(24, 3, ' ', 'LBR', 0, 'C');
 }
 if ($chkValorReceber == 1) {
     $pdf->Cell(24, 3, ' ', 'LBR', 0, 'C');
 }
 if ($chkValorRecebido == 1) {
     $pdf->Cell(24, 3, ' ', 'LBR', 0, 'C');
 }
 if ($chkSaldoReceber == 1) {
     $pdf->Cell(24, 3, ' ', 'LBR', 0, 'C');
 }
 if ($_GET["Observacoes"] == 1 and $dados_rec["observacoes"] != "") {
     $pdf->ln();
     $pdf->SetFont('Arial', '', 8);
     $pdf->Multicell(0, 3, "Observações:\n\n" . $dados_rec["observacoes"], 'LBR');
 }
 $total_vencido_original = $total_vencido_original + $dados_rec[valor_original];
 $total_aberto_original = $total_aberto_original + $dados_rec[valor_original];
 $total_recebido_original = $total_recebido_original + $dados_rec[valor_original];
 $total_geral_original = $total_geral_original + $dados_rec[valor_original];
 $total_vencido_boletos = $total_vencido_boletos + $dados_rec[valor_boleto];
 $total_aberto_boletos = $total_aberto_boletos + $dados_rec[valor_boleto];
 $total_recebido_boletos = $total_recebido_boletos + $dados_rec[valor_boleto];
 $total_geral_boletos = $total_geral_boletos + $dados_rec[valor_boleto];
 $total_vencido_multa_juros = $total_vencido_multa_juros + $dados_rec[valor_multa_juros];
 $total_aberto_multa_juros = $total_aberto_multa_juros + $dados_rec[valor_multa_juros];
 $total_recebido_multa_juros = $total_recebido_multa_juros + $dados_rec[valor_multa_juros];
 $total_geral_multa_juros = $total_geral_multa_juros + $dados_rec[valor_multa_juros];
 $total_vencido_receber = $total_vencido_receber + $dados_rec[valor];
 $total_aberto_receber = $total_aberto_receber + $dados_rec[valor];
开发者ID:workcrm,项目名称:consoli,代码行数:31,代码来源:ContaReceberRelatorioPDF.php

示例6: date

$date = date("Y-m-d");
$pdf->Cell(0, 0, 'Date: ' . $date . ' ', 0, 0, 'R');
$pdf->Ln(7);
$pdf->SetFont('Arial', 'BU', 13);
$pdf->Cell(0, 0, "PROGRESS REPORT", 0, 0, 'C');
$pdf->Ln(7);
$pdf->SetFont('Arial', '', 10);
$pdf->Cell(0, 0, 'To,');
$pdf->Ln(5);
$name = "parent/guardian name";
$pdf->Cell(0, 0, 'Parent / Guardian of ' . $name . ' ');
$pdf->Ln(5);
$pdf->Cell(0, 0, 'Dear Sir / Madam, ');
$pdf->Ln(3);
$dispsem = 6;
$pdf->Multicell(0, 5, 'I am herewith furnishing the progress report of your ward Mr./Ms. ' . $name . ' bearing Roll No: ' . $usn . ' of ' . $dispsem . ' Semester for the Second internal assessmenet examination as under. You are here by requested to go through the report and give us your feeback.');
$pdf->Ln(4);
$pdf->SetFont('Arial', 'B', 12);
$mon = "June";
$year = "2015";
$pdf->Cell(0, 0, 'Internal Assessment Examination: ' . $mon . ' ' . $year . ' ', 0, 0, 'C');
$pdf->Ln(3);
$x = $pdf->GetX();
$y = $pdf->GetY();
$pdf->Cell(8, 6, " ", 'TLR', 2);
$pdf->Cell(8, 6, "Sl.", 'LR', 2);
$pdf->Cell(8, 6, "No", 'LR', 2);
$pdf->Cell(8, 6, " ", 'BLR', 2);
$pdf->setXY($x + 8, $y);
$pdf->Cell(60, 24, "Subject Name", 'TBR', 2, 'C');
$pdf->setXY($x + 68, $y);
开发者ID:Ranjitha10,项目名称:Councellor-details-management,代码行数:31,代码来源:report.php

示例7: while

        $pdf->SetX(40);
        $pdf->Cell(0, 6, 'Descrição:');
        $pdf->SetX(116);
        $pdf->Cell(0, 6, 'Observações:');
        //Percorre o array
        while ($dados_datas = mysql_fetch_array($sql_datas)) {
            //Imprime os dados dos contatos
            $pdf->ln();
            $pdf->SetFont('Arial', 'B', 9);
            $pdf->Cell(6, 4, DataMySQLRetornar($dados_datas['data']) . ' - ' . substr($dados_datas['hora'], 0, 5));
            $pdf->SetX(40);
            $pdf->SetFont('Arial', '', 9);
            $pdf->Cell(100, 4, $dados_datas['descricao']);
            $pdf->SetX(116);
            $pdf->SetFont('Arial', '', 8);
            $pdf->Multicell(0, 3, $dados_datas['observacoes']);
        }
    }
    $pdf->ln();
    //Fecha o if de imprimir as datas
}
//Verifica se deve imprimir os participantes do evento
if ($ImprimeParticipantes == 1) {
    //*** Exibe os participantes do evento
    $pdf->ln();
    $pdf->SetFont('Arial', 'B', 10);
    $pdf->SetFillColor(178, 178, 178);
    $pdf->Cell(0, 6, 'Participantes do Evento', 1, 0, 'C', 1);
    $pdf->ln();
    //verifica os participantes já cadastrados para este evento e exibe na tela
    $sql_participante = mysql_query("SELECT\n\t\t\t\t\t\t\t\t\t par.id,\n\t\t\t\t\t\t\t\t\t par.colaborador_id,\n\t\t\t\t\t\t\t\t\t par.funcao_id,\n\t\t\t\t\t\t\t\t\t col.nome as colaborador_nome,\n\t\t\t\t\t\t\t\t\t col.telefone,\n\t\t\t\t\t\t\t\t\t col.celular,\n\t\t\t\t\t\t\t\t\t fun.nome as funcao_nome\n\t\t\t\t\t\t\t\t\t FROM eventos_participante par\n\t\t\t\t\t\t\t\t\t INNER JOIN colaboradores col ON col.id = par.colaborador_id\n\t\t\t\t\t\t\t\t\t LEFT OUTER JOIN funcoes fun ON fun.id = par.funcao_id\n\t\t\t\t\t\t\t\t\t WHERE par.evento_id = '{$EventoId}'\n\t\t\t\t\t\t\t\t\t ORDER by col.nome");
开发者ID:workcrm,项目名称:consoli,代码行数:31,代码来源:EventoDetalheRelatorioPDF.php

示例8: printviewAction


//.........这里部分代码省略.........
                             $fator = "Idade            Valores referenciais";
                         } else {
                             if ($vlref['fgfactor'] == 2) {
                                 $fator = "Masculino                    Feminino";
                             } else {
                                 if ($vlref['fgfactor'] == 3) {
                                     $fator = "Idade       Masculino        Feminino";
                                 }
                             }
                         }
                     }
                     if ($fgstatus == true) {
                         $pdf->Cell(-1);
                         $pdf->Cell(1, 5, $fator, 0, 0, 'L');
                         $fgstatus = false;
                     }
                     /* VALORES DE REFERÊNCIA */
                     foreach ($ref as $vlref) {
                         /*
                          * AQUI SÃO DEFINIDAS AS REGRAS DE EXIBIÇÃO DO PDF, COLUNAS POR IDADE, SEXO OU AMBOS:
                          * 
                          * fgfactor = 1
                          * ATRIBUTO........VALOR        IDADE    REFERÊNCIA
                          * 
                          * fgfactor = 2
                          * ATRIBUTO........VALOR        MASCULINO    FEMININO
                          * 
                          * fgfactor = 3
                          * ATRIBUTO........VALOR        IDADE    MASCULINO    FEMININO
                          * 
                          */
                         $pdf->SetFont('Courier', '', 8);
                         $imgRR = "./images/result/rangerule_img-" . $attr['cdrequestexamination'] . "_" . $rows['cdexamination'] . "_" . $attr['cdattribute'] . "_" . $examination[$aux_i]['cdexaminationmaterial'] . ".png";
                         /* DEFINE QUAL CAMPO DA TABELA ESTÁ PREENCHIDO (VALOR OU NUMÉRICO) E ALOCA À UMA VARIÁVEL */
                         if ($vlref['nrminvalue'] == '' && $vlref['nrmaxvalue'] == '' && $vlref['vlminvalue'] != '' && $vlref['vlmaxvalue'] != '') {
                             $minvalue = $vlref['vlminvalue'];
                             $maxvalue = $vlref['vlmaxvalue'];
                         } else {
                             if ($vlref['nrminvalue'] != '' && $vlref['nrmaxvalue'] != '' && $vlref['vlminvalue'] == '' && $vlref['vlmaxvalue'] == '') {
                                 $minvalue = $vlref['nrminvalue'];
                                 $maxvalue = $vlref['nrmaxvalue'];
                             }
                         }
                         if ($vlref['fgfactor'] == 1) {
                             //SEPARADOS PELA IDADE, DEFINE UMA COLUNA DE RESULTADOS
                             if ($vlref['nrminage'] <= $ano[0] && $vlref['nrmaxage'] >= $ano[0]) {
                                 $pdf->Cell(12, 15, utf8_decode($vlref['nrminage'] . " à " . $vlref['nrmaxage'] . " " . $vlref['nmtimetype']), 0, 0, 'R');
                                 if ($rangeruleCount == 1) {
                                     $pdf->Cell(40, 50, $pdf->Image($imgRR, $pdf->GetX() + 5, $pdf->GetY() + 6, 70), 0, 0, 'L', false);
                                 }
                                 $pdf->Cell(67, 8, utf8_decode($minvalue . " à " . $maxvalue), 0, 0, 'R');
                             }
                         } else {
                             if ($vlref['fgfactor'] == 2) {
                                 //SEPARADOS PELO SEXO, DEFINE DUAS COLUNAS DE RESULTADOS
                                 if ($vlref['fggender'] == 1) {
                                     // MASCULINO
                                     $pdf->Cell(20, 5, utf8_decode($vlref['vlminvalue'] . " à " . $vlref['vlmaxvalue']), 0, 0, 'R');
                                 } else {
                                     if ($vlref['fggender'] == 2) {
                                         // FEMININO
                                         $pdf->Cell(60, 5, utf8_decode($vlref['vlminvalue'] . " à " . $vlref['vlmaxvalue']), 0, 1, 'R');
                                     }
                                 }
                             } else {
                                 if ($vlref['fgfactor'] == 3) {
                                     //SEPARADOS PELO SEXO E IDADE, DEFINE TRÊS COLUNAS DE RESULTADOS
                                     if ($vlref['fggender'] == 1) {
                                         // MASCULINO
                                         $pdf->Cell(12, 5, utf8_decode($vlref['nrminage'] . " à " . $vlref['nrmaxage'] . " " . $vlref['nmtimetype']), 0, 0, 'R');
                                         $pdf->Cell(33, 5, utf8_decode($vlref['vlminvalue'] . " à " . $vlref['vlmaxvalue']), 0, 0, 'R');
                                     } else {
                                         if ($vlref['fggender'] == 2) {
                                             // FEMININO
                                             $pdf->Cell(35, 5, utf8_decode($vlref['vlminvalue'] . " à " . $vlref['vlmaxvalue']), 0, 1, 'R');
                                         }
                                     }
                                 }
                             }
                         }
                     }
                 }
                 $pdf->ln();
                 $pdf->ln();
             }
         }
         if (count($comments) > 0) {
             $pdf->SetFont('Courier', 'B', 9);
             $pdf->Cell(5, 2, utf8_decode("Observações: "), 0, 1, 'L');
             $pdf->ln();
             $pdf->SetFont('Courier', '', 7);
             $pdf->Multicell(0, 3, $comentario_text);
             $pdf->ln();
         }
     }
     $pdf->Output();
     //IMPRIME O PDF NA TELA
     $pdf->Output('teste.pdf', "D");
     //IMPRIME O PDF NO ARQUIVO
 }
开发者ID:robertsonmello,项目名称:projetos,代码行数:101,代码来源:AppraisaldeliveryController.php

示例9:

 } else {
     if ($curso2rep == "0") {
         $pdf->Cell(140, 5, 'El alumno repitió el curso: ' . $curso1rep . ' en el año: ' . $anyo1rep, 1, 1, 'C', 0, 0);
     } else {
         $pdf->Cell(140, 5, 'El alumno repitió el curso: ' . $curso1rep . ' en el año: ' . $anyo1rep . ' y el curso: ' . $curso2rep . ' en el año: ' . $anyo2rep, 1, 1, 'C', 0, 0);
     }
 }
 $pdf->SetFont('Arial', 'B', 8);
 $pdf->Cell(40, 5, 'PROMOCIÓN DE 3º A 4º:', 1, 0, 'C', 1);
 $pdf->SetFont('Arial', '', 8);
 if ($neg34areas == "") {
     $suspensos = "El alumno/-a no tiene asignaturas pendientes de cursos anteriores";
 } else {
     $suspensos = "El alumno/-a tiene pendientes asignaturas en cursos anteriores: " . $neg34areas;
 }
 $pdf->Multicell(140, 5, $suspensos, 1, L, 0);
 if ($acneaesino == "si") {
     $totalacneae = "El alumno/-a presenta Necesidades Específicas de Apoyo Educativo";
     $pdf->SetFont('Arial', 'B', 8);
     $pdf->Cell(20, 5, 'ACNEAE', 1, 0, 'C', 1);
     $pdf->SetFont('Arial', '', 8);
     $pdf->Multicell(160, 5, $totalacneae, 1, L, 0);
 } else {
     $totalacneae = "No se han detectado Necesidades Específicas de Apoyo Educativo en el alumno/-a";
     $pdf->SetFont('Arial', 'B', 8);
     $pdf->Cell(20, 5, 'ACNEAE', 1, 0, 'C', 1);
     $pdf->SetFont('Arial', '', 8);
     $pdf->Multicell(160, 5, $totalacneae, 1, L, 0);
 }
 if ($absentismosino == "si") {
     $totalabsentismo = "El alumno/-a ha presentado problemas serios de absentismo: " . $causasabsentismo;
开发者ID:agomezgar,项目名称:ievindividual314,代码行数:31,代码来源:pdfgrupo.php

示例10:

    $pdf->Cell(0, 4, "ATENÇÃO: 1 - O NÚMERO DESTA O.C. DEVE CONSTAR NA NOTA FISCAL", "LTR", 0, 'L');
    $pdf->ln();
    $pdf->Cell(0, 4, "                   2 - OBSERVAR O PRAZO DE ENTREGA RIGOROSAMENTE", "LR", 0, 'L');
    $pdf->ln();
    $pdf->Cell(0, 4, "                   3 - OBSERVAR COM ANTECEDÊNCIA QUALQUER ALTERAÇÃO EM RELACAO A O.C.", "LBR", 0, 'L');
    $pdf->ln();
    $pdf->SetFont('Arial', 'B', 7);
    $pdf->Cell(60, 10, "COMPRADOR:", "1", 0, 'L');
    $pdf->Cell(60, 10, "VISTO SOLICITANTE:", "1", 0, 'L');
    $pdf->Cell(0, 10, "VISTO DIRETORIA:", "1", 0, 'L');
    $pdf->ln();
    $pdf->SetFont('Arial', 'B', 7);
    $pdf->Cell(0, 5, "OBSERVAÇÕES:", "LTR", 0, 'L');
    //Recupera os valores para filtragem
    $OrdemId = $_GET["OrdemId"];
    //Recupera dos dados do evento
    $sql_oc = "SELECT oc.obs FROM ordem_compra oc WHERE oc.id = '{$OrdemId}'";
    //Executa a query de consulta
    $query_oc = mysql_query($sql_oc);
    //Monta a matriz com os dados
    $dados = mysql_fetch_array($query_oc);
    $pdf->ln();
    $pdf->SetFont('Arial', '', 7);
    $pdf->Multicell(0, 3, $dados["obs"], "LBR", 'L');
    //Fecha o If
}
$pdf->ln();
//Gera o PDF
$pdf->Output();
?>
                                                      
开发者ID:workcrm,项目名称:consoli,代码行数:30,代码来源:OrdemCompraRelatorioPDF.php

示例11:

            $pdf->Cell(0, 6, $dados_formando['nome'], "T");
            $pdf->ln();
            $pdf->SetFont('Arial', '', 10);
            $pdf->Cell(0, 5, "CPF: " . $dados_formando['cpf']);
            $pdf->ln();
            $pdf->SetFont('Arial', '', 10);
            $pdf->Cell(0, 5, 'Contato: ' . $dados_formando['contato'] . ' - Residencial: ' . $dados_formando['telefone_residencial'] . ' - Comercial: ' . $dados_formando['telefone_comercial']);
            $pdf->ln();
            $pdf->Cell(0, 5, $dados_formando['email']);
            $pdf->ln();
            $pdf->Cell(0, 5, $dados_formando['endereco'] . " - " . $dados_formando['complemento'] . " - " . $dados_formando['bairro']);
            $pdf->ln();
            $pdf->Cell(0, 5, $dados_formando['cep'] . " - " . $dados_formando['cidade_nome'] . " - " . $dados_formando['uf']);
            if ($dados_formando['observacoes'] != '') {
                $pdf->ln();
                $pdf->Multicell(0, 5, $dados_formando['observacoes']);
            }
            if ($dados_formando['obs_compra'] != '') {
                $pdf->ln();
                $pdf->Multicell(0, 5, $dados_formando['obs_compra']);
            }
            $pendente++;
        }
    }
    //Imprime os dados do formando
    $pdf->ln(10);
    $pdf->SetFont('Arial', '', 10);
    $pdf->Cell(0, 5, "Total de Formandos Pendentes: " . $pendente, "T");
}
$pdf->ln();
//Gera o PDF
开发者ID:workcrm,项目名称:consoli,代码行数:31,代码来源:EventoFotoVideoSemCompraRelatorioPDF.php

示例12: PDF

        //Posición: a 1,5 cm del final
        $this->SetY(-15);
        //Arial italic 8
        $this->SetFont('Arial', 'I', 8);
        //Número de página
        $this->Cell(0, 10, $direccion, 0, 0, 'C');
    }
}
$pdf = new PDF();
$pdf->AddPage();
$pdf->SetFont('Arial', 'B', 14);
$pdf->Image('logoclm.jpg', 10, 10);
$pdf->SetLineWidth(1);
$pdf->Cell(50, 10, '');
$pdf->SetFillColor(150, 150, 150);
$pdf->Multicell(120, 10, $encabezamiento, 1, 'C', 1, 1);
$pdf->Ln(5);
$pdf->SetFont('Arial', 'B', 10);
$pdf->Cell(180, 5, 'A. GRADO DE CONSECUCIÓN DE OBJETIVOS Y COMPETENCIAS BÁSICAS.', 1, 'C', 1, 1);
$pdf->Ln(10);
$pdf->SetFont('Arial', '', 10);
$pdf->Multicell(180, 5, 'En función de las calificaciones recogidas en el boletín de notas que acompaña a este informe se considerará el siguiente baremo:' . "\n" . '·Calificación de SOBRESALIENTE y NOTABLE: ha superado ampliamente los objetivos y competencias básicas según los criterios de evaluación programados.' . "\n" . '·Calificación de BIEN y SUFICIENTE: ha superado suficientemente los objetivos y competencias básicas según los criterios de evaluación programados.' . "\n" . '·Calificación de INSUFICIENTE: no ha superado los objetivos y competencias básicas según los criterios de evaluación programados');
$pdf->Ln(5);
$pdf->SetFont('Arial', 'B', 10);
$pdf->Cell(180, 5, 'B. MEDIDAS DE AMPLIACIÓN Y REFUERZO', 1, 'C', 1, 1);
$pdf->Ln(10);
$pdf->SetFont('Arial', '', 10);
if ($m1 == 1) {
    $pdf->Cell(180, 5, $item1, 0, 1);
}
if ($m2 == 1) {
开发者ID:agomezgar,项目名称:ievindividual314,代码行数:31,代码来源:pdfindividual.php

示例13: while

        $pdf->SetX(40);
        $pdf->Cell(0, 6, "Descrição:");
        $pdf->SetX(116);
        $pdf->Cell(0, 6, "Observações:");
        //Percorre o array
        while ($dados_datas = mysql_fetch_array($sql_datas)) {
            //Imprime os dados dos contatos
            $pdf->ln();
            $pdf->SetFont("Arial", "B", 9);
            $pdf->Cell(6, 4, DataMySQLRetornar($dados_datas["data"]) . " - " . substr($dados_datas["hora"], 0, 5));
            $pdf->SetX(40);
            $pdf->SetFont("Arial", "", 9);
            $pdf->Cell(100, 4, $dados_datas["descricao"]);
            $pdf->SetX(116);
            $pdf->SetFont("Arial", "", 8);
            $pdf->Multicell(0, 3, $dados_datas["observacoes"]);
            //Fecha o while
        }
        //Fecha o If
    }
    $pdf->ln();
    //Fecha o if de imprimir as datas
}
//Verifica se deve imprimir os participantes do evento
if ($ImprimeParticipantes == 1) {
    //*** Exibe os participantes do evento
    $pdf->ln();
    $pdf->SetFont("Arial", "B", 10);
    $pdf->SetFillColor(178, 178, 178);
    $pdf->Cell(0, 6, "Participantes do Evento", 1, 0, "C", 1);
    $pdf->ln();
开发者ID:workcrm,项目名称:consoli,代码行数:31,代码来源:EventoOrcamentoRelatorioPDF.php

示例14: DataMySQLRetornar

        $pdf->Cell(20, 5, DataMySQLRetornar($dados["data_realizacao"]), 1, 0, 'C');
        $pdf->Cell(16, 5, $dados['quantidade'], 1, 0, 'R');
        //Caso deva exibir os valores
        if ($Valores == 1) {
            $pdf->Cell(20, 5, number_format($dados['valor_venda'], 2, ',', '.'), 1, 0, 'R');
            $pdf->Cell(20, 5, number_format($dados['valor_venda'] * $dados['quantidade'], 2, ',', '.'), 1, 0, 'R');
            $edtTotalGeral += $dados['valor_venda'] * $dados['quantidade'];
        }
        $pdf->Cell(0, 5, '[' . $dados['evento_id'] . '] - ' . $dados['evento_nome'], 1);
        $total_quantidade = $total_quantidade + $dados['quantidade'];
        //Caso tenha observações
        if ($dados['observacoes'] != '') {
            $pdf->ln();
            $pdf->SetFont("Arial", "I", 7);
            $pdf->SetX(86);
            $pdf->Multicell(0, 4, $dados['observacoes'], 1);
        } else {
            $pdf->ln();
        }
    }
    //Totalização
    $pdf->ln();
    $pdf->SetFont("Arial", "B", 9);
    $pdf->Cell(20, 5, 'TOTAL:', 1, 0, 'R', 1);
    $pdf->Cell(16, 5, number_format($total_quantidade, 2, '.', ''), 1, 0, 'R', 1);
    //Caso deva exibir os valores
    if ($Valores == 1) {
        $pdf->Cell(20, 5, number_format($edtTotalGeral / $total_quantidade, 2, ',', '.'), 1, 0, 'R', 1);
        $pdf->Cell(20, 5, number_format($edtTotalGeral, 2, ',', '.'), 1, 0, 'R', 1);
    }
} else {
开发者ID:workcrm,项目名称:consoli,代码行数:31,代码来源:EventoRelatorioConsumoProdutoPDF.php

示例15:

 $Line2 = "Tax applied @ 10% ";
 $Line3 = "Total Charges  ";
 $pdf->SetFillColor(240, 100, 100);
 $pdf->SetFont('Times', 'B', 12);
 $pdf->Cell(0, 0.25, "Electricity Bill for the month - " . $EBDate, 1, 2, "C", 1);
 $pdf->SetFillColor(240, 100, 100);
 $pdf->SetFont('Times', 'B', 12);
 $pdf->Cell(0, 0.25, "Customer Details", 1, 2, "C", 1);
 $pdf->SetFont('Times', '', 12);
 $pdf->Cell(0, 0.2, $Accountid, 1, 0, 'L');
 $pdf->Cell(0, 0.2, $accountid, 1, 1, 'R');
 $pdf->Cell(0, 0.2, $Address, 1, 0, 'L');
 $pdf->Cell(0, 0.2, $address, 1, 1, 'R');
 $pdf->Cell(0, 0.2, "Payment Date", 1, 0, 'L');
 $pdf->Cell(0, 0.2, $payment_date, 1, 1, 'R');
 $pdf->Multicell(0, 1, "\n");
 $pdf->SetFillColor(240, 100, 100);
 $pdf->SetFont('Times', 'B', 12);
 $pdf->Cell(0, 0.25, "Charge Details", 1, 0, "L", 1);
 $pdf->Cell(0, 0.25, "Billed Currency:" . $lCustForBillRun['Currency'], 1, 1, "R", 1);
 $pdf->SetFont('Times', '', 12);
 $pdf->Cell(0, 0.2, "Power Consumed", 1, 0, 'L');
 $pdf->Cell(0, 0.2, $quantity . " Units", 1, 1, 'R');
 $pdf->Cell(0, 0.2, $Line1, 1, 0, 'L');
 $pdf->Cell(0, 0.2, $charge, 1, 1, 'R');
 $pdf->Cell(0, 0.2, $Line2, 1, 0, 'L');
 $pdf->Cell(0, 0.2, $tax, 1, 1, 'R');
 $pdf->Cell(0, 0.2, $Line3, 1, 0, 'L');
 $pdf->Cell(0, 0.2, $total, 1, 1, 'R');
 $pdf->Multicell(0, 1, "Please visit https://www.tnebnet.org/awp/login to pay the bills online\n");
 $filename = $_SERVER['DOCUMENT_ROOT'] . '/trilads1/pdf/' . $accountid . "_" . $EBDate . "_" . $brid . ".pdf";
开发者ID:arunammasai,项目名称:OneLastRide,代码行数:31,代码来源:performBillRun1.php


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