admission.ctp 7.21 KB
<?php
/*
 * Fiche Demande de numero d'inventaire Tutelle (Cnrs ou UPS) du materiel
 * Impression en pdf (avec fpdf)
 */

$this->layout = 'pdf_print';

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

// Entete doc
// Logo tutelle concernee
if (strtoupper($data['organisme']) == 'CNRS') {
    $imLogo = 'img/CNRS.jpg';
    $fpdf->Image($imLogo, 10, 10, - 400);
} else { // UPS
    $imLogo = "img/logo_ups.png"; // Logo tutelle concernee
    $fpdf->Image($imLogo, 10, 10, - 100);
}

$fpdf->Ln(15);
$fpdf->SetFont('Arial', 'B', 18);
$texte = "Fiche d'inventaire";
$fpdf->Cell(190, 10, $texte, 0, 1, 'C');
$fpdf->SetLineWidth(0.5);
$fpdf->Line(5, 35, 200, 35);
//$texte = "Ce document ne doit être utilisé qu'en cas d'acquisition de matériels durables,";
$texte = "Ce document ne doit etre utilise qu'en cas d'acquisition de materiels durables,";
$fpdf->SetFont('Arial', '', 10);
$fpdf->Cell(190, 10, $texte, 0, '', 'C');
$fpdf->Ln(5);
$texte = "d'une valeur egale ou superieure a 1000E HT";
$fpdf->Cell(190, 10, $texte, 0, '', 'C');

/**
 * Corps du doc
 * informations transmises
 * data[ 0:numero_laboratoire, 1: designation_materiel, 2: date_acq, 3: num_commande, 4: fournisseur,
 * 5 : eotp, 6: prix, 7: numeroOrganisme ]
 * Cellule d'intitule : Font 'Arial, 'U(nderline)', 12
 * long : 50 - haut : 6 - centre a gauche : L - pas de remplissage
 * Cellule de donnees/texte : Font 'Times, 'B(old) ou non', 12
 * long : 70 (ex) - haut : 6 - centre a gauche : L - pas de remplissage
 * Saut de ligne : Ln(10)
 */

// Saut de ligne(s)
$fpdf->Ln(13);
// Definition de la font pour ecrire ('type_font', 'Mise en forme : Underline,Italique, Bold', taille-font)
// Intitule
$fpdf->SetFont('Arial', '', 11);
$texte = "Laboratoire / Unite: ";
// Cell (Largeur de la celulle, hauteur celulle, texte, barre de separation ('LR' 2 cotes),
// alignement (Left, Center, Right), remplissage (True/false))
// Texte d'intitule
$fpdf->Cell(50, 6, $texte, '', 0, 'L', false);
$fpdf->SetFont('Times', 'B', 12);
// $labName = $configuration->labName;
$labName = $configuration->labNameShort;
$labUMR = $configuration->labUmr;
// $labName = "IRAP";
// $labUMR = "UMR5277";
$fpdf->Cell(70, 6, utf8_decode("$labName - $labUMR"), '', 0, 'L', false);
$fpdf->Ln(11);

// Texte d'intitule
$fpdf->SetFont('Arial', '', 11);
$texte = "Designation du bien :";
$fpdf->Cell(50, 6, $texte, '', 0, 'L', false);
// Texte de donnees
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(120, 6, utf8_decode($data['designation']), '', 0, 'L', false);

// Texte d'intitule
$fpdf->Ln(11);
$fpdf->SetFont('Arial', '', 11);
$texte = "Numero inventaire laboratoire :";
$fpdf->Cell(70, 6, $texte, '', 0, 'L', false);
// Texte de donnees
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(50, 6, utf8_decode($data['numOrg']), '', 0, 'L', false);

$fpdf->Ln(11);
$fpdf->SetFont('Arial', '', 11);
$texte = "Accessoire d'un materiel principal* : ";
$fpdf->Cell(70, 6, $texte, '', 0, 'L', false);
$fpdf->Cell(70, 6, " OUI ", '', 0, 'L', false);
$fpdf->Cell(13, 6, "NON", 1, 'L', false);
$fpdf->Ln(7);
$fpdf->SetFont('Arial', '', 10);
$texte = "Si Oui, numero du materiel principal :";
$fpdf->Cell(110, 6, $texte, '', 0, 'L', false);
$texte = "Numero de l'accessoire :";
$fpdf->Cell(70, 6, $texte, '', 0, 'L', false);

$fpdf->Ln(11);
// Texte d'intitule
$fpdf->SetFont('Arial', '', 11);
$texte = "Nom du fournisseur:";
$fpdf->Cell(50, 6, $texte, '', 0, 'L', false);
// Texte de donnees
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($data['fournisseur']), '', 0, 'L', false);

$fpdf->Ln(11);
// Texte d'intitule
$fpdf->SetFont('Arial', '', 11);
$texte = "Prix HT du bien :";
$fpdf->Cell(50, 6, $texte, 0, 0, '');
// Texte de donnes
$fpdf->SetFont('Times', 'B', 12);
$texte = utf8_decode($data['prix'] . ' E');
$fpdf->Cell(50, 6, $texte, '', 0, 'L', false);

