Blame view

src/Template/Documents/sortie.ctp 312 Bytes
6bb4a0f7   Alexandre   Version: 2.2.2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/* Fiche Demande de sortie d'inventaire Tutelle
 * Impression en pdf
 */
$this->layout = 'pdf_print';

// Nouvelle page de document
$fpdf->AddPage();

$fpdf->Ln(15);
$fpdf->SetFont('Arial','B',18);
$texte="CE DOCUMENT EST EN COURS DE DEVELOPPEMENT";
$fpdf->Cell(190,10,$texte,0,1,'C');
 
$fpdf->Output();