$pdf->SetFont('Arial', 'B', 11); $pdf->SetTextColor(0); $pdf->Cell(185, 21, '', 1); $pdf->setX($pdf->GetX() - 185); $pdf->setY($pdf->GetY() + 2); $pdf->FirstTable($table_first); $pdf->setY($pdf->GetY() + 2); } } // Déclaration du pdf $pdf = new PDF(); $pdf->AliasNbPages(); ////////////////////////////////////////////////////////////////////////// // Pause : Tableau d'information à afficher / calcul n°id $id_document = generateIdDoc($typedocument, $company, $order); $table_first = array(array(utf8_decode('n° :'), $id_document, date('d.m.Y', $order->getDate_entry())), array('UST-ID :', $company->getUst_id(), utf8_decode($employee->getSurname() . ' ' . $employee->getName())), array('Your ID :', $company->getId(), '0' . '/{nb}')); setNewPage($pdf, $order, $table_first); /////////////////////////////////////////////////////////////////////////// // Premier Bloc : Info biothys // Nom du client + adresse $pdf->SetFont('Arial', 'U', 6); $pdf->Cell(0, 5, utf8_decode('Biothys GmbH | Gewerbestr. 6 | D-77731 Willstätt'), 0, 1, 'L', false); $pdf->SetFont('Arial', '', 10); $pdf->Cell(0, 5, utf8_decode($company->getName()), 0, 1, 'L', false); $pdf->Cell(0, 5, utf8_decode($billing_address->getLine() . ' ' . $billing_address->getComplement()), 0, 1, 'L', false); $pdf->Cell(0, 5, utf8_decode($billing_address->getZip() . ' ' . $billing_address->getCity() . ' ' . $billing_address->getCountry()), 0, 1, 'L', false); /////////////////////////////////////////////////////////////////////////// //Deuxième Bloc : type de document $pdf->SetFont('Arial', 'B', 20); $pdf->Cell(180, 15, utf8_decode('Order Confirmation'), 0, 1, 'R', false); //////////////////////////////////////////////////////////////////////////