admission.ctp
7.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?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();