Blame view

src/Template/Documents/sortie.ctp 446 Bytes
6bb4a0f7   Alexandre   Version: 2.2.2
1
<?php
63c3cb16   epallier   Nombreux petits b...
2
3
/*
 * Fiche Demande de sortie d'inventaire Tutelle
ea90a25d   Etienne Pallier   Production avec d...
4
 * Impression en pdf (avec fpdf)
6bb4a0f7   Alexandre   Version: 2.2.2
5
 */
ea90a25d   Etienne Pallier   Production avec d...
6

6bb4a0f7   Alexandre   Version: 2.2.2
7
8
9
10
11
12
$this->layout = 'pdf_print';

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

$fpdf->Ln(15);
63c3cb16   epallier   Nombreux petits b...
13
$fpdf->SetFont('Arial', 'B', 18);
08eb8f28   Etienne Pallier   Bugfix de l'ajout...
14
//$fpdf->SetFont('Helvetica','',11);
63c3cb16   epallier   Nombreux petits b...
15
16
17
$texte = "CE DOCUMENT EST EN COURS DE DEVELOPPEMENT";
$fpdf->Cell(190, 10, utf8_decode($texte), 0, 1, 'C');

08eb8f28   Etienne Pallier   Bugfix de l'ajout...
18
19
// http://fpdf.org/en/doc/output.htm
$fpdf->Output('Document de sortie', 'I');