forked from tbelliard/gepi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfb_rouen_pdf.php
executable file
·1040 lines (894 loc) · 39.8 KB
/
fb_rouen_pdf.php
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/* $Id$ */
// Initialisations files
require_once("../lib/initialisations.inc.php");
// Resume session
$resultat_session = $session_gepi->security_check();
if ($resultat_session == 'c') {
header("Location: ../utilisateurs/mon_compte.php?change_mdp=yes");
die();
} else if ($resultat_session == '0') {
header("Location: ../logout.php?auto=1");
die();
}
if (!checkAccess()) {
header("Location: ../logout.php?auto=1");
die();
}
$fb_academie=getSettingValue("fb_academie");
$fb_departement=getSettingValue("fb_departement");
$fb_session=getSettingValue("fb_session");
// ****************************************************************************
// MODE DE CALCUL POUR LES MOYENNES DES REGROUPEMENTS DE MATIERES:
// - LV1: on présente pour chaque élève, la moyenne qui correspond à sa LV1: ALL1 s'il fait ALL1,...
// ou
// - LV1: on fait la moyenne de toutes les LV1 (AGL1, ALL1)
// ****************************************************************************
$fb_mode_moyenne=getSettingValue("fb_mode_moyenne");
if(($fb_mode_moyenne!=1)&&($fb_mode_moyenne!=2)) {$fb_mode_moyenne=1;}
$ele_lieu_naissance=getSettingValue("ele_lieu_naissance") ? getSettingValue("ele_lieu_naissance") : "n";
// Choix du type de brevet à imprimer
//$type_brevet=0;
/*
unset($id_classe);
$id_classe=array();
$id_classe[]=3;
$id_classe[]=4;
$id_classe[]=22;
*/
if((!isset($_POST['id_classe']))||(!isset($_POST['type_brevet']))) {
//**************** EN-TETE *****************
$titre_page = "Fiches Brevet<br />Modèle Rouen";
//echo "<div class='noprint'>\n";
require_once("../lib/header.inc.php");
//echo "</div>\n";
//**************** FIN EN-TETE *****************
}
else {
require('../fpdf/fpdf.php');
require_once("../fpdf/class.multicelltag.php");
// Fichier d'extension de fpdf pour le bulletin
require_once("../class_php/gepi_pdf.class.php");
}
$type_brevet = isset($_POST['type_brevet']) ? $_POST['type_brevet'] : (isset($_GET['type_brevet']) ? $_GET['type_brevet'] : NULL);
if(isset($type_brevet)) {
if((!preg_match("/[0-9]/",$type_brevet))||(mb_strlen(preg_replace("/[0-9]/","",$type_brevet))!=0)) {
$type_brevet=NULL;
}
}
// Liste des classes
$id_classe=isset($_POST['id_classe']) ? $_POST['id_classe'] : NULL;
// Avec ou sans appréciations
$avec_app=isset($_POST['avec_app']) ? $_POST['avec_app'] : "n";
// Utiliser ma fonction cell_ajustee() pour faire tenir au mieux (*) les textes longs dans les cases
// ((*) mieux si possible que drawTextBox())
$use_cell_ajustee=isset($_POST['use_cell_ajustee']) ? $_POST['use_cell_ajustee'] : "y";
//===================================================================
// Vérification préalable
$sql="SELECT DISTINCT type_brevet FROM notanet_corresp ORDER BY type_brevet;";
$res=mysqli_query($GLOBALS["mysqli"], $sql);
$nb_type_brevet=mysqli_num_rows($res);
//if(mysql_num_rows($res)==0) {
if($nb_type_brevet==0) {
echo "</p>\n";
echo "</div>\n";
echo "<p>Aucune association matières/type de brevet n'a encore été réalisée.<br />Commencez par <a href='../select_matieres.php'>sélectionner les matières</a></p>\n";
require("../lib/footer.inc.php");
die();
}
//===================================================================
include("lib_brevets.php");
//===================================================================
if(!isset($type_brevet)) {
// Choix du type de brevet
echo "<div class='noprint'>\n";
echo "<p class='bold'><a href='../accueil.php'>Accueil</a> | <a href='index.php'>Accueil Notanet</a>";
echo "</p>\n";
echo "</div>\n";
echo "<ul>\n";
while($lig=mysqli_fetch_object($res)) {
echo "<li><a href='".$_SERVER['PHP_SELF']."?type_brevet=".$lig->type_brevet."'>Générer les fiches brevet pour ".$tab_type_brevet[$lig->type_brevet]."</a></li>\n";
}
echo "</ul>\n";
require("../lib/footer.inc.php");
die();
}
//===================================================================
// Le type_brevet est choisi
$tabmatieres=array();
for($j=$indice_premiere_matiere;$j<=$indice_max_matieres;$j++){
$tabmatieres[$j]=array();
}
$tabmatieres=tabmatieres($type_brevet);
$num_fb_col=$tabmatieres["num_fb_col"];
for($j=$indice_premiere_matiere;$j<=$indice_max_matieres;$j++) {
if($tabmatieres[$j][0]!=''){
//$sql="SELECT * FROM notanet_corresp WHERE notanet_mat='".$tabmatieres[$j][0]."' LIMIT 1";
$sql="SELECT * FROM notanet_corresp WHERE notanet_mat='".$tabmatieres[$j][0]."' AND type_brevet='$type_brevet' LIMIT 1";
//echo "<p>$sql</p>";
$res=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res)>0){
$lig=mysqli_fetch_object($res);
$tabmatieres[$j][-4]=$lig->statut;
$tabmatieres[$j][-5]=$lig->matiere;
}
else{
$tabmatieres[$j][-4]="";
$tabmatieres[$j][-5]="";
}
}
}
//===================================================================
if (!isset($id_classe)) {
// Choix de la classe:
echo "<div class='noprint'>\n";
echo "<p class='bold'><a href='../accueil.php'>Accueil</a>";
echo " | <a href='index.php'>Accueil Notanet</a>";
//echo " | <a href='".$_SERVER['PHP_SELF']."?parametrer=y'>Paramètrer</a>";
$sql="SELECT DISTINCT type_brevet FROM notanet_ele_type LIMIT 2;";
$test=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($test)>1) {
echo " | <a href='".$_SERVER['PHP_SELF']."'>Choisir un autre type de brevet</a>";
}
echo "</p>\n";
echo "</div>\n";
//$call_data = mysql_query("SELECT DISTINCT c.* FROM classes c, periodes p, notanet n WHERE p.id_classe = c.id AND c.id=n.id_classe ORDER BY classe");
$call_data = mysqli_query($GLOBALS["mysqli"], "SELECT DISTINCT c.* FROM classes c, periodes p, notanet n,notanet_ele_type net WHERE p.id_classe = c.id AND c.id=n.id_classe AND n.login=net.login ORDER BY classe");
if(!$call_data){
//echo "<p><font color='red'>Attention:</font> Il semble que vous n'ayez pas mené la procédure notanet à son terme.<br />Cette procédure renseigne des tables requises pour générer les fiches brevet.<br />Effectuez la <a href='notanet.php'>procédure notanet</a>.</p>\n";
echo "<p><font color='red'>Attention:</font> Il semble que vous n'ayez pas mené la procédure notanet à son terme.<br />Cette procédure renseigne des tables requises pour générer les fiches brevet.<br />Effectuez la <a href='../index.php'>procédure notanet</a>.</p>\n";
require("../lib/footer.inc.php");
die();
}
$nombre_lignes = mysqli_num_rows($call_data);
echo "<p>Choisissez les classes pour lesquelles vous souhaitez générer les fiches brevet série <b>".$tab_type_brevet[$type_brevet]."</b> :</p>\n";
echo "<form action='".$_SERVER['PHP_SELF']."' name='form_choix_classe' method='post'>\n";
echo "<input type='hidden' name='type_brevet' value='$type_brevet' />\n";
//echo "<input type='hidden' name='choix1' value='export' />\n";
//echo "<input type='hidden' name='type_brevet' value='".$type_brevet."' />\n";
echo "<p>Sélectionnez les classes : </p>\n";
echo "<blockquote>\n";
//$call_data = mysql_query("SELECT DISTINCT c.* FROM classes c, periodes p WHERE p.id_classe = c.id ORDER BY classe");
/*
$call_data = mysql_query("SELECT DISTINCT c.* FROM classes c, periodes p, notanet n WHERE p.id_classe = c.id AND c.id=n.id_classe ORDER BY classe");
$nombre_lignes = mysql_num_rows($call_data);
*/
$size=min(10,$nombre_lignes);
echo "<select name='id_classe[]' multiple='true' size='$size'>\n";
$i = 0;
while ($i < $nombre_lignes){
$classe = old_mysql_result($call_data, $i, "classe");
$ide_classe = old_mysql_result($call_data, $i, "id");
echo "<option value='$ide_classe'>$classe</option>\n";
$i++;
}
echo "</select><br />\n";
echo "<label for='avec_app' style='cursor: pointer;'><input type='checkbox' name='avec_app' id='avec_app' value='y' checked /> Avec les appréciations</label><br />\n";
echo "<label for='use_cell_ajustee' style='cursor: pointer;'><input type='checkbox' name='use_cell_ajustee' id='use_cell_ajustee' value='n' /> Ne pas utiliser la nouvelle fonction use_cell_ajustee() pour l'écriture des appréciations.</label><br />\n";
echo "<input type='submit' name='choix_classe' value='Envoyer' />\n";
echo "</blockquote>\n";
//echo "</p>\n";
echo "</form>\n";
// FIN DU FORMULAIRE DE CHOIX DES CLASSES
require("../lib/footer.inc.php");
die();
}
//===================================================================
// Génération proprement dite des fiches brevet
// BOUCLE SUR LA LISTE DES CLASSES
for($i=0;$i<count($id_classe);$i++) {
// Calcul des moyennes de classes... pb avec le statut...
$moy_classe=array();
for($j=$indice_premiere_matiere;$j<=$indice_max_matieres;$j++) {
if($tabmatieres[$j][0]!='') {
//$somme=0;
// Dans la table 'notanet', matiere='PREMIERE LANGUE VIVANTE'
// et mat='AGL1'
// ou mat='ALL1'
// ... avec une seule ligne/enregistrement par élève pour la matière (aucun élève ne suit à la fois ALL1 et AGL1)
// Dans la table 'notanet_corresp', notanet_mat='PREMIERE LANGUE VIVANTE'
// et matiere='AGL1'
// ou matiere='ALL1'
// ... avec plusieurs lignes/enregistrements pour une même notanet_mat
//$sql="SELECT ROUND(AVG(note),1) moyenne FROM notanet WHERE note!='DI' AND note!='AB' AND note!='NN' AND id_classe='$id_classe[$i]' AND matiere='".$tabmatieres[$j][0]."'";
$sql="SELECT ROUND(AVG(note),1) moyenne FROM notanet WHERE note!='DI' AND note!='AB' AND note!='NN' AND id_classe='$id_classe[$i]' AND notanet_mat='".$tabmatieres[$j][0]."'";
//$sql="SELECT ROUND(AVG(note),1) moyenne FROM notanet n,notanet_ele_type net WHERE n.note!='DI' AND n.note!='AB' AND n.note!='NN' AND n.id_classe='$id_classe[$i]' AND n.matiere='".$tabmatieres[$j][0]."' AND n.login=net.login AND net.type_brevet='$type_brevet';";
//echo "$sql<br />";
$res_moy=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res_moy)>0) {
$lig_moy=mysqli_fetch_object($res_moy);
$moy_classe[$j]=$lig_moy->moyenne;
//echo "\$moy_classe[$j]=$moy_classe[$j]<br />";
// Là on fait la moyenne de l'ALL1 et de l'AGL1 ensemble car one ne fait pas la différence:
// $tabmatieres[$j][0]='PREMIERE LANGUE VIVANTE'
}
else {
$moy_classe[$j]="";
}
}
}
}
define('TopMargin','5');
define('RightMargin','2');
define('LeftMargin','2');
define('BottomMargin','5');
define('LargeurPage','210');
define('HauteurPage','297');
session_cache_limiter('private');
$RneEtablissement=getSettingValue("gepiSchoolRne") ? getSettingValue("gepiSchoolRne") : "";
$gepiSchoolName=getSettingValue("gepiSchoolName") ? getSettingValue("gepiSchoolName") : "gepiSchoolName";
$gepiSchoolAdress1=getSettingValue("gepiSchoolAdress1") ? getSettingValue("gepiSchoolAdress1") : "";
$gepiSchoolAdress2=getSettingValue("gepiSchoolAdress2") ? getSettingValue("gepiSchoolAdress2") : "";
$gepiSchoolZipCode=getSettingValue("gepiSchoolZipCode") ? getSettingValue("gepiSchoolZipCode") : "";
$gepiSchoolCity=getSettingValue("gepiSchoolCity") ? getSettingValue("gepiSchoolCity") : "";
$gepiSchoolPays=getSettingValue("gepiSchoolPays") ? getSettingValue("gepiSchoolPays") : "";
$adresse_etab=$gepiSchoolAdress1.", ".$gepiSchoolAdress2.", ".$gepiSchoolZipCode." ".$gepiSchoolCity;
$gepiYear=getSettingValue("gepiYear") ? getSettingValue("gepiYear") : ((strftime("%m")>7) ? ((strftime("%Y")-1)."-".strftime("%Y")) : (strftime("%Y")."-".strftime("%Y")+1));
$logo_etab=getSettingValue("logo_etab") ? getSettingValue("logo_etab") : "";
$X1 = 0; $Y1 = 0; $X2 = 0; $Y2 = 0;
$X3 = 0; $Y3 = 0; $X4 = 0; $Y4 = 0;
$X5 = 0; $Y5 = 0; $X6 = 0; $Y6 = 0;
//variables invariables
$annee_scolaire = $gepiYear;
$date_fb = date("d/m/Y H:i");
$date_fichier = date("Ymd_Hi");
$pdf=new bul_PDF('p', 'mm', 'A4');
$pdf->SetCreator($gepiSchoolName);
$pdf->SetAuthor($gepiSchoolName);
$pdf->SetKeywords('');
$pdf->SetSubject('Bulletin');
$pdf->SetTitle('Bulletin');
$pdf->SetDisplayMode('fullwidth', 'single');
$pdf->SetCompression(TRUE);
$pdf->SetAutoPageBreak(TRUE, 5);
// gestion des styles
$pdf->SetStyle2("b","DejaVu","B",8,"0,0,0");
$pdf->SetStyle2("i","DejaVu","I",8,"0,0,0");
$pdf->SetStyle2("u","DejaVu","U",8,"0,0,0");
$taille=10;
$pdf->SetStyle2("bppc","DejaVu","B",$taille,"0,0,0");
$pdf->SetStyle2("ippc","DejaVu","I",$taille,"0,0,0");
/*
$pdf->AddPage(); //ajout d'une page au document
$pdf->SetFont('DejaVu');
$pdf->SetXY(10,20);
$pdf->SetFontSize(100);
$pdf->Cell(90,25, "ACADEMIE DE Rouen",'',2,'');
$pdf->SetXY(10,17);
$pdf->Cell(90,26, "",'LRBT',2,'');
// 100 points pour 26 mm
*/
// Utiliser ma fonction cell_ajustee() pour faire tenir au mieux (*) les textes longs dans les cases
// ((*) mieux si possible que drawTextBox())
//$use_cell_ajustee="y";
// Taille des textes
$fs_titre=14;
$fs_titre_mm=fs_pt2mm($fs_titre);
//$fs_txt=12;
$fs_txt=10;
$fs_txt_mm=fs_pt2mm($fs_txt);
// Ratio de l'interligne par rapport à la taille de police
$r_interligne=0.3;
$sc_interligne=1+$r_interligne;
$larg_acad=90;
$larg_session=40;
$marge=10;
// Ordonnée bloc "Fiche scolaire..."
$y_fsb=20;
// Ordonnée bloc "Nom, prénom,..."
$y_nom_ele=45;
$larg_col_nom=20;
$larg_col_val_nom=210/2-$marge-$larg_col_nom;
$larg_col_prenom=30;
$larg_col_val_prenom=210/2-$marge-$larg_col_prenom;
$x_col_prenom=$marge+$larg_col_nom+$larg_col_val_nom;
// Bloc nom/adresse etab
$larg_col_etab=55;
$larg_col_val_etab=210-2*$marge-$larg_col_etab;
// Bloc disciplines
$larg_col_disc=50;
$x_col_note_mc=$marge+$larg_col_disc;
$larg_col_note=20;
$x_col_note_me=$marge+$larg_col_disc+$larg_col_note;
$larg_col_classe_3eme_college=210-$x_col_note_mc-2*$larg_col_note-$marge;
$x_col_app=$x_col_note_me+$larg_col_note;
$larg_col_app=$larg_col_classe_3eme_college-2*$larg_col_note;
$x_col_note_glob=$x_col_app+$larg_col_app;
// Hauteur cadre du bas (avis du chef d'établissement,...)
$h_cadre_bas=40;
$h_notes_bas_de_page=10;
$y_cadre_bas=297-$marge-$h_cadre_bas-$h_notes_bas_de_page;
$y_notes_bas_de_page=297-$marge-$h_notes_bas_de_page;
$bord_debug='';
//$bord_debug='LRBT';
for($i=0;$i<count($id_classe);$i++) {
$sql="SELECT DISTINCT e.* FROM eleves e,
notanet n,
notanet_ele_type net
WHERE n.id_classe='$id_classe[$i]' AND
n.login=e.login AND
net.login=n.login AND
net.type_brevet='$type_brevet'
ORDER BY e.login;";
$res1=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res1)>0) {
// Boucle sur la liste des élèves
while($lig1=mysqli_fetch_object($res1)) {
$pdf->AddPage(); //ajout d'une page au document
//================================================
// ENTETE DE PAGE
//$pdf->SetFont('DejaVu');
$pdf->SetFont('DejaVu','B',$fs_txt);
$pdf->SetXY($marge,$marge);
//$pdf->SetFontSize($fs_txt);
//$pdf->Cell($larg_acad,fs_pt2mm($pdf->FontSize)*$sc_interligne, "ACADÉMIE DE ".strtoupper($fb_academie),0,1,'');
$pdf->Cell($larg_acad,fs_pt2mm($pdf->FontSize)*$sc_interligne, "ACADÉMIE DE ".casse_mot($fb_academie),0,1,'');
//$pdf->SetXY($marge,15);
$pdf->SetXY($marge,$pdf->GetY()+$pdf->FontSize*$r_interligne);
//$pdf->Cell($larg_acad,fs_pt2mm($pdf->FontSize)*$sc_interligne, "Département: $fb_departement ".$pdf->GetY(),0,2,'');
$pdf->Cell($larg_acad,$pdf->FontSize*$sc_interligne, "Département: $fb_departement",0,2,'');
// Cadre avec alignement à droite
$pdf->SetXY(210-$marge-$larg_session,$marge);
$pdf->Cell($larg_session,$pdf->FontSize*$sc_interligne, "Session: $fb_session",'',1,'R');
// LRBT: Left Right Bottom Top
$pdf->SetFont('DejaVu','B',$fs_titre);
$pdf->SetXY($marge,$y_fsb);
$pdf->Cell(210-2*$marge,10, "FICHE SCOLAIRE DU BREVET",$bord_debug,1,'C');
//$pdf->SetXY($marge,$pdf->GetY()+$pdf->FontSize*$sc_interligne);
//$pdf->SetXY($marge,$pdf->GetY());
$pdf->Cell(210-2*$marge,10, "Série ".$tab_type_brevet[$type_brevet],$bord_debug,1,'C');
//================================================
// TABLEAU DES INFOS ELEVE
$pdf->SetFont('DejaVu','B',$fs_txt);
$pdf->SetXY($marge,$y_nom_ele);
$pdf->Cell($larg_col_nom,$pdf->FontSize*$sc_interligne, "Nom:",$bord_debug,0,'');
//$pdf->SetXY(30,45);
//$pdf->Cell(75,10, "DUGENOUX",$bord_debug,2,'');
$pdf->SetFont('DejaVu','',$fs_txt);
$pdf->Cell($larg_col_val_nom,$pdf->FontSize*$sc_interligne, $lig1->nom,$bord_debug,1,'');
//$pdf->SetXY($marge,55);
//$pdf->Cell(20,10, "Né(e) le:",$bord_debug,2,'');
$pdf->SetFont('DejaVu','B',$fs_txt);
if($lig1->sexe=='F') {
$pdf->Cell($larg_col_nom,$pdf->FontSize*$sc_interligne, "Née le:",$bord_debug,0,'');
}
else {
$pdf->Cell($larg_col_nom,$pdf->FontSize*$sc_interligne, "Né le:",$bord_debug,0,'');
}
//$pdf->SetXY(30,55);
//$pdf->Cell(75,10, "09/09/1990",$bord_debug,2,'');
$pdf->SetFont('DejaVu','',$fs_txt);
$pdf->Cell($larg_col_val_nom,$pdf->FontSize*$sc_interligne, formate_date($lig1->naissance),$bord_debug,2,'');
$pdf->SetFont('DejaVu','B',$fs_txt);
$pdf->SetXY($x_col_prenom,$y_nom_ele);
$pdf->Cell($larg_col_prenom,$pdf->FontSize*$sc_interligne, "Prénom(s):",$bord_debug,0,'');
//$pdf->SetXY(135,45);
//$pdf->Cell(75,10, "Edgar, Simon, Bidule",$bord_debug,2,'');
$pdf->SetFont('DejaVu','',$fs_txt);
$pdf->Cell($larg_col_val_prenom,$pdf->FontSize*$sc_interligne, $lig1->prenom,$bord_debug,1,'');
//$pdf->SetXY($x_col_prenom,$y_nom_ele+$pdf->FontSize*$sc_interligne);
$pdf->SetFont('DejaVu','B',$fs_txt);
$pdf->SetXY($x_col_prenom,$pdf->GetY());
$pdf->Cell($larg_col_prenom,$pdf->FontSize*$sc_interligne, "à:",$bord_debug,0,'');
//$pdf->SetXY(135,55);
//$pdf->Cell(75,10, "Lisieux (14)",$bord_debug,2,'');
$pdf->SetFont('DejaVu','',$fs_txt);
if($ele_lieu_naissance=='y') {
$pdf->Cell($larg_col_val_prenom,$pdf->FontSize*$sc_interligne, get_commune($lig1->lieu_naissance, 2),$bord_debug,1,'');
}
else {
$pdf->Cell($larg_col_val_prenom,$pdf->FontSize*$sc_interligne, '',$bord_debug,1,'');
}
//================================================
// TABLEAU ADRESSE ETAB
//$pdf->SetXY($marge,65);
$pdf->SetFont('DejaVu','B',$fs_txt);
$y_etab=$pdf->GetY();
//$pdf->Cell($larg_col_etab,2*$pdf->FontSize*$sc_interligne, "",'LBT',1,'');
$pdf->SetXY($marge,$y_etab);
$pdf->Cell($larg_col_etab,$pdf->FontSize*$sc_interligne, "Établissement fréquenté:",'',0,'');
$x=$pdf->GetX();
//$pdf->SetXY($x,65);
//$pdf->SetFont('DejaVu','',$fs_txt);
$font_size=adjust_size_font($gepiSchoolName,$larg_col_val_etab,$fs_txt,0.1);
$pdf->SetFont('DejaVu','',$font_size);
//$pdf->Cell($larg_col_val_etab,$pdf->FontSize*$sc_interligne, $gepiSchoolName,'RT',1,'');
$pdf->Cell($larg_col_val_etab,$pdf->FontSize*$sc_interligne, $gepiSchoolName,'',1,'');
$y=$pdf->GetY();
$pdf->SetXY($x,$y);
// A MODIFIER: Si l'adresse est très longue, cela peut déborder...
$font_size=adjust_size_font($adresse_etab,$larg_col_val_etab,$fs_txt,0.1);
$pdf->SetFont('DejaVu','',$font_size);
//$pdf->Cell($larg_col_val_etab,$pdf->FontSize*$sc_interligne, $adresse_etab,'RB',1,'');
$pdf->Cell($larg_col_val_etab,$pdf->FontSize*$sc_interligne, $adresse_etab,'',1,'');
$y=$pdf->GetY();
$pdf->SetXY($marge,$y_etab);
$pdf->Cell($larg_col_etab,$y-$y_etab, "",'LBT',0,'');
$pdf->Cell($larg_col_val_etab,$y-$y_etab, "",'RBT',1,'');
//================================================
// TABLEAU DES DISCIPLINES
// LIGNES DE TITRE DU TABLEAU DES DISCIPLINES
$pdf->SetFont('DejaVu','B',$fs_txt);
//$pdf->SetXY($marge,80);
$x=$pdf->GetX();
$y_disc=$pdf->GetY();
$y_lignes_disc=$y_disc+20;
// On trace le cadre d'entête du tableau
$pdf->Cell(210-2*$marge,20, "",'LRBT',0,'C');
$pdf->SetXY($x,$y_disc);
$pdf->Cell($larg_col_disc,20, "DISCIPLINES",'LRBT',0,'C');
//$pdf->SetXY(60,80);
$pdf->Cell($larg_col_classe_3eme_college,5, "Classe de 3ème de collège",'LRBT',1,'C');
$y=$pdf->GetY();
$pdf->SetXY($x_col_note_mc,$y);
$pdf->Cell($larg_col_note,20-5, "",'LRBT',0,'C');
$pdf->SetXY($x_col_note_mc,$y);
$pdf->SetFontSize(9);
//$pdf->drawTextBox('Note moyenne de la classe', $larg_col_note, 11, 'C', 'M', 1);
$pdf->drawTextBox('Note moyenne de la classe', $larg_col_note, 11, 'C', 'M', 0);
$pdf->SetXY($x_col_note_mc,$pdf->GetY());
//$pdf->drawTextBox('0 à 20', $larg_col_note, 4, 'C', 'M', 1);
$pdf->drawTextBox('0 à 20', $larg_col_note, 4, 'C', 'M', 0);
$pdf->SetXY($x_col_note_me,$y);
$pdf->Cell($larg_col_note,20-5, "",'LRBT',0,'C');
$pdf->SetXY($x_col_note_me,$y);
$pdf->drawTextBox("Note moyenne de l'élève", $larg_col_note, 11, 'C', 'M', 0);
$pdf->SetXY($x_col_note_me,$pdf->GetY());
$pdf->drawTextBox('0 à 20', $larg_col_note, 4, 'C', 'M', 0);
//$pdf->SetFontSize($fs_txt);
$texte="Appréciations des professeurs";
$font_size=adjust_size_font($texte,$larg_col_app,$fs_txt,0.3);
$pdf->SetFontSize($font_size);
$pdf->SetXY($x_col_app,$y_disc+5);
$pdf->Cell($larg_col_app,15, $texte,'LRBT',2,'C');
$pdf->SetFontSize(10);
$pdf->SetXY($x_col_note_glob,$y_disc);
$pdf->drawTextBox('Note Globale affectée du coefficient', 2*$larg_col_note, 10, 'C', 'M', 1);
$pdf->SetXY($x_col_note_glob,$pdf->GetY()+2);
$pdf->Cell(2*$larg_col_note,5, "3ème à option",'',1,'C');
//$pdf->SetXY($x_col_note_glob,$pdf->GetY());
$pdf->SetXY($x_col_note_glob,$y_disc+20-5);
$pdf->Cell($larg_col_note,5, "LV2",'LRBT',0,'C');
//$pdf->SetXY($x_col_note_glob+$larg_col_note,95);
//$pdf->SetXY($x_col_note_glob+$larg_col_note,95);
$pdf->SetXY($x_col_note_glob+$larg_col_note,$y_disc+20-5);
$pdf->Cell($larg_col_note,5, "DP6h",'LRBT',1,'C');
//====================================================
// LIGNES DE MATIERES DU TABLEAU DES DISCIPLINES
//====================================================
// Calcul du nombre de matières à faire apparaitre:
//$y=100;
$nb_mat=0;
$nb_mat_notnonca=0;
for($j=$indice_premiere_matiere;$j<=$indice_max_matieres;$j++) {
//if($tabmatieres[$j][0]!='') {
if(($tabmatieres[$j][0]!='')&&($tabmatieres[$j][-4]!='non dispensee dans l etablissement')) {
// On n'a pas de LVR sur Rouen
if($j!=130) {
$nb_mat++;
if($tabmatieres[$j][-1]=='NOTNONCA') {
$nb_mat_notnonca++;
}
}
}
}
//====================================================
$y=$y_lignes_disc;
//$h_ligne_a_titre_indicatif=10;
$h_ligne_a_titre_indicatif=fs_pt2mm($fs_txt)*$sc_interligne;
// Hauteur pour chaque matière:
//$hauteur_toutes_matieres=$y_cadre_bas-$marge-$y; // 10 pour la ligne 'A titre indicatif'
$hauteur_toutes_matieres=$y_cadre_bas-$h_ligne_a_titre_indicatif-$y; // 10 pour la ligne 'A titre indicatif'
$h_par_matiere=$hauteur_toutes_matieres/$nb_mat;
// Boucle sur les matières
$TOTAL=0;
$SUR_TOTAL=array();
$SUR_TOTAL[1]=0;
$SUR_TOTAL[2]=0;
// Les notes con calculées (à titre indicatif) sont en bas de tableau
$temoin_notnonca=0;
$cpt=0;
for($j=$indice_premiere_matiere;$j<=$indice_max_matieres;$j++) {
$temoin_note_non_numerique="n";
//$hauteur_texte=$fs_txt;
$pdf->SetFontSize($fs_txt);
if($tabmatieres[$j][0]!='') {
if($tabmatieres[$j][-4]!='non dispensee dans l etablissement') {
//$pdf->SetXY($marge,100+($j-101)*$h_par_matiere);
$y=$y_lignes_disc+$cpt*$h_par_matiere;
$pdf->SetXY($marge,$y);
// On n'a pas de LVR sur Rouen
if($j!=130) {
if(($temoin_notnonca==0)&&($tabmatieres[$j][-1]=='NOTNONCA')) {
// Insertion de la ligne 'A titre indicatif'
$pdf->SetFont('DejaVu','B',$fs_txt);
$pdf->Cell(210-2*$marge-2*$larg_col_note,$h_ligne_a_titre_indicatif, 'A titre indicatif','LRBT',2,'C');
// Colonne LV2
$pdf->SetXY($x_col_note_glob,$y);
$texte='TOTAL DES POINTS';
$font_size=adjust_size_font($texte,$larg_col_note,$fs_txt,0.3);
$pdf->SetFontSize($font_size);
$pdf->Cell($larg_col_note,$h_ligne_a_titre_indicatif, $texte,'LRBT',2,'C');
// Colonne DP6h
$pdf->SetXY($x_col_note_glob+$larg_col_note,$y);
$pdf->Cell($larg_col_note,$h_ligne_a_titre_indicatif, $texte,'LRBT',2,'C');
//$temoin_notnonca++;
}
//$hauteur_texte=12;
$pdf->SetFontSize($fs_txt);
if($tabmatieres[$j][-1]=='NOTNONCA') {
// Correctif pour le décalage dû à la ligne 'A titre indicatif'
$y+=$h_ligne_a_titre_indicatif;
$temoin_notnonca++;
}
$pdf->SetXY($marge,$y);
$pdf->SetFont('DejaVu','B',$fs_txt);
// Colonne Disciplines
$texte=ucfirst(accent_min(mb_strtolower($tabmatieres[$j][0])));
//if($tabmatieres[$j][0]=="OPTION FACULTATIVE (1)"){
if($tabmatieres[$j][0]=="OPTION FACULTATIVE"){
// recherche de la matière facultative pour l'élève
$sql_mat_fac="SELECT matiere FROM notanet WHERE login='$lig1->login' AND id_classe='$id_classe[$i]' AND notanet_mat='".$tabmatieres[$j][0]."'";
$res_mat_fac=mysqli_query($GLOBALS["mysqli"], $sql_mat_fac);
if(mysqli_num_rows($res_mat_fac)>0){
$lig_mat_fac=mysqli_fetch_object($res_mat_fac);
$texte.=": ".$lig_mat_fac->matiere;
}
$texte.=" (1)";
}
elseif($tabmatieres[$j]['socle']=='y') {$texte.=" (2)";}
$font_size=adjust_size_font($texte,$larg_col_disc,$fs_txt,0.3);
$pdf->SetFontSize($font_size);
$pdf->Cell($larg_col_disc,$h_par_matiere, $texte,'LRBT',2,'L');
// A REVOIR: Si la taille de police descend en dessous d'une valeur à choisir, mettre sur deux lignes
$pdf->SetFont('DejaVu','',$fs_txt);
//$pdf->SetFontSize($fs_txt);
$x=$x_col_note_mc;
$largeur_colonnes_moy=0;
if($tabmatieres[$j]['socle']!='y') {
// Moyenne classe
$pdf->SetXY($x,$y);
//$tmp="-";
//if($tabmatieres[$j]['socle']!='y') {$tmp=strtr($moy_classe[$j],".",",");}
$tmp="-";
if($fb_mode_moyenne==1) {
$tmp=strtr($moy_classe[$j],".",",");
}
else {
$sql="SELECT matiere FROM notanet WHERE login='$lig1->login' AND id_classe='$id_classe[$i]' AND notanet_mat='".$tabmatieres[$j][0]."'";
$res_mat=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res_mat)>0){
$lig_mat=mysqli_fetch_object($res_mat);
$sql="SELECT ROUND(AVG(note),1) moyenne_mat FROM notanet WHERE id_classe='$id_classe[$i]' AND matiere='".$lig_mat->matiere."' AND note!='AB' AND note!='DI' AND note!='NN';";
//echo "$sql<br />";
$res_moy=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res_moy)>0){
$lig_moy=mysqli_fetch_object($res_moy);
$tmp=strtr($lig_moy->moyenne_mat,".",",");
}
}
}
$pdf->Cell($larg_col_note,$h_par_matiere, $tmp,'LRBT',2,'C');
$x+=$larg_col_note;
$largeur_colonnes_moy+=$larg_col_note;
// Moyenne élève
$pdf->SetXY($x,$y);
$tmp="";
$sql="SELECT note FROM notanet WHERE login='$lig1->login' AND id_classe='$id_classe[$i]' AND notanet_mat='".$tabmatieres[$j][0]."'";
$res_note=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res_note)>0){
$lig_note=mysqli_fetch_object($res_note);
$tmp=strtr($lig_note->note,".",",");
}
$pdf->Cell($larg_col_note,$h_par_matiere, $tmp,'LRBT',2,'C');
//$pdf->Cell($larg_col_note,$h_par_matiere, $tmp." ".$y,'LRBT',2,'C');
$x+=$larg_col_note;
$largeur_colonnes_moy+=$larg_col_note;
}
// Appréciation
$pdf->SetXY($x,$y);
$texte="";
if($avec_app=="y") {
$sql="SELECT appreciation FROM notanet_app na,
notanet_corresp nc
WHERE na.login='$lig1->login' AND
nc.notanet_mat='".$tabmatieres[$j][0]."' AND
nc.matiere=na.matiere;";
//echo "$sql<br />";
$res_app=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res_app)>0){
$lig_app=mysqli_fetch_object($res_app);
$texte=trim($lig_app->appreciation);
}
}
if($tabmatieres[$j]['socle']!='y') {
//$largeur_dispo=100-$largeur_colonnes_moy;
$largeur_dispo=$larg_col_app;
}
else {
$largeur_dispo=$larg_col_app+2*$larg_col_note;
}
$h_cell=$h_par_matiere;
// Par précaution, si ma fonction cell_ajustee() posait pb:
if($use_cell_ajustee=="n") {
$font_size=adjust_size_font($texte,100-$largeur_colonnes_moy,$fs_txt,0.1);
$pdf->SetFontSize($font_size);
$pdf->drawTextBox(($texte), $largeur_dispo, $h_cell, 'J', 'M', 1);
}
else {
$taille_max_police=$fs_txt;
$taille_min_police=ceil($fs_txt/3);
cell_ajustee(($texte),$x,$y,$largeur_dispo,$h_cell,$taille_max_police,$taille_min_police,'LRBT');
}
//=========================================================
// Colonnes de droite: Moyennes et totaux Notanet
if($temoin_notnonca==0) {
$t_col1="";
$t_col2="";
if($tabmatieres[$j]['socle']!='y') {
$t_col1=" /".$tabmatieres[$j]['fb_col'][1];
$t_col2=" /".$tabmatieres[$j]['fb_col'][2];
$valeur_tmp="";
// On traite le cas des notes non numériques AB, DI,... plus pour décrémenter les SUR_TOTAUX
if((mb_strlen(preg_replace("/[0-9]/","",$tabmatieres[$j]['fb_col'][1]))==0)&&($tabmatieres[$j][-1]!='PTSUP')&&($tabmatieres[$j]['socle']=='n')){
$SUR_TOTAL[1]+=$tabmatieres[$j]['fb_col'][1];
}
if((mb_strlen(preg_replace("/[0-9]/","",$tabmatieres[$j]['fb_col'][2]))==0)&&($tabmatieres[$j][-1]!='PTSUP')&&($tabmatieres[$j]['socle']=='n')){
$SUR_TOTAL[2]+=$tabmatieres[$j]['fb_col'][2];
}
//$sql="SELECT note FROM notanet WHERE login='$lig1->login' AND id_classe='$id_classe[$i]' AND notanet_mat='".$tabmatieres[$j][0]."';";
$valeur_notanet_tmp="";
$sql="SELECT note,note_notanet FROM notanet WHERE login='$lig1->login' AND id_classe='$id_classe[$i]' AND notanet_mat='".$tabmatieres[$j][0]."';";
//echo "$sql<br />\n";
$res_note=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res_note)){
//echo "1<br />\n";
$lig_note=mysqli_fetch_object($res_note);
if(($lig_note->note!='AB')&&($lig_note->note!='DI')&&($lig_note->note!='NN')&&($tabmatieres[$j]['socle']=='n')){
$valeur_tmp=$lig_note->note*$tabmatieres[$j][-2];
$valeur_notanet_tmp=$lig_note->note_notanet;
// Le cas PTSUP est calculé plus loin
if($tabmatieres[$j][-1]!='PTSUP'){
$TOTAL+=$valeur_tmp;
}
}
else{
$valeur_tmp=$lig_note->note;
$temoin_note_non_numerique="y";
if(($tabmatieres[$j][-1]!='PTSUP')){
if($num_fb_col==1){
$SUR_TOTAL[1]-=$tabmatieres[$j]['fb_col'][1];
}
else{
$SUR_TOTAL[2]-=$tabmatieres[$j]['fb_col'][2];
}
}
}
}
else{
//echo "2<br />\n";
// FAUT-IL UN TEMOIN POUR DECREMENTER LE SUR_TOTAL ?
if($tabmatieres[$j][-1]!='PTSUP'){
if($num_fb_col==1){
$SUR_TOTAL[1]-=$tabmatieres[$j]['fb_col'][1];
}
else{
$SUR_TOTAL[2]-=$tabmatieres[$j]['fb_col'][2];
}
}
}
//echo "\$valeur_tmp=$valeur_tmp<br />\n";
if($num_fb_col==1) {
if($temoin_note_non_numerique=="n") {
if($tabmatieres[$j][-1]!='PTSUP') {
$t_col1=$valeur_tmp."/".$tabmatieres[$j]['fb_col'][1];
}
else {
// Cas points>10
$t_col1=$valeur_notanet_tmp;
$t_col2="";
$TOTAL+=$valeur_notanet_tmp;
}
}
else {
$t_col1=$valeur_tmp;
}
}
elseif($num_fb_col==2) {
if($temoin_note_non_numerique=="n") {
if($tabmatieres[$j][-1]!='PTSUP') {
$t_col2=$valeur_tmp."/".$tabmatieres[$j]['fb_col'][2];
}
else {
// Cas points>10
$t_col2=$valeur_notanet_tmp;
$t_col1="";
$TOTAL+=$valeur_notanet_tmp;
}
}
else {
$t_col2=$valeur_tmp;
}
}
}
else {
//$sql="SELECT note,note_notanet FROM notanet WHERE login='$lig1->login' AND id_classe='$id_classe[$i]' AND notanet_mat='".$tabmatieres[$j][0]."';";
$sql="SELECT * FROM notanet_socles WHERE login='$lig1->login';";
//echo "$sql<br />";
$res_socles=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res_socles)==0) {
$note_b2i="";
$note_a2="";
}
else {
$lig_socle=mysqli_fetch_object($res_socles);
$note_b2i=$lig_socle->b2i;
$note_a2=$lig_socle->a2;
$lv_a2=$lig_socle->lv;
}
if($j==114) {
if($num_fb_col==1) {
$t_col1=$note_b2i;
$t_col2="";
}
elseif($num_fb_col==2) {
$t_col1="";
$t_col2=$note_b2i;
}
}
elseif($j==115) {
if($num_fb_col==1) {
$t_col1=$note_a2;
$t_col2="";
}
elseif($num_fb_col==2) {
$t_col1="";
$t_col2=$note_a2;
}
}
/*
// Mise en commentaire de cette ébauche de modif... on n'a pas de LVR sur Rouen
elseif($j==130) {
$note_lvr="";
$sql="SELECT * FROM notanet_lvr_ele WHERE login='".$tab_ele['login']."';";
$res_lvr=mysql_query($sql);
if(mysql_num_rows($res_lvr)>0) {
$lig_lvr=mysql_fetch_object($res_lvr);
$note_lvr=$lig_lvr->note;
}
if($num_fb_col==1) {
$t_col1=$note_lvr;
$t_col2="";
}
elseif($num_fb_col==2) {
$t_col1="";
$t_col2=$note_lvr;
}
}
*/
}
$pdf->SetFontSize($fs_txt);
if($tabmatieres[$j][-1]!='PTSUP') {
// Colonne LV2
$pdf->SetXY($x_col_note_glob,$y);
$pdf->Cell($larg_col_note,$h_par_matiere, $t_col1,'LRBT',2,'C');
// Colonne DP6h
$pdf->SetXY($x_col_note_glob+$larg_col_note,$y);
$pdf->Cell($larg_col_note,$h_par_matiere, $t_col2,'LRBT',2,'C');
}
else {
// Colonne LV2
$pdf->SetXY($x_col_note_glob,$y);
$pdf->SetFont('DejaVu','B',$fs_txt);
$font_size=adjust_size_font('Points > à 10',18,$fs_txt,0.3);
$pdf->Cell($larg_col_note,$h_par_matiere/2, 'Points > à 10','LRBT',2,'C');
$pdf->SetFont('DejaVu','',$fs_txt);
$pdf->SetXY($x_col_note_glob,$y+($h_par_matiere/2));
$pdf->Cell($larg_col_note,$h_par_matiere/2, $t_col1,'LRBT',2,'C');
// Colonne DP6h
$pdf->SetXY($x_col_note_glob+$larg_col_note,$y);
$pdf->SetFont('DejaVu','B',$fs_txt);
$font_size=adjust_size_font('Points > à 10',18,$fs_txt,0.3);
$pdf->Cell($larg_col_note,$h_par_matiere/2, 'Points > à 10','LRBT',2,'C');
$pdf->SetFont('DejaVu','',$fs_txt);
$pdf->SetXY($x_col_note_glob+$larg_col_note,$y+($h_par_matiere/2));
$pdf->Cell($larg_col_note,$h_par_matiere/2, $t_col2,'LRBT',2,'C');
}
}
elseif($temoin_notnonca==1) {
// LIGNES TOTAUX
$pdf->SetFont('DejaVu','',$fs_txt);
//$pdf->SetFontSize($fs_txt);
if($num_fb_col==1) {
$t_col1=$TOTAL."/".$SUR_TOTAL[1];
$t_col2=" /".$SUR_TOTAL[2];
}
else {
$t_col1=" /".$SUR_TOTAL[1];
$t_col2=$TOTAL."/".$SUR_TOTAL[2];
}
// Colonne LV2
$pdf->SetXY($x_col_note_glob,$y);
$pdf->Cell($larg_col_note,$nb_mat_notnonca*$h_par_matiere, $t_col1,'LRBT',2,'C');
// Colonne DP6h
$pdf->SetXY($x_col_note_glob+$larg_col_note,$y);
$pdf->Cell($larg_col_note,$nb_mat_notnonca*$h_par_matiere, $t_col2,'LRBT',2,'C');
}
$cpt++;
} // On n'a pas de LVR sur Rouen
}
}
}
//$larg_intitule_avis=80;
$larg_intitule_avis=$larg_col_disc+$larg_col_note;
$pdf->SetXY($marge,$y_cadre_bas);
$pdf->Cell(210-2*$marge, $h_cadre_bas, "",'LRBT',2,'C');
$pdf->SetXY($marge,$y_cadre_bas);
$pdf->SetFont('DejaVu','B',$fs_txt);
$texte="Avis et signature du chef d'établissement";
$font_size=adjust_size_font($texte,$larg_intitule_avis,$fs_txt,0.3);
$pdf->SetFontSize($font_size);
$pdf->Cell($larg_intitule_avis, $pdf->FontSize*$sc_interligne, $texte,'',0,'L');
$pdf->SetFont('DejaVu','',$fs_txt);
$x=$pdf->GetX();
$avis="";
$sql="SELECT * FROM notanet_avis WHERE login='$lig1->login';";
$res_avis=mysqli_query($GLOBALS["mysqli"], $sql);
if(mysqli_num_rows($res_avis)>0) {
$lig_avis=mysqli_fetch_object($res_avis);
if($lig_avis->favorable=="O") {$avis="Avis favorable.\n";}
elseif($lig_avis->favorable=="N") {$avis="Avis défavorable.\n";}
$avis.=$lig_avis->avis;
}
//$pdf->Cell(100, $h_cadre_bas, $avis,'',0,'C');
$largeur_dispo=210-2*$marge-$larg_intitule_avis-2*$larg_col_note;
$h_cell=$h_cadre_bas;
if($use_cell_ajustee=='n') {
$pdf->drawTextBox(($avis), $largeur_dispo, $h_cell, 'L', 'T', 0);
}
else {
$taille_max_police=$fs_txt;
$taille_min_police=ceil($fs_txt/3);
cell_ajustee(($avis),$x,$y_cadre_bas,$largeur_dispo,$h_cell,$taille_max_police,$taille_min_police,'','T');
}
// Décision
$pdf->SetXY(210-$marge-2*$larg_col_note,$y_cadre_bas);
$pdf->SetFont('DejaVu','B',$fs_txt);
$pdf->Cell(2*$larg_col_note, $pdf->FontSize*$sc_interligne, "DÉCISION",'LRBT',1,'C');
$pdf->SetFont('DejaVu','',$fs_txt);
//$pdf->SetXY(210-$marge-2*$larg_col_note,$pdf->GetY());
$pdf->SetXY(210-$marge-2*$larg_col_note,$y_cadre_bas+$pdf->FontSize*$sc_interligne);
$pdf->Cell($larg_col_note, $h_cadre_bas-$pdf->FontSize*$sc_interligne, "",'LRBT',0,'C');