-
Notifications
You must be signed in to change notification settings - Fork 0
/
IRAPPORT.PAS
2132 lines (2046 loc) · 79.2 KB
/
IRAPPORT.PAS
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
(*************************************************************************)
(* *)
(* Inventaire Rapport *)
(* 1992/05/14 *)
(* *)
(* Programmeur : Sylvain Maltais *)
(* *)
(*************************************************************************)
Unit IRapport;
(*************************************************************************)
Interface
(*************************************************************************)
Uses Drivers,
EcrMono,
Fichier,
BIOS_PRN,
IChaine,
IClavier,
IVisuel,
IEnreg,
IDescr,
IDerr,
IMotor,
IPceMot;
{ Procedure }
Procedure Rapport(Menu:Byte);
Procedure RapportComplet;
{ Fonction }
Function MessageRapport:Byte;
(*************************************************************************)
Implementation
(*************************************************************************)
{$I TSTPRN.INV } { Teste imprimante }
Procedure MessageErreur(P:String);
Label 10;
Var K : Word;
Ligne : Byte;
I : Byte;
Chaine1 : String[40];
Chaine2 : String[40];
Begin
FillChar(Chaine1,SizeOf(Chaine1),0);
FillChar(Chaine2,SizeOf(Chaine2),0);
If(Length(P) > 38)Then
Begin
For I := 38 downto 1 do
Begin
If(P[I] = ' ')Then
Begin
Chaine1 := Copy(P,1,I-1);
Chaine2 := Copy(P,I+1,255);
Goto 10;
End;
End;
End
else
Chaine1 := P;
10:If(Chaine2 <> '')Then Ligne := 17
Else Ligne := 18;
FixeFormatDouble;
FixeCadrePlain(20,10,60,Ligne,CoulErr);
Ecrit(22,12,Chaine1,CoulErr);
If(Chaine2 <> '')Then Ecrit(22,13,Chaine2,CoulErr);
Ecrit(36,Ligne-2,' Correcte ',CoulSlc);
EffaceLigne(24,32,CoulBar);
EcritSpecial(2,24,#3+Chr(CoulTch)+'ENTER'+#3+Chr(CoulBar)+' Retourner'+#18+
' ESC'+#18+' Retourner');
Write(^G);
Repeat
K := LitClavier;
Until (K = kbEnter)or(K = kbESC);
End;
(*************************************************************************)
(* *)
(* Description þ Cette fonction retourne 0 s'il ne veux plus faire *)
(* imprimer le rapport et avertie egalement de ce qu'il *)
(* l'attend. *)
(* *)
(*************************************************************************)
Function MessageRapport:Byte;
Var Tableau : Pointer;
K : Word;
Begin
SauvegardeEcran(Tableau);
FixeFormatSimple;
FixeCadrePlain(2,2,77,20,CoulDcr);
CentreEcriture(4,'Rapport complet',CoulDcr);
Ecrit(5,7,'Avertissement! Le rapport complet est une commande qui imprime',CoulDcr);
Ecrit(4,8,'tout les donnees contenues dans le fichier d''auto. Par',CoulDcr);
Ecrit(4,9,'consequant cela necessite beaucoup de papier et de temps (en',CoulDcr);
Ecrit(4,10,'therme d''heure). Il est a noter egalement que cette commande',CoulDcr);
Ecrit(4,11,'interrompe la communication dans un systeme reseau.',CoulDcr);
Ecrit(4,14,'Etes-vous toujours certain de bien vouloir imprimer ce rapport ?',CoulDcr);
Ecrit(4,16,'Presse <ENTER> pour oui ou n''importe quelle autre touche pour',CoulDcr);
Ecrit(4,17,'annuler cette commande!',CoulDcr);
EffaceLigne(24,32,CoulBar);
EcritSpecial(2,24,#3+Chr(CoulTch)+'ENTER'+#3+Chr(CoulBar)+' Continuer'+#18+
' ESC'+#18+' Retourner');
K := LitClavier;
If(K = kbEnter)Then MessageRapport := 1
Else MessageRapport := 0;
RestituteEcran(Tableau);
End;
(*************************************************************************)
Function StrPrix(Prix:Word;Cent:Byte):String;
Begin
StrPrix := 'Prix : ' + Strg(Prix) + ',' + Strg(Cent) + '$';
End;
(*************************************************************************)
Function StrLocalise(Localise:String):String;
Var I : Byte;
Begin
Localise := Copy(Localise,1,7);
For I := 0 to 7 do
Begin
If(Localise[I] < #32)Then Localise[I] := #32;
End;
StrLocalise := 'Localise : ' + Localise;
End;
(*************************************************************************)
Function StrCode(Code:String):String;
Var I : Byte;
Begin
Code := Copy(Code,1,7);
For I := 0 to 7 do
Begin
If(Code[I] < #32)Then Code[I] := #32;
End;
StrCode := 'Code hollander : ' + Code;
End;
(*************************************************************************)
(* *)
(* Description : þ Cette procedure imprime un rapport complet sur les *)
(* pieces d'automobile contenue dans le fichier *)
(* "INVENT.DAT" et "FILES.DAT". *)
(* *)
(*************************************************************************)
Procedure RapportComplet;
Var Taille : LongInt;
Handle : Integer;
Files : Integer;
I : LongInt;
Enregistrement : EnregistrementType;
Descr : DescrType;
Result : Boolean;
Procedure PrintDevant;
Begin
Begin
With Enregistrement.Devant do
Begin
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Bumper *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Bumper',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[0] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[0],Cent[0]),LPT1);
Result := PrintLN(StrLocalise(Pos[0]),LPT1);
Result := PrintLN(StrCode(Code[0]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Valence *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Valence',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[1] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[1],Cent[1]),LPT1);
Result := PrintLN(StrLocalise(Pos[1]),LPT1);
Result := PrintLn(StrCode(Code[1]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Grille *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Grille',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[2] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[2],Cent[2]),LPT1);
Result := PrintLn(StrLocalise(Pos[2]),LPT1);
Result := PrintLn(StrCode(Code[2]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Header panel *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Header panel',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[3] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[3],Cent[3]),LPT1);
Result := PrintLn(StrLocalise(Pos[3]),LPT1);
Result := PrintLn(StrCode(Code[3]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Headlamp dor *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Headlamp dor',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[4] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[4],Cent[4]),LPT1);
Result := PrintLn(StrLocalise(Pos[4]),LPT1);
Result := PrintLn(StrCode(Code[4]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Headlamp *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Headlamp',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[5] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[5],Cent[5]),LPT1);
Result := PrintLn(StrLocalise(Pos[5]),LPT1);
Result := PrintLn(StrCode(Code[5]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Headlamp motor *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Headlamp motor',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[6] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[6],Cent[6]),LPT1);
Result := PrintLn(StrLocalise(Pos[6]),LPT1);
Result := PrintLn(StrCode(Code[6]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Parklamp *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Parklamp',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[7] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[7],Cent[7]),LPT1);
Result := PrintLn(StrLocalise(Pos[7]),LPT1);
Result := PrintLn(StrCode(Code[7]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Condenseur d'air *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Condenseur d''air',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[8] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[8],Cent[8]),LPT1);
Result := PrintLn(StrLocalise(Pos[8]),LPT1);
Result := PrintLn(StrCode(Code[8]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Radiateur *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Radiateur',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[9] = 1)Then
Begin
Case Radiateur of
0 : Result := PrintLn('Manuel',LPT1);
1 : Result := PrintLn('Automatique',LPT1);
End;
Result := PrintLn(StrPrix(Prix[9],Cent[9]),LPT1);
Result := PrintLn(StrLocalise(Pos[9]),LPT1);
Result := PrintLn(StrCode(Code[9]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Fan radiateur *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Fan radiateur',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[10] = 1)Then
Begin
Case FanRadiateur of
0 : Result := PrintLn('Electronique',LPT1);
1 : Result := PrintLn('Thermo',LPT1);
End;
Result := PrintLn(StrPrix(Prix[10],Cent[10]),LPT1);
Result := PrintLn(StrLocalise(Pos[10]),LPT1);
Result := PrintLn(StrCode(Code[10]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Aile gauche *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Aile gauche',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[11] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[11],Cent[11]),LPT1);
Result := PrintLn(StrLocalise(Pos[11]),LPT1);
Result := PrintLn(StrCode(Code[11]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Aile droite *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Aile droite',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[12] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[12],Cent[12]),LPT1);
Result := PrintLn(StrLocalise(Pos[12]),LPT1);
Result := PrintLn(StrCode(Code[12]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Frame *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Frame',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[13] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[13],Cent[13]),LPT1);
Result := PrintLn(StrLocalise(Pos[13]),LPT1);
Result := PrintLn(StrCode(Code[13]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Frame rail *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Frame rail',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[14] = 1)Then
Begin
Case FrameRail of
0 : Result := PrintLn('Aucun',LPT1);
1 : Result := PrintLn('Droite',LPT1);
2 : Result := PrintLn('Gauche',LPT1);
3 : Result := PrintLn('Deux',LPT1);
End;
Result := PrintLn(StrPrix(Prix[14],Cent[14]),LPT1);
Result := PrintLn(StrLocalise(Pos[14]),LPT1);
Result := PrintLn(StrCode(Code[14]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Devant, Capot *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Devant, Capot',LPT1);
Result := Print(#13+#10,LPT1);
If(Actif[15] = 1)Then
Begin
Result := PrintLn(StrPrix(Prix[15],Cent[15]),LPT1);
Result := PrintLn(StrLocalise(Pos[15]),LPT1);
Result := PrintLn(StrCode(Code[15]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
End;
End;
Result := Print(#13+#10+#13+#10,LPT1);
End;
Begin
If(MessageRapport = 0)Then Exit;
If(TesteImprimante = 27)Then Exit;
EcritDerLigne('Impression de la liste d''inventaire en cours...');
Handle := Ouvre('INVENT.DAT',0);
If(Handle = -1)Then
Begin
MessageErreur('Erreur : Le fichier d''inventaire est introuvable!');
End
else
Begin
Taille := TailleFichier(Handle);
If(Taille = 0)Then
Begin
MessageErreur('Erreur : Le fichier d''inventaire est vide!');
End
else
Begin
Taille := Taille div SizeOf(Enregistrement);
Files := Ouvre('FILES.DAT',0);
If(Handle = -1)Then
Begin
MessageErreur('Erreur : Le fichier de description est introuvable!');
End
else
Begin
If(TailleFichier(Files) <> Taille * SizeOf(Descr))Then
Begin
MessageErreur('Erreur : Le fichier de description est trouqu!');
End
else
Begin
For I := 0 to Taille-1 do
Begin
FillChar(Descr,SizeOf(Descr),0);
LitEnregistrement(Files,I,SizeOf(Descr),Descr);
FillChar(Enregistrement,SizeOf(Enregistrement),0);
LitEnregistrement(Handle,I,SizeOf(Enregistrement),Enregistrement);
If(Descr.NumSerie[1] in ['-','å'])Then { Enregistrement Efface ? }
Begin
End
else
Begin
Result := PrintLn('- - - - - - - - - - - - - - - - - - - - - - - - - - - - -',LPT1);
Result := Print(#13+#10+#13+#10,LPT1);
Result := PrintLn('Description :',LPT1);
Result := Print(#13+#10,LPT1);
Result := PrintLn('Numero serie : '+Descr.NumSerie,LPT1);
Result := PrintLn('Modele : '+Descr.Modele,LPT1);
Result := PrintLn('Body : '+FormatBody(Descr.Body),LPT1);
Result := PrintLn('Couleur : '+Descr.Couleur,LPT1);
Result := PrintLn('Milage : '+Strg(Descr.Milage),LPT1);
Result := PrintLn('Date : '+Date(Descr.Jour,Descr.Mois,Descr.Annee),LPT1);
Result := Print(#13+#10+#13+#10,LPT1);
If(Enregistrement.Devant.AvantComplet.DevantComplet = 0)Then
Begin
Result := PrintLn('Piece Devant :',LPT1);
Result := Print(#13+#10,LPT1);
Result := PrintLn('Aucun',LPT1);
End
else
If(Enregistrement.Devant.AvantComplet.DevantComplet = 2)Then
Begin
With Enregistrement.Devant.AvantComplet do
Begin
Result := PrintLn('Devant, Complet :',LPT1);
Result := Print(#13+#10,LPT1);
Result := PrintLn(StrPrix(Prix,Cent),LPT1);
Result := PrintLn(StrLocalise(Localise),LPT1);
Result := PrintLn(StrCode(Code),LPT1);
End;
End
else
PrintDevant;
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Cowl, Wind shield *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Wind shield',LPT1);
If(Enregistrement.Cowl.DataActif[0] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[0],
Enregistrement.Cowl.DataCent[0]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[0]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[0]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Cowl, Dash *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Dash',LPT1);
If(Enregistrement.Cowl.DataActif[1] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[1],
Enregistrement.Cowl.DataCent[1]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[1]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[1]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : þ Cowl, Spedometre *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Spedometre',LPT1);
If(Enregistrement.Cowl.DataActif[2] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[2],
Enregistrement.Cowl.DataCent[2]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[2]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[2]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Cowl, Radio *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Radio',LPT1);
If(Enregistrement.Cowl.DataActif[3] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[3],
Enregistrement.Cowl.DataCent[3]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[3]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[3]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Cowl, Combo swich *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Combo swich',LPT1);
If(Enregistrement.Cowl.DataActif[4] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[4],
Enregistrement.Cowl.DataCent[4]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[4]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[4]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Cowl, Ignition swich *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Ignition swich',LPT1);
If(Enregistrement.Cowl.DataActif[5] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[5],
Enregistrement.Cowl.DataCent[5]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[5]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[5]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Cowl, Radiateur chaufferette *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Radiateur chaufferette',LPT1);
If(Enregistrement.Cowl.DataActif[6] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[6],
Enregistrement.Cowl.DataCent[6]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[6]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[6]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Cowl, Moteur chaufferette *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Moteur chaufferette',LPT1);
If(Enregistrement.Cowl.DataActif[7] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[7],
Enregistrement.Cowl.DataCent[7]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[7]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[7]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Cowl, Moteur whiper *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Moteur whiper',LPT1);
If(Enregistrement.Cowl.DataActif[8] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[8],
Enregistrement.Cowl.DataCent[8]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[8]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[8]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Cowl, Whiper transmission *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
Result := PrintLn('Cowl, Whiper transmission',LPT1);
If(Enregistrement.Cowl.DataActif[9] = 1)Then
Begin
Result := PrintLn(StrPrix(Enregistrement.Cowl.DataPrix[9],
Enregistrement.Cowl.DataCent[9]),LPT1);
Result := PrintLn(StrLocalise(Enregistrement.Cowl.DataPos[9]),LPT1);
Result := PrintLn(StrCode(Enregistrement.Cowl.DataCode[9]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
Result := Print(#13+#10,LPT1);
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Porte Avant gauche *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
If(Enregistrement.Porte.Actif[0] = 1)Then
Begin
With Enregistrement.Porte do
Begin
Ass := Ass and 1;
Poteau := Poteau and 1;
Result := PrintLn('Porte, Avant gauche',LPT1);
Result := Print(#13+#10,LPT1);
If(Poteau = 1)Then Result := PrintLn('Poteau',LPT1);
Case Ass of
1 : Result := Print('Assembler',LPT1);
2 : Result := Print('Desassembler',LPT1);
End;
Result := Print(StrPrix(Prx[0],Cnt[0]),LPT1);
Result := Print(Loc[0],LPT1);
Result := Print(Code[0],LPT1);
If(VitreVent[0] = 1)Then Result := Print('Vitre ventilation',LPT1);
If(Ass = 0)Then
Begin
Case TC[0] of
1 : Result := PrintLn('T',LPT1);
2 : Result := PrintLn('C',LPT1);
End;
If(Regulator = 1)Then Result := PrintLn('Regulateur',LPT1);
End
else
Begin
Result := Print('Type : ',LPT1);
Case TypeP[0] of
0 : Result := PrintLn('EC',LPT1);
1 : Result := PrintLn('ET',LPT1);
2 : Result := PrintLn('MC',LPT1);
3 : Result := PrintLn('MT',LPT1);
End;
If(CeinPorte[0] = 1)Then Result := PrintLn('Ceinture porte',LPT1);
Result := PrintLn('Endommager : '+Endom[0],LPT1);
If(KeyLess = 1)Then Result := PrintLn('Keyless Entry',LPT1);
End;
Result := Print(#13+#10,LPT1);
End;
End;
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Porte avant droite *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
If(Enregistrement.Porte.Actif[1] = 1)Then
Begin
With Enregistrement.Porte do
Begin
Ass := Ass and 1;
Poteau := Poteau and 1;
Result := PrintLn('Porte, Avant droite',LPT1);
Result := Print(#13+#10,LPT1);
If(Poteau = 1)Then Result := PrintLn('Poteau',LPT1);
Case Ass of
1 : Result := Print('Assembler',LPT1);
2 : Result := Print('Desassembler',LPT1);
End;
Result := Print(StrPrix(Prx[1],Cnt[1]),LPT1);
Result := Print(Loc[1],LPT1);
Result := Print(Code[1],LPT1);
If(VitreVent[1] = 1)Then Result := Print('Vitre ventilation',LPT1);
If(Ass = 0)Then
Begin
Case TC[1] of
1 : Result := PrintLn('T',LPT1);
2 : Result := PrintLn('C',LPT1);
End;
End
else
Begin
Result := Print('Type : ',LPT1);
Case TypeP[1] of
0 : Result := PrintLn('EC',LPT1);
1 : Result := PrintLn('ET',LPT1);
2 : Result := PrintLn('MC',LPT1);
3 : Result := PrintLn('MT',LPT1);
End;
If(CeinPorte[1] = 1)Then Result := PrintLn('Ceinture porte',LPT1);
Result := PrintLn('Endommager : '+Endom[1],LPT1);
End;
Result := Print(#13+#10,LPT1);
End;
End;
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Porte arriere droite *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
If(Enregistrement.Porte.Actif[2] = 1)Then
Begin
With Enregistrement.Porte do
Begin
Ass := Ass and 1;
Poteau := Poteau and 1;
Result := PrintLn('Porte, Arriere gauche',LPT1);
Result := Print(#13+#10,LPT1);
If(Poteau = 1)Then Result := PrintLn('Poteau',LPT1);
Case Ass of
1 : Result := Print('Assembler',LPT1);
2 : Result := Print('Desassembler',LPT1);
End;
Result := Print(StrPrix(Prx[2],Cnt[2]),LPT1);
Result := Print(Loc[2],LPT1);
Result := Print(Code[2],LPT1);
If(Ass = 0)Then
Begin
Case TC[2] of
1 : Result := PrintLn('T',LPT1);
2 : Result := PrintLn('C',LPT1);
End;
End
else
Begin
Result := Print('Type : ',LPT1);
Case TypeP[2] of
0 : Result := PrintLn('EC',LPT1);
1 : Result := PrintLn('ET',LPT1);
2 : Result := PrintLn('MC',LPT1);
3 : Result := PrintLn('MT',LPT1);
End;
Result := PrintLn('Endommager : '+Endom[2],LPT1);
End;
Result := Print(#13+#10,LPT1);
End;
End;
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
(* *)
(* Imprime : Porte Arriere droite *)
(* *)
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
If(Enregistrement.Porte.Actif[3] = 1)Then
Begin
With Enregistrement.Porte do
Begin
Ass := Ass and 1;
Poteau := Poteau and 1;
Result := PrintLn('Porte, Arriere droite',LPT1);
Result := Print(#13+#10,LPT1);
If(Poteau = 1)Then Result := PrintLn('Poteau',LPT1);
Case Ass of
1 : Result := Print('Assembler',LPT1);
2 : Result := Print('Desassembler',LPT1);
End;
Result := Print(StrPrix(Prx[3],Cnt[3]),LPT1);
Result := Print(Loc[3],LPT1);
Result := Print(Code[3],LPT1);
If(Ass = 0)Then
Begin
Case TC[3] of
1 : Result := PrintLn('T',LPT1);
2 : Result := PrintLn('C',LPT1);
End;
End
else
Begin
Result := Print('Type : ',LPT1);
Case TypeP[3] of
0 : Result := PrintLn('EC',LPT1);
1 : Result := PrintLn('ET',LPT1);
2 : Result := PrintLn('MC',LPT1);
3 : Result := PrintLn('MT',LPT1);
End;
Result := PrintLn('Endommager : '+Endom[3],LPT1);
End;
Result := Print(#13+#10,LPT1);
End;
End;
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
If(Enregistrement.Derriere.DataDerriereComplete.DerriereComplete = 2)Then
Begin
With Enregistrement.Derriere.DataDerriereComplete do
Begin
Result := PrintLn('Derriere complet',LPT1);
Result := Print(#13+#10,LPT1);
Result := PrintLn(StrPrix(Prix,Cent),LPT1);
Result := PrintLn(StrLocalise(Localise),LPT1);
Result := PrintLn(StrCode(Code),LPT1);
End;
End
else
(*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*)
If(Enregistrement.Derriere.DataDerriereComplete.DerriereComplete = 1)Then
Begin
With Enregistrement.Derriere do
Begin
(*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*)
Result := PrintLn('Derriere, Toit',LPT1);
Result := Print(#13+#10,LPT1);
If(DataActif[0] = 1)Then
Begin
Result := PrintLn(ChoixToit[TypeToit],LPT1);
Result := PrintLn(StrPrix(DataPrix[0],DataCent[0]),LPT1);
Result := PrintLn(StrLocalise(DataPos[0]),LPT1);
Result := PrintLn(StrCode(DataCode[0]),LPT1);
End
else
Begin
Result := PrintLn('Absent',LPT1);
End;
(*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*+-+*)
Result := PrintLn('Derriere, Quarter pannel',LPT1);