$fpdf->Ln(15);
// Texte d'intitule
$fpdf->SetFont('Arial', '', 11);
$texte = "Date de mise en service :";
$fpdf->Cell(60, 6, $texte, '', 0, 'L', false);
// Texte de donnees
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(50, 6, utf8_decode($data['dateAcquis']), '', 0, 'L', false);

$fpdf->Ln(15);
// Texte d'intitule
$fpdf->SetFont('Arial', '', 11);
$texte = "Centre financier :";
$fpdf->Cell(40, 6, $texte, '', 0, 'L', false);
// Texte de donnees
$fpdf->SetFont('Times', 'B', 12);
// $fpdf->Cell(50,6,utf8_decode($data['centreFinanc']),'',0,'L',false);
// Texte d'intitule
$fpdf->SetFont('Arial', '', 11);
$texte = "Element Eotp :";
$fpdf->Cell(35, 6, $texte, '', 0, 'L', false);
// Texte de donnees
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(20, 6, utf8_decode($data['eotp']), '', 0, 'L', false);
/**
 * ***
 */
$fpdf->Ln(12);
$texte = "Materiel finance par une ou plusieurs subventions publiques ou privees d'investissement*: ";
$fpdf->SetFont('Arial', '', 11);
$fpdf->Cell(80, 6, $texte, '', 0, 'L', false);
$fpdf->Ln(10);
$fpdf->Cell(70, 6, " OUI", '', 0, 'L', false);
$fpdf->Ln(5);
$fpdf->Cell(80, 6, "  ", '', 0, 'L', false);
$fpdf->Cell(60, 6, "N de l'arrete", '', 0, 'L', false);
$fpdf->Cell(50, 6, "Montant : ", '', 0, 'L', false);
$fpdf->SetFont('Arial', '', 11);
$fpdf->Ln(8);
$fpdf->Cell(80, 6, "Region : ", '', 0, 'L', false);
$fpdf->Cell(60, 6, "...............", '', 0, 'L', false);
$fpdf->Cell(50, 6, "...............E ", '', 0, 'L', false);
$fpdf->Ln(6);
$fpdf->Cell(80, 6, "Departement: ", '', 0, 'L', false);
$fpdf->Cell(60, 6, "...............", '', 0, 'L', false);
$fpdf->Cell(50, 6, "...............E ", '', 0, 'L', false);
$fpdf->Ln(6);
$fpdf->Cell(80, 6, "Communes ", '', 0, 'L', false);
$fpdf->Ln(5);
$fpdf->Cell(80, 6, " et groupement de communes :  ", '', 0, 'L', false);
$fpdf->Cell(60, 6, "...............", '', 0, 'L', false);
$fpdf->Cell(50, 6, "............... E", '', 0, 'L', false);
$fpdf->Ln(6);
$fpdf->Cell(80, 6, "Autres collectivites et   ", '', 0, 'L', false);
$fpdf->Ln(5);
$fpdf->Cell(80, 6, "etablissements publics francais :  ", '', 0, 'L', false);
$fpdf->Cell(60, 6, "...............", '', 0, 'L', false);
$fpdf->Cell(50, 6, "............... E", '', 0, 'L', false);
$fpdf->Ln(6);
$fpdf->Cell(80, 6, "Union Europeenne :  ", '', 0, 'L', false);
$fpdf->Cell(60, 6, "...............", '', 0, 'L', false);
$fpdf->Cell(50, 6, "............... E", '', 0, 'L', false);
$fpdf->Ln(6);
$fpdf->Cell(80, 6, "Autres organismes publics  ", '', 0, 'L', false);
$fpdf->Ln(5);
$fpdf->Cell(80, 6, "francais ou etrangers :  ", '', 0, 'L', false);
$fpdf->Cell(60, 6, "...............", '', 0, 'L', false);
$fpdf->Cell(50, 6, "...............E ", '', 0, 'L', false);
$fpdf->Ln(6);
$fpdf->Cell(80, 6, "Autres organismes prives  ", '', 0, 'L', false);
$fpdf->Ln(5);
$fpdf->Cell(80, 6, "francais ou etrangers :  ", '', 0, 'L', false);
$fpdf->Cell(60, 6, "...............", '', 0, 'L', false);
$fpdf->Cell(50, 6, "...............E ", '', 0, 'L', false);
$fpdf->Ln(6);
$fpdf->Cell(80, 6, "  ", '', 0, 'L', false);
$fpdf->Ln(7);
$texte = "Nom de l'organisme :";
$fpdf->Cell(50, 6, $texte, '', 0, 'L', false);
$fpdf->Cell(60, 6, "................................", '', 0, 'L', false);
$fpdf->Ln(9);
$fpdf->Cell(13, 6, " NON", 1, 'L', false);
$texte = "(si sur subvention d'Etat, contrat de recherche ou dons et legs).";
$fpdf->SetFont('Arial', '', 10);
$fpdf->Cell(15, 6, $texte, 0, 'L', false);
$fpdf->Ln(10);
$fpdf->SetFont('Arial', '', 8);
$texte = "* Selectionner l'option correspondante";
$fpdf->Cell(15, 6, $texte, 0, 'L', false);

$fpdf->Output();