Completed
Push — master ( bc6f43...6ee0f9 )
by WEBEWEB
25:08
created

Fournisseurs   F

Complexity

Total Complexity 249

Size/Duplication

Total Lines 3358
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 249
lcom 0
cbo 0
dl 0
loc 3358
rs 0.8
c 0
b 0
f 0

How to fix   Complexity   

Complex Class

Complex classes like Fournisseurs often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.

Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.

While breaking up the class, it is a good idea to analyze how other classes use Fournisseurs, and based on these observations, apply Extract Interface, too.

1
<?php
2
3
/**
4
 * This file is part of the core-library package.
5
 *
6
 * (c) 2018 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Library\Core\Quadratus\Model\QGI;
13
14
use DateTime;
15
16
/**
17
 * Fournisseurs model.
18
 *
19
 * @author webeweb <https://github.com/webeweb/>
20
 * @package WBW\Library\Core\Quadratus\Model\QGI
21
 */
22
class Fournisseurs {
23
24
	/**
25
	 * Adresse site fournisseur.
26
	 *
27
	 * @var string
28
	 */
29
	private $adresseSiteFournisseur;
30
31
	/**
32
	 * Article port1.
33
	 *
34
	 * @var string
35
	 */
36
	private $articlePort1;
37
38
	/**
39
	 * Article port2.
40
	 *
41
	 * @var string
42
	 */
43
	private $articlePort2;
44
45
	/**
46
	 * Bloque.
47
	 *
48
	 * @var boolean
49
	 */
50
	private $bloque;
51
52
	/**
53
	 * Chiffre affaire.
54
	 *
55
	 * @var float
56
	 */
57
	private $chiffreAffaire;
58
59
	/**
60
	 * Code.
61
	 *
62
	 * @var string
63
	 */
64
	private $code;
65
66
	/**
67
	 * Code activite.
68
	 *
69
	 * @var string
70
	 */
71
	private $codeActivite;
72
73
	/**
74
	 * Code assistant juridique.
75
	 *
76
	 * @var string
77
	 */
78
	private $codeAssistantJuridique;
79
80
	/**
81
	 * Code assistant social.
82
	 *
83
	 * @var string
84
	 */
85
	private $codeAssistantSocial;
86
87
	/**
88
	 * Code autre1.
89
	 *
90
	 * @var string
91
	 */
92
	private $codeAutre1;
93
94
	/**
95
	 * Code autre2.
96
	 *
97
	 * @var string
98
	 */
99
	private $codeAutre2;
100
101
	/**
102
	 * Code avocat.
103
	 *
104
	 * @var string
105
	 */
106
	private $codeAvocat;
107
108
	/**
109
	 * Code barre.
110
	 *
111
	 * @var boolean
112
	 */
113
	private $codeBarre;
114
115
	/**
116
	 * Code categorie fournisseur.
117
	 *
118
	 * @var string
119
	 */
120
	private $codeCategorieFournisseur;
121
122
	/**
123
	 * Code collaborateur.
124
	 *
125
	 * @var string
126
	 */
127
	private $codeCollaborateur;
128
129
	/**
130
	 * Code depot.
131
	 *
132
	 * @var string
133
	 */
134
	private $codeDepot;
135
136
	/**
137
	 * Code devise.
138
	 *
139
	 * @var string
140
	 */
141
	private $codeDevise;
142
143
	/**
144
	 * Code edition fact.
145
	 *
146
	 * @var string
147
	 */
148
	private $codeEditionFact;
149
150
	/**
151
	 * Code exc.
152
	 *
153
	 * @var string
154
	 */
155
	private $codeExc;
156
157
	/**
158
	 * Code expert.
159
	 *
160
	 * @var string
161
	 */
162
	private $codeExpert;
163
164
	/**
165
	 * Code famille.
166
	 *
167
	 * @var string
168
	 */
169
	private $codeFamille;
170
171
	/**
172
	 * Code geo.
173
	 *
174
	 * @var string
175
	 */
176
	private $codeGeo;
177
178
	/**
179
	 * Code imputation analytique.
180
	 *
181
	 * @var string
182
	 */
183
	private $codeImputationAnalytique;
184
185
	/**
186
	 * Code langue designation article.
187
	 *
188
	 * @var string
189
	 */
190
	private $codeLangueDesignationArticle;
191
192
	/**
193
	 * Code origine.
194
	 *
195
	 * @var string
196
	 */
197
	private $codeOrigine;
198
199
	/**
200
	 * Code portefeuille.
201
	 *
202
	 * @var string
203
	 */
204
	private $codePortefeuille;
205
206
	/**
207
	 * Code reglement.
208
	 *
209
	 * @var string
210
	 */
211
	private $codeReglement;
212
213
	/**
214
	 * Code regroupement.
215
	 *
216
	 * @var string
217
	 */
218
	private $codeRegroupement;
219
220
	/**
221
	 * Code sous famille.
222
	 *
223
	 * @var string
224
	 */
225
	private $codeSousFamille;
226
227
	/**
228
	 * Code t v a.
229
	 *
230
	 * @var string
231
	 */
232
	private $codeTVA;
233
234
	/**
235
	 * Code transporteur.
236
	 *
237
	 * @var string
238
	 */
239
	private $codeTransporteur;
240
241
	/**
242
	 * Code ventil compta.
243
	 *
244
	 * @var string
245
	 */
246
	private $codeVentilCompta;
247
248
	/**
249
	 * Collectif.
250
	 *
251
	 * @var string
252
	 */
253
	private $collectif;
254
255
	/**
256
	 * Compte de vente.
257
	 *
258
	 * @var boolean
259
	 */
260
	private $compteDeVente;
261
262
	/**
263
	 * D s code collab.
264
	 *
265
	 * @var string
266
	 */
267
	private $dSCodeCollab;
268
269
	/**
270
	 * D s date retour.
271
	 *
272
	 * @var DateTime
273
	 */
274
	private $dSDateRetour;
275
276
	/**
277
	 * D s date sortie.
278
	 *
279
	 * @var DateTime
280
	 */
281
	private $dSDateSortie;
282
283
	/**
284
	 * Date creation.
285
	 *
286
	 * @var DateTime
287
	 */
288
	private $dateCreation;
289
290
	/**
291
	 * Date entree.
292
	 *
293
	 * @var DateTime
294
	 */
295
	private $dateEntree;
296
297
	/**
298
	 * Date modification.
299
	 *
300
	 * @var DateTime
301
	 */
302
	private $dateModification;
303
304
	/**
305
	 * Date sortie.
306
	 *
307
	 * @var DateTime
308
	 */
309
	private $dateSortie;
310
311
	/**
312
	 * Delai.
313
	 *
314
	 * @var float
315
	 */
316
	private $delai;
317
318
	/**
319
	 * Domiciliation bancaire1.
320
	 *
321
	 * @var string
322
	 */
323
	private $domiciliationBancaire1;
324
325
	/**
326
	 * Domiciliation bancaire2.
327
	 *
328
	 * @var string
329
	 */
330
	private $domiciliationBancaire2;
331
332
	/**
333
	 * Dossier comptable.
334
	 *
335
	 * @var string
336
	 */
337
	private $dossierComptable;
338
339
	/**
340
	 * Dossier paie.
341
	 *
342
	 * @var string
343
	 */
344
	private $dossierPaie;
345
346
	/**
347
	 * E a n frn.
348
	 *
349
	 * @var string
350
	 */
351
	private $eANFrn;
352
353
	/**
354
	 * Echeance fin decade.
355
	 *
356
	 * @var boolean
357
	 */
358
	private $echeanceFinDecade;
359
360
	/**
361
	 * Echeance fin quinzaine.
362
	 *
363
	 * @var boolean
364
	 */
365
	private $echeanceFinQuinzaine;
366
367
	/**
368
	 * Etat1.
369
	 *
370
	 * @var string
371
	 */
372
	private $etat1;
373
374
	/**
375
	 * Etat2.
376
	 *
377
	 * @var string
378
	 */
379
	private $etat2;
380
381
	/**
382
	 * Etat3.
383
	 *
384
	 * @var string
385
	 */
386
	private $etat3;
387
388
	/**
389
	 * Etat4.
390
	 *
391
	 * @var string
392
	 */
393
	private $etat4;
394
395
	/**
396
	 * Etat5.
397
	 *
398
	 * @var string
399
	 */
400
	private $etat5;
401
402
	/**
403
	 * Etiquettes.
404
	 *
405
	 * @var boolean
406
	 */
407
	private $etiquettes;
408
409
	/**
410
	 * Facture euros.
411
	 *
412
	 * @var boolean
413
	 */
414
	private $factureEuros;
415
416
	/**
417
	 * Facture isolee.
418
	 *
419
	 * @var boolean
420
	 */
421
	private $factureIsolee;
422
423
	/**
424
	 * Frais fixes1.
425
	 *
426
	 * @var boolean
427
	 */
428
	private $fraisFixes1;
429
430
	/**
431
	 * Frais fixes2.
432
	 *
433
	 * @var boolean
434
	 */
435
	private $fraisFixes2;
436
437
	/**
438
	 * Franco port1.
439
	 *
440
	 * @var float
441
	 */
442
	private $francoPort1;
443
444
	/**
445
	 * Franco port2.
446
	 *
447
	 * @var float
448
	 */
449
	private $francoPort2;
450
451
	/**
452
	 * I g p.
453
	 *
454
	 * @var boolean
455
	 */
456
	private $iGP;
457
458
	/**
459
	 * Identifiant t v a.
460
	 *
461
	 * @var string
462
	 */
463
	private $identifiantTVA;
464
465
	/**
466
	 * Insp.
467
	 *
468
	 * @var string
469
	 */
470
	private $insp;
471
472
	/**
473
	 * Mission sur dossier.
474
	 *
475
	 * @var int
476
	 */
477
	private $missionSurDossier;
478
479
	/**
480
	 * Modele b r.
481
	 *
482
	 * @var string
483
	 */
484
	private $modeleBR;
485
486
	/**
487
	 * Modele commande.
488
	 *
489
	 * @var string
490
	 */
491
	private $modeleCommande;
492
493
	/**
494
	 * Modele facture.
495
	 *
496
	 * @var string
497
	 */
498
	private $modeleFacture;
499
500
	/**
501
	 * Modele releve.
502
	 *
503
	 * @var string
504
	 */
505
	private $modeleReleve;
506
507
	/**
508
	 * Montant franco.
509
	 *
510
	 * @var float
511
	 */
512
	private $montantFranco;
513
514
	/**
515
	 * Montant mini cde.
516
	 *
517
	 * @var float
518
	 */
519
	private $montantMiniCde;
520
521
	/**
522
	 * Montant port liv.
523
	 *
524
	 * @var float
525
	 */
526
	private $montantPortLiv;
527
528
	/**
529
	 * Nb b r.
530
	 *
531
	 * @var string
532
	 */
533
	private $nbBR;
534
535
	/**
536
	 * Nb commande.
537
	 *
538
	 * @var string
539
	 */
540
	private $nbCommande;
541
542
	/**
543
	 * Nb facture.
544
	 *
545
	 * @var string
546
	 */
547
	private $nbFacture;
548
549
	/**
550
	 * Nb jour interval.
551
	 *
552
	 * @var int
553
	 */
554
	private $nbJourInterval;
555
556
	/**
557
	 * Nb max b r.
558
	 *
559
	 * @var string
560
	 */
561
	private $nbMaxBR;
562
563
	/**
564
	 * Nb releve.
565
	 *
566
	 * @var string
567
	 */
568
	private $nbReleve;
569
570
	/**
571
	 * Nombre echeances.
572
	 *
573
	 * @var string
574
	 */
575
	private $nombreEcheances;
576
577
	/**
578
	 * Num facture f.
579
	 *
580
	 * @var int
581
	 */
582
	private $numFactureF;
583
584
	/**
585
	 * Numero compte.
586
	 *
587
	 * @var string
588
	 */
589
	private $numeroCompte;
590
591
	/**
592
	 * Observation1.
593
	 *
594
	 * @var string
595
	 */
596
	private $observation1;
597
598
	/**
599
	 * Observation2.
600
	 *
601
	 * @var string
602
	 */
603
	private $observation2;
604
605
	/**
606
	 * Paiement depart le.
607
	 *
608
	 * @var int
609
	 */
610
	private $paiementDepartLe;
611
612
	/**
613
	 * Paiement le.
614
	 *
615
	 * @var string
616
	 */
617
	private $paiementLe;
618
619
	/**
620
	 * Paiement nombre de jours.
621
	 *
622
	 * @var int
623
	 */
624
	private $paiementNombreDeJours;
625
626
	/**
627
	 * Prefixe facture f.
628
	 *
629
	 * @var string
630
	 */
631
	private $prefixeFactureF;
632
633
	/**
634
	 * R i b.
635
	 *
636
	 * @var string
637
	 */
638
	private $rIB;
639
640
	/**
641
	 * Regime.
642
	 *
643
	 * @var string
644
	 */
645
	private $regime;
646
647
	/**
648
	 * Regroupement fact.
649
	 *
650
	 * @var string
651
	 */
652
	private $regroupementFact;
653
654
	/**
655
	 * Releve facture.
656
	 *
657
	 * @var boolean
658
	 */
659
	private $releveFacture;
660
661
	/**
662
	 * Remise ligne1.
663
	 *
664
	 * @var float
665
	 */
666
	private $remiseLigne1;
667
668
	/**
669
	 * Remise ligne2.
670
	 *
671
	 * @var float
672
	 */
673
	private $remiseLigne2;
674
675
	/**
676
	 * Remise ligne3.
677
	 *
678
	 * @var float
679
	 */
680
	private $remiseLigne3;
681
682
	/**
683
	 * Remise pied.
684
	 *
685
	 * @var float
686
	 */
687
	private $remisePied;
688
689
	/**
690
	 * Remise pied2.
691
	 *
692
	 * @var float
693
	 */
694
	private $remisePied2;
695
696
	/**
697
	 * Remise pied3.
698
	 *
699
	 * @var float
700
	 */
701
	private $remisePied3;
702
703
	/**
704
	 * Resultat.
705
	 *
706
	 * @var float
707
	 */
708
	private $resultat;
709
710
	/**
711
	 * Siege groupe.
712
	 *
713
	 * @var boolean
714
	 */
715
	private $siegeGroupe;
716
717
	/**
718
	 * Soumis escompte.
719
	 *
720
	 * @var boolean
721
	 */
722
	private $soumisEscompte;
723
724
	/**
725
	 * Soumis port1.
726
	 *
727
	 * @var string
728
	 */
729
	private $soumisPort1;
730
731
	/**
732
	 * Soumis port2.
733
	 *
734
	 * @var string
735
	 */
736
	private $soumisPort2;
737
738
	/**
739
	 * Soumis t v a.
740
	 *
741
	 * @var boolean
742
	 */
743
	private $soumisTVA;
744
745
	/**
746
	 * Soumis taxe1.
747
	 *
748
	 * @var boolean
749
	 */
750
	private $soumisTaxe1;
751
752
	/**
753
	 * Soumis taxe2.
754
	 *
755
	 * @var boolean
756
	 */
757
	private $soumisTaxe2;
758
759
	/**
760
	 * Soumis taxe3.
761
	 *
762
	 * @var boolean
763
	 */
764
	private $soumisTaxe3;
765
766
	/**
767
	 * Soumis taxe4.
768
	 *
769
	 * @var boolean
770
	 */
771
	private $soumisTaxe4;
772
773
	/**
774
	 * Soumis taxe5.
775
	 *
776
	 * @var boolean
777
	 */
778
	private $soumisTaxe5;
779
780
	/**
781
	 * T r s aff grp.
782
	 *
783
	 * @var boolean
784
	 */
785
	private $tRSAffGrp;
786
787
	/**
788
	 * T r s aff mat dang.
789
	 *
790
	 * @var string
791
	 */
792
	private $tRSAffMatDang;
793
794
	/**
795
	 * T r s aff prod chim.
796
	 *
797
	 * @var string
798
	 */
799
	private $tRSAffProdChim;
800
801
	/**
802
	 * T r s aff refri.
803
	 *
804
	 * @var string
805
	 */
806
	private $tRSAffRefri;
807
808
	/**
809
	 * T r s code tarif.
810
	 *
811
	 * @var string
812
	 */
813
	private $tRSCodeTarif;
814
815
	/**
816
	 * T r s est un affrete.
817
	 *
818
	 * @var string
819
	 */
820
	private $tRSEstUnAffrete;
821
822
	/**
823
	 * T r s gestion palettes.
824
	 *
825
	 * @var boolean
826
	 */
827
	private $tRSGestionPalettes;
828
829
	/**
830
	 * T r s p cent px trs.
831
	 *
832
	 * @var float
833
	 */
834
	private $tRSPCentPxTrs;
835
836
	/**
837
	 * T r s suivi planing aff.
838
	 *
839
	 * @var boolean
840
	 */
841
	private $tRSSuiviPlaningAff;
842
843
	/**
844
	 * T v a regime.
845
	 *
846
	 * @var string
847
	 */
848
	private $tVARegime;
849
850
	/**
851
	 * Taux comm.
852
	 *
853
	 * @var float
854
	 */
855
	private $tauxComm;
856
857
	/**
858
	 * Taux escompte.
859
	 *
860
	 * @var float
861
	 */
862
	private $tauxEscompte;
863
864
	/**
865
	 * Toutes activites.
866
	 *
867
	 * @var string
868
	 */
869
	private $toutesActivites;
870
871
	/**
872
	 * Transporteur.
873
	 *
874
	 * @var string
875
	 */
876
	private $transporteur;
877
878
	/**
879
	 * Type edit b r.
880
	 *
881
	 * @var string
882
	 */
883
	private $typeEditBR;
884
885
	/**
886
	 * Type fournisseur.
887
	 *
888
	 * @var string
889
	 */
890
	private $typeFournisseur;
891
892
	/**
893
	 * Constructor.
894
	 */
895
	public function __construct() {
896
		// NOTHING TO DO;
897
	}
898
899
	/**
900
	 * Get the adresse site fournisseur.
901
	 *
902
	 * @return string Returns the adresse site fournisseur.
903
	 */
904
	public function getAdresseSiteFournisseur() {
905
		return $this->adresseSiteFournisseur;
906
	}
907
908
	/**
909
	 * Get the article port1.
910
	 *
911
	 * @return string Returns the article port1.
912
	 */
913
	public function getArticlePort1() {
914
		return $this->articlePort1;
915
	}
916
917
	/**
918
	 * Get the article port2.
919
	 *
920
	 * @return string Returns the article port2.
921
	 */
922
	public function getArticlePort2() {
923
		return $this->articlePort2;
924
	}
925
926
	/**
927
	 * Get the bloque.
928
	 *
929
	 * @return boolean Returns the bloque.
930
	 */
931
	public function getBloque() {
932
		return $this->bloque;
933
	}
934
935
	/**
936
	 * Get the chiffre affaire.
937
	 *
938
	 * @return float Returns the chiffre affaire.
939
	 */
940
	public function getChiffreAffaire() {
941
		return $this->chiffreAffaire;
942
	}
943
944
	/**
945
	 * Get the code.
946
	 *
947
	 * @return string Returns the code.
948
	 */
949
	public function getCode() {
950
		return $this->code;
951
	}
952
953
	/**
954
	 * Get the code activite.
955
	 *
956
	 * @return string Returns the code activite.
957
	 */
958
	public function getCodeActivite() {
959
		return $this->codeActivite;
960
	}
961
962
	/**
963
	 * Get the code assistant juridique.
964
	 *
965
	 * @return string Returns the code assistant juridique.
966
	 */
967
	public function getCodeAssistantJuridique() {
968
		return $this->codeAssistantJuridique;
969
	}
970
971
	/**
972
	 * Get the code assistant social.
973
	 *
974
	 * @return string Returns the code assistant social.
975
	 */
976
	public function getCodeAssistantSocial() {
977
		return $this->codeAssistantSocial;
978
	}
979
980
	/**
981
	 * Get the code autre1.
982
	 *
983
	 * @return string Returns the code autre1.
984
	 */
985
	public function getCodeAutre1() {
986
		return $this->codeAutre1;
987
	}
988
989
	/**
990
	 * Get the code autre2.
991
	 *
992
	 * @return string Returns the code autre2.
993
	 */
994
	public function getCodeAutre2() {
995
		return $this->codeAutre2;
996
	}
997
998
	/**
999
	 * Get the code avocat.
1000
	 *
1001
	 * @return string Returns the code avocat.
1002
	 */
1003
	public function getCodeAvocat() {
1004
		return $this->codeAvocat;
1005
	}
1006
1007
	/**
1008
	 * Get the code barre.
1009
	 *
1010
	 * @return boolean Returns the code barre.
1011
	 */
1012
	public function getCodeBarre() {
1013
		return $this->codeBarre;
1014
	}
1015
1016
	/**
1017
	 * Get the code categorie fournisseur.
1018
	 *
1019
	 * @return string Returns the code categorie fournisseur.
1020
	 */
1021
	public function getCodeCategorieFournisseur() {
1022
		return $this->codeCategorieFournisseur;
1023
	}
1024
1025
	/**
1026
	 * Get the code collaborateur.
1027
	 *
1028
	 * @return string Returns the code collaborateur.
1029
	 */
1030
	public function getCodeCollaborateur() {
1031
		return $this->codeCollaborateur;
1032
	}
1033
1034
	/**
1035
	 * Get the code depot.
1036
	 *
1037
	 * @return string Returns the code depot.
1038
	 */
1039
	public function getCodeDepot() {
1040
		return $this->codeDepot;
1041
	}
1042
1043
	/**
1044
	 * Get the code devise.
1045
	 *
1046
	 * @return string Returns the code devise.
1047
	 */
1048
	public function getCodeDevise() {
1049
		return $this->codeDevise;
1050
	}
1051
1052
	/**
1053
	 * Get the code edition fact.
1054
	 *
1055
	 * @return string Returns the code edition fact.
1056
	 */
1057
	public function getCodeEditionFact() {
1058
		return $this->codeEditionFact;
1059
	}
1060
1061
	/**
1062
	 * Get the code exc.
1063
	 *
1064
	 * @return string Returns the code exc.
1065
	 */
1066
	public function getCodeExc() {
1067
		return $this->codeExc;
1068
	}
1069
1070
	/**
1071
	 * Get the code expert.
1072
	 *
1073
	 * @return string Returns the code expert.
1074
	 */
1075
	public function getCodeExpert() {
1076
		return $this->codeExpert;
1077
	}
1078
1079
	/**
1080
	 * Get the code famille.
1081
	 *
1082
	 * @return string Returns the code famille.
1083
	 */
1084
	public function getCodeFamille() {
1085
		return $this->codeFamille;
1086
	}
1087
1088
	/**
1089
	 * Get the code geo.
1090
	 *
1091
	 * @return string Returns the code geo.
1092
	 */
1093
	public function getCodeGeo() {
1094
		return $this->codeGeo;
1095
	}
1096
1097
	/**
1098
	 * Get the code imputation analytique.
1099
	 *
1100
	 * @return string Returns the code imputation analytique.
1101
	 */
1102
	public function getCodeImputationAnalytique() {
1103
		return $this->codeImputationAnalytique;
1104
	}
1105
1106
	/**
1107
	 * Get the code langue designation article.
1108
	 *
1109
	 * @return string Returns the code langue designation article.
1110
	 */
1111
	public function getCodeLangueDesignationArticle() {
1112
		return $this->codeLangueDesignationArticle;
1113
	}
1114
1115
	/**
1116
	 * Get the code origine.
1117
	 *
1118
	 * @return string Returns the code origine.
1119
	 */
1120
	public function getCodeOrigine() {
1121
		return $this->codeOrigine;
1122
	}
1123
1124
	/**
1125
	 * Get the code portefeuille.
1126
	 *
1127
	 * @return string Returns the code portefeuille.
1128
	 */
1129
	public function getCodePortefeuille() {
1130
		return $this->codePortefeuille;
1131
	}
1132
1133
	/**
1134
	 * Get the code reglement.
1135
	 *
1136
	 * @return string Returns the code reglement.
1137
	 */
1138
	public function getCodeReglement() {
1139
		return $this->codeReglement;
1140
	}
1141
1142
	/**
1143
	 * Get the code regroupement.
1144
	 *
1145
	 * @return string Returns the code regroupement.
1146
	 */
1147
	public function getCodeRegroupement() {
1148
		return $this->codeRegroupement;
1149
	}
1150
1151
	/**
1152
	 * Get the code sous famille.
1153
	 *
1154
	 * @return string Returns the code sous famille.
1155
	 */
1156
	public function getCodeSousFamille() {
1157
		return $this->codeSousFamille;
1158
	}
1159
1160
	/**
1161
	 * Get the code t v a.
1162
	 *
1163
	 * @return string Returns the code t v a.
1164
	 */
1165
	public function getCodeTVA() {
1166
		return $this->codeTVA;
1167
	}
1168
1169
	/**
1170
	 * Get the code transporteur.
1171
	 *
1172
	 * @return string Returns the code transporteur.
1173
	 */
1174
	public function getCodeTransporteur() {
1175
		return $this->codeTransporteur;
1176
	}
1177
1178
	/**
1179
	 * Get the code ventil compta.
1180
	 *
1181
	 * @return string Returns the code ventil compta.
1182
	 */
1183
	public function getCodeVentilCompta() {
1184
		return $this->codeVentilCompta;
1185
	}
1186
1187
	/**
1188
	 * Get the collectif.
1189
	 *
1190
	 * @return string Returns the collectif.
1191
	 */
1192
	public function getCollectif() {
1193
		return $this->collectif;
1194
	}
1195
1196
	/**
1197
	 * Get the compte de vente.
1198
	 *
1199
	 * @return boolean Returns the compte de vente.
1200
	 */
1201
	public function getCompteDeVente() {
1202
		return $this->compteDeVente;
1203
	}
1204
1205
	/**
1206
	 * Get the d s code collab.
1207
	 *
1208
	 * @return string Returns the d s code collab.
1209
	 */
1210
	public function getDSCodeCollab() {
1211
		return $this->dSCodeCollab;
1212
	}
1213
1214
	/**
1215
	 * Get the d s date retour.
1216
	 *
1217
	 * @return DateTime Returns the d s date retour.
1218
	 */
1219
	public function getDSDateRetour() {
1220
		return $this->dSDateRetour;
1221
	}
1222
1223
	/**
1224
	 * Get the d s date sortie.
1225
	 *
1226
	 * @return DateTime Returns the d s date sortie.
1227
	 */
1228
	public function getDSDateSortie() {
1229
		return $this->dSDateSortie;
1230
	}
1231
1232
	/**
1233
	 * Get the date creation.
1234
	 *
1235
	 * @return DateTime Returns the date creation.
1236
	 */
1237
	public function getDateCreation() {
1238
		return $this->dateCreation;
1239
	}
1240
1241
	/**
1242
	 * Get the date entree.
1243
	 *
1244
	 * @return DateTime Returns the date entree.
1245
	 */
1246
	public function getDateEntree() {
1247
		return $this->dateEntree;
1248
	}
1249
1250
	/**
1251
	 * Get the date modification.
1252
	 *
1253
	 * @return DateTime Returns the date modification.
1254
	 */
1255
	public function getDateModification() {
1256
		return $this->dateModification;
1257
	}
1258
1259
	/**
1260
	 * Get the date sortie.
1261
	 *
1262
	 * @return DateTime Returns the date sortie.
1263
	 */
1264
	public function getDateSortie() {
1265
		return $this->dateSortie;
1266
	}
1267
1268
	/**
1269
	 * Get the delai.
1270
	 *
1271
	 * @return float Returns the delai.
1272
	 */
1273
	public function getDelai() {
1274
		return $this->delai;
1275
	}
1276
1277
	/**
1278
	 * Get the domiciliation bancaire1.
1279
	 *
1280
	 * @return string Returns the domiciliation bancaire1.
1281
	 */
1282
	public function getDomiciliationBancaire1() {
1283
		return $this->domiciliationBancaire1;
1284
	}
1285
1286
	/**
1287
	 * Get the domiciliation bancaire2.
1288
	 *
1289
	 * @return string Returns the domiciliation bancaire2.
1290
	 */
1291
	public function getDomiciliationBancaire2() {
1292
		return $this->domiciliationBancaire2;
1293
	}
1294
1295
	/**
1296
	 * Get the dossier comptable.
1297
	 *
1298
	 * @return string Returns the dossier comptable.
1299
	 */
1300
	public function getDossierComptable() {
1301
		return $this->dossierComptable;
1302
	}
1303
1304
	/**
1305
	 * Get the dossier paie.
1306
	 *
1307
	 * @return string Returns the dossier paie.
1308
	 */
1309
	public function getDossierPaie() {
1310
		return $this->dossierPaie;
1311
	}
1312
1313
	/**
1314
	 * Get the e a n frn.
1315
	 *
1316
	 * @return string Returns the e a n frn.
1317
	 */
1318
	public function getEANFrn() {
1319
		return $this->eANFrn;
1320
	}
1321
1322
	/**
1323
	 * Get the echeance fin decade.
1324
	 *
1325
	 * @return boolean Returns the echeance fin decade.
1326
	 */
1327
	public function getEcheanceFinDecade() {
1328
		return $this->echeanceFinDecade;
1329
	}
1330
1331
	/**
1332
	 * Get the echeance fin quinzaine.
1333
	 *
1334
	 * @return boolean Returns the echeance fin quinzaine.
1335
	 */
1336
	public function getEcheanceFinQuinzaine() {
1337
		return $this->echeanceFinQuinzaine;
1338
	}
1339
1340
	/**
1341
	 * Get the etat1.
1342
	 *
1343
	 * @return string Returns the etat1.
1344
	 */
1345
	public function getEtat1() {
1346
		return $this->etat1;
1347
	}
1348
1349
	/**
1350
	 * Get the etat2.
1351
	 *
1352
	 * @return string Returns the etat2.
1353
	 */
1354
	public function getEtat2() {
1355
		return $this->etat2;
1356
	}
1357
1358
	/**
1359
	 * Get the etat3.
1360
	 *
1361
	 * @return string Returns the etat3.
1362
	 */
1363
	public function getEtat3() {
1364
		return $this->etat3;
1365
	}
1366
1367
	/**
1368
	 * Get the etat4.
1369
	 *
1370
	 * @return string Returns the etat4.
1371
	 */
1372
	public function getEtat4() {
1373
		return $this->etat4;
1374
	}
1375
1376
	/**
1377
	 * Get the etat5.
1378
	 *
1379
	 * @return string Returns the etat5.
1380
	 */
1381
	public function getEtat5() {
1382
		return $this->etat5;
1383
	}
1384
1385
	/**
1386
	 * Get the etiquettes.
1387
	 *
1388
	 * @return boolean Returns the etiquettes.
1389
	 */
1390
	public function getEtiquettes() {
1391
		return $this->etiquettes;
1392
	}
1393
1394
	/**
1395
	 * Get the facture euros.
1396
	 *
1397
	 * @return boolean Returns the facture euros.
1398
	 */
1399
	public function getFactureEuros() {
1400
		return $this->factureEuros;
1401
	}
1402
1403
	/**
1404
	 * Get the facture isolee.
1405
	 *
1406
	 * @return boolean Returns the facture isolee.
1407
	 */
1408
	public function getFactureIsolee() {
1409
		return $this->factureIsolee;
1410
	}
1411
1412
	/**
1413
	 * Get the frais fixes1.
1414
	 *
1415
	 * @return boolean Returns the frais fixes1.
1416
	 */
1417
	public function getFraisFixes1() {
1418
		return $this->fraisFixes1;
1419
	}
1420
1421
	/**
1422
	 * Get the frais fixes2.
1423
	 *
1424
	 * @return boolean Returns the frais fixes2.
1425
	 */
1426
	public function getFraisFixes2() {
1427
		return $this->fraisFixes2;
1428
	}
1429
1430
	/**
1431
	 * Get the franco port1.
1432
	 *
1433
	 * @return float Returns the franco port1.
1434
	 */
1435
	public function getFrancoPort1() {
1436
		return $this->francoPort1;
1437
	}
1438
1439
	/**
1440
	 * Get the franco port2.
1441
	 *
1442
	 * @return float Returns the franco port2.
1443
	 */
1444
	public function getFrancoPort2() {
1445
		return $this->francoPort2;
1446
	}
1447
1448
	/**
1449
	 * Get the i g p.
1450
	 *
1451
	 * @return boolean Returns the i g p.
1452
	 */
1453
	public function getIGP() {
1454
		return $this->iGP;
1455
	}
1456
1457
	/**
1458
	 * Get the identifiant t v a.
1459
	 *
1460
	 * @return string Returns the identifiant t v a.
1461
	 */
1462
	public function getIdentifiantTVA() {
1463
		return $this->identifiantTVA;
1464
	}
1465
1466
	/**
1467
	 * Get the insp.
1468
	 *
1469
	 * @return string Returns the insp.
1470
	 */
1471
	public function getInsp() {
1472
		return $this->insp;
1473
	}
1474
1475
	/**
1476
	 * Get the mission sur dossier.
1477
	 *
1478
	 * @return int Returns the mission sur dossier.
1479
	 */
1480
	public function getMissionSurDossier() {
1481
		return $this->missionSurDossier;
1482
	}
1483
1484
	/**
1485
	 * Get the modele b r.
1486
	 *
1487
	 * @return string Returns the modele b r.
1488
	 */
1489
	public function getModeleBR() {
1490
		return $this->modeleBR;
1491
	}
1492
1493
	/**
1494
	 * Get the modele commande.
1495
	 *
1496
	 * @return string Returns the modele commande.
1497
	 */
1498
	public function getModeleCommande() {
1499
		return $this->modeleCommande;
1500
	}
1501
1502
	/**
1503
	 * Get the modele facture.
1504
	 *
1505
	 * @return string Returns the modele facture.
1506
	 */
1507
	public function getModeleFacture() {
1508
		return $this->modeleFacture;
1509
	}
1510
1511
	/**
1512
	 * Get the modele releve.
1513
	 *
1514
	 * @return string Returns the modele releve.
1515
	 */
1516
	public function getModeleReleve() {
1517
		return $this->modeleReleve;
1518
	}
1519
1520
	/**
1521
	 * Get the montant franco.
1522
	 *
1523
	 * @return float Returns the montant franco.
1524
	 */
1525
	public function getMontantFranco() {
1526
		return $this->montantFranco;
1527
	}
1528
1529
	/**
1530
	 * Get the montant mini cde.
1531
	 *
1532
	 * @return float Returns the montant mini cde.
1533
	 */
1534
	public function getMontantMiniCde() {
1535
		return $this->montantMiniCde;
1536
	}
1537
1538
	/**
1539
	 * Get the montant port liv.
1540
	 *
1541
	 * @return float Returns the montant port liv.
1542
	 */
1543
	public function getMontantPortLiv() {
1544
		return $this->montantPortLiv;
1545
	}
1546
1547
	/**
1548
	 * Get the nb b r.
1549
	 *
1550
	 * @return string Returns the nb b r.
1551
	 */
1552
	public function getNbBR() {
1553
		return $this->nbBR;
1554
	}
1555
1556
	/**
1557
	 * Get the nb commande.
1558
	 *
1559
	 * @return string Returns the nb commande.
1560
	 */
1561
	public function getNbCommande() {
1562
		return $this->nbCommande;
1563
	}
1564
1565
	/**
1566
	 * Get the nb facture.
1567
	 *
1568
	 * @return string Returns the nb facture.
1569
	 */
1570
	public function getNbFacture() {
1571
		return $this->nbFacture;
1572
	}
1573
1574
	/**
1575
	 * Get the nb jour interval.
1576
	 *
1577
	 * @return int Returns the nb jour interval.
1578
	 */
1579
	public function getNbJourInterval() {
1580
		return $this->nbJourInterval;
1581
	}
1582
1583
	/**
1584
	 * Get the nb max b r.
1585
	 *
1586
	 * @return string Returns the nb max b r.
1587
	 */
1588
	public function getNbMaxBR() {
1589
		return $this->nbMaxBR;
1590
	}
1591
1592
	/**
1593
	 * Get the nb releve.
1594
	 *
1595
	 * @return string Returns the nb releve.
1596
	 */
1597
	public function getNbReleve() {
1598
		return $this->nbReleve;
1599
	}
1600
1601
	/**
1602
	 * Get the nombre echeances.
1603
	 *
1604
	 * @return string Returns the nombre echeances.
1605
	 */
1606
	public function getNombreEcheances() {
1607
		return $this->nombreEcheances;
1608
	}
1609
1610
	/**
1611
	 * Get the num facture f.
1612
	 *
1613
	 * @return int Returns the num facture f.
1614
	 */
1615
	public function getNumFactureF() {
1616
		return $this->numFactureF;
1617
	}
1618
1619
	/**
1620
	 * Get the numero compte.
1621
	 *
1622
	 * @return string Returns the numero compte.
1623
	 */
1624
	public function getNumeroCompte() {
1625
		return $this->numeroCompte;
1626
	}
1627
1628
	/**
1629
	 * Get the observation1.
1630
	 *
1631
	 * @return string Returns the observation1.
1632
	 */
1633
	public function getObservation1() {
1634
		return $this->observation1;
1635
	}
1636
1637
	/**
1638
	 * Get the observation2.
1639
	 *
1640
	 * @return string Returns the observation2.
1641
	 */
1642
	public function getObservation2() {
1643
		return $this->observation2;
1644
	}
1645
1646
	/**
1647
	 * Get the paiement depart le.
1648
	 *
1649
	 * @return int Returns the paiement depart le.
1650
	 */
1651
	public function getPaiementDepartLe() {
1652
		return $this->paiementDepartLe;
1653
	}
1654
1655
	/**
1656
	 * Get the paiement le.
1657
	 *
1658
	 * @return string Returns the paiement le.
1659
	 */
1660
	public function getPaiementLe() {
1661
		return $this->paiementLe;
1662
	}
1663
1664
	/**
1665
	 * Get the paiement nombre de jours.
1666
	 *
1667
	 * @return int Returns the paiement nombre de jours.
1668
	 */
1669
	public function getPaiementNombreDeJours() {
1670
		return $this->paiementNombreDeJours;
1671
	}
1672
1673
	/**
1674
	 * Get the prefixe facture f.
1675
	 *
1676
	 * @return string Returns the prefixe facture f.
1677
	 */
1678
	public function getPrefixeFactureF() {
1679
		return $this->prefixeFactureF;
1680
	}
1681
1682
	/**
1683
	 * Get the r i b.
1684
	 *
1685
	 * @return string Returns the r i b.
1686
	 */
1687
	public function getRIB() {
1688
		return $this->rIB;
1689
	}
1690
1691
	/**
1692
	 * Get the regime.
1693
	 *
1694
	 * @return string Returns the regime.
1695
	 */
1696
	public function getRegime() {
1697
		return $this->regime;
1698
	}
1699
1700
	/**
1701
	 * Get the regroupement fact.
1702
	 *
1703
	 * @return string Returns the regroupement fact.
1704
	 */
1705
	public function getRegroupementFact() {
1706
		return $this->regroupementFact;
1707
	}
1708
1709
	/**
1710
	 * Get the releve facture.
1711
	 *
1712
	 * @return boolean Returns the releve facture.
1713
	 */
1714
	public function getReleveFacture() {
1715
		return $this->releveFacture;
1716
	}
1717
1718
	/**
1719
	 * Get the remise ligne1.
1720
	 *
1721
	 * @return float Returns the remise ligne1.
1722
	 */
1723
	public function getRemiseLigne1() {
1724
		return $this->remiseLigne1;
1725
	}
1726
1727
	/**
1728
	 * Get the remise ligne2.
1729
	 *
1730
	 * @return float Returns the remise ligne2.
1731
	 */
1732
	public function getRemiseLigne2() {
1733
		return $this->remiseLigne2;
1734
	}
1735
1736
	/**
1737
	 * Get the remise ligne3.
1738
	 *
1739
	 * @return float Returns the remise ligne3.
1740
	 */
1741
	public function getRemiseLigne3() {
1742
		return $this->remiseLigne3;
1743
	}
1744
1745
	/**
1746
	 * Get the remise pied.
1747
	 *
1748
	 * @return float Returns the remise pied.
1749
	 */
1750
	public function getRemisePied() {
1751
		return $this->remisePied;
1752
	}
1753
1754
	/**
1755
	 * Get the remise pied2.
1756
	 *
1757
	 * @return float Returns the remise pied2.
1758
	 */
1759
	public function getRemisePied2() {
1760
		return $this->remisePied2;
1761
	}
1762
1763
	/**
1764
	 * Get the remise pied3.
1765
	 *
1766
	 * @return float Returns the remise pied3.
1767
	 */
1768
	public function getRemisePied3() {
1769
		return $this->remisePied3;
1770
	}
1771
1772
	/**
1773
	 * Get the resultat.
1774
	 *
1775
	 * @return float Returns the resultat.
1776
	 */
1777
	public function getResultat() {
1778
		return $this->resultat;
1779
	}
1780
1781
	/**
1782
	 * Get the siege groupe.
1783
	 *
1784
	 * @return boolean Returns the siege groupe.
1785
	 */
1786
	public function getSiegeGroupe() {
1787
		return $this->siegeGroupe;
1788
	}
1789
1790
	/**
1791
	 * Get the soumis escompte.
1792
	 *
1793
	 * @return boolean Returns the soumis escompte.
1794
	 */
1795
	public function getSoumisEscompte() {
1796
		return $this->soumisEscompte;
1797
	}
1798
1799
	/**
1800
	 * Get the soumis port1.
1801
	 *
1802
	 * @return string Returns the soumis port1.
1803
	 */
1804
	public function getSoumisPort1() {
1805
		return $this->soumisPort1;
1806
	}
1807
1808
	/**
1809
	 * Get the soumis port2.
1810
	 *
1811
	 * @return string Returns the soumis port2.
1812
	 */
1813
	public function getSoumisPort2() {
1814
		return $this->soumisPort2;
1815
	}
1816
1817
	/**
1818
	 * Get the soumis t v a.
1819
	 *
1820
	 * @return boolean Returns the soumis t v a.
1821
	 */
1822
	public function getSoumisTVA() {
1823
		return $this->soumisTVA;
1824
	}
1825
1826
	/**
1827
	 * Get the soumis taxe1.
1828
	 *
1829
	 * @return boolean Returns the soumis taxe1.
1830
	 */
1831
	public function getSoumisTaxe1() {
1832
		return $this->soumisTaxe1;
1833
	}
1834
1835
	/**
1836
	 * Get the soumis taxe2.
1837
	 *
1838
	 * @return boolean Returns the soumis taxe2.
1839
	 */
1840
	public function getSoumisTaxe2() {
1841
		return $this->soumisTaxe2;
1842
	}
1843
1844
	/**
1845
	 * Get the soumis taxe3.
1846
	 *
1847
	 * @return boolean Returns the soumis taxe3.
1848
	 */
1849
	public function getSoumisTaxe3() {
1850
		return $this->soumisTaxe3;
1851
	}
1852
1853
	/**
1854
	 * Get the soumis taxe4.
1855
	 *
1856
	 * @return boolean Returns the soumis taxe4.
1857
	 */
1858
	public function getSoumisTaxe4() {
1859
		return $this->soumisTaxe4;
1860
	}
1861
1862
	/**
1863
	 * Get the soumis taxe5.
1864
	 *
1865
	 * @return boolean Returns the soumis taxe5.
1866
	 */
1867
	public function getSoumisTaxe5() {
1868
		return $this->soumisTaxe5;
1869
	}
1870
1871
	/**
1872
	 * Get the t r s aff grp.
1873
	 *
1874
	 * @return boolean Returns the t r s aff grp.
1875
	 */
1876
	public function getTRSAffGrp() {
1877
		return $this->tRSAffGrp;
1878
	}
1879
1880
	/**
1881
	 * Get the t r s aff mat dang.
1882
	 *
1883
	 * @return string Returns the t r s aff mat dang.
1884
	 */
1885
	public function getTRSAffMatDang() {
1886
		return $this->tRSAffMatDang;
1887
	}
1888
1889
	/**
1890
	 * Get the t r s aff prod chim.
1891
	 *
1892
	 * @return string Returns the t r s aff prod chim.
1893
	 */
1894
	public function getTRSAffProdChim() {
1895
		return $this->tRSAffProdChim;
1896
	}
1897
1898
	/**
1899
	 * Get the t r s aff refri.
1900
	 *
1901
	 * @return string Returns the t r s aff refri.
1902
	 */
1903
	public function getTRSAffRefri() {
1904
		return $this->tRSAffRefri;
1905
	}
1906
1907
	/**
1908
	 * Get the t r s code tarif.
1909
	 *
1910
	 * @return string Returns the t r s code tarif.
1911
	 */
1912
	public function getTRSCodeTarif() {
1913
		return $this->tRSCodeTarif;
1914
	}
1915
1916
	/**
1917
	 * Get the t r s est un affrete.
1918
	 *
1919
	 * @return string Returns the t r s est un affrete.
1920
	 */
1921
	public function getTRSEstUnAffrete() {
1922
		return $this->tRSEstUnAffrete;
1923
	}
1924
1925
	/**
1926
	 * Get the t r s gestion palettes.
1927
	 *
1928
	 * @return boolean Returns the t r s gestion palettes.
1929
	 */
1930
	public function getTRSGestionPalettes() {
1931
		return $this->tRSGestionPalettes;
1932
	}
1933
1934
	/**
1935
	 * Get the t r s p cent px trs.
1936
	 *
1937
	 * @return float Returns the t r s p cent px trs.
1938
	 */
1939
	public function getTRSPCentPxTrs() {
1940
		return $this->tRSPCentPxTrs;
1941
	}
1942
1943
	/**
1944
	 * Get the t r s suivi planing aff.
1945
	 *
1946
	 * @return boolean Returns the t r s suivi planing aff.
1947
	 */
1948
	public function getTRSSuiviPlaningAff() {
1949
		return $this->tRSSuiviPlaningAff;
1950
	}
1951
1952
	/**
1953
	 * Get the t v a regime.
1954
	 *
1955
	 * @return string Returns the t v a regime.
1956
	 */
1957
	public function getTVARegime() {
1958
		return $this->tVARegime;
1959
	}
1960
1961
	/**
1962
	 * Get the taux comm.
1963
	 *
1964
	 * @return float Returns the taux comm.
1965
	 */
1966
	public function getTauxComm() {
1967
		return $this->tauxComm;
1968
	}
1969
1970
	/**
1971
	 * Get the taux escompte.
1972
	 *
1973
	 * @return float Returns the taux escompte.
1974
	 */
1975
	public function getTauxEscompte() {
1976
		return $this->tauxEscompte;
1977
	}
1978
1979
	/**
1980
	 * Get the toutes activites.
1981
	 *
1982
	 * @return string Returns the toutes activites.
1983
	 */
1984
	public function getToutesActivites() {
1985
		return $this->toutesActivites;
1986
	}
1987
1988
	/**
1989
	 * Get the transporteur.
1990
	 *
1991
	 * @return string Returns the transporteur.
1992
	 */
1993
	public function getTransporteur() {
1994
		return $this->transporteur;
1995
	}
1996
1997
	/**
1998
	 * Get the type edit b r.
1999
	 *
2000
	 * @return string Returns the type edit b r.
2001
	 */
2002
	public function getTypeEditBR() {
2003
		return $this->typeEditBR;
2004
	}
2005
2006
	/**
2007
	 * Get the type fournisseur.
2008
	 *
2009
	 * @return string Returns the type fournisseur.
2010
	 */
2011
	public function getTypeFournisseur() {
2012
		return $this->typeFournisseur;
2013
	}
2014
2015
	/**
2016
	 * Set the adresse site fournisseur.
2017
	 *
2018
	 * @param string $adresseSiteFournisseur The adresse site fournisseur.
2019
	 * @return Fournisseurs Returns this fournisseurs.
2020
	 */
2021
	public function setAdresseSiteFournisseur($adresseSiteFournisseur) {
2022
		$this->adresseSiteFournisseur = $adresseSiteFournisseur;
2023
		return $this;
2024
	}
2025
2026
	/**
2027
	 * Set the article port1.
2028
	 *
2029
	 * @param string $articlePort1 The article port1.
2030
	 * @return Fournisseurs Returns this fournisseurs.
2031
	 */
2032
	public function setArticlePort1($articlePort1) {
2033
		$this->articlePort1 = $articlePort1;
2034
		return $this;
2035
	}
2036
2037
	/**
2038
	 * Set the article port2.
2039
	 *
2040
	 * @param string $articlePort2 The article port2.
2041
	 * @return Fournisseurs Returns this fournisseurs.
2042
	 */
2043
	public function setArticlePort2($articlePort2) {
2044
		$this->articlePort2 = $articlePort2;
2045
		return $this;
2046
	}
2047
2048
	/**
2049
	 * Set the bloque.
2050
	 *
2051
	 * @param boolean $bloque The bloque.
2052
	 * @return Fournisseurs Returns this fournisseurs.
2053
	 */
2054
	public function setBloque($bloque) {
2055
		$this->bloque = $bloque;
2056
		return $this;
2057
	}
2058
2059
	/**
2060
	 * Set the chiffre affaire.
2061
	 *
2062
	 * @param float $chiffreAffaire The chiffre affaire.
2063
	 * @return Fournisseurs Returns this fournisseurs.
2064
	 */
2065
	public function setChiffreAffaire($chiffreAffaire) {
2066
		$this->chiffreAffaire = $chiffreAffaire;
2067
		return $this;
2068
	}
2069
2070
	/**
2071
	 * Set the code.
2072
	 *
2073
	 * @param string $code The code.
2074
	 * @return Fournisseurs Returns this fournisseurs.
2075
	 */
2076
	public function setCode($code) {
2077
		$this->code = $code;
2078
		return $this;
2079
	}
2080
2081
	/**
2082
	 * Set the code activite.
2083
	 *
2084
	 * @param string $codeActivite The code activite.
2085
	 * @return Fournisseurs Returns this fournisseurs.
2086
	 */
2087
	public function setCodeActivite($codeActivite) {
2088
		$this->codeActivite = $codeActivite;
2089
		return $this;
2090
	}
2091
2092
	/**
2093
	 * Set the code assistant juridique.
2094
	 *
2095
	 * @param string $codeAssistantJuridique The code assistant juridique.
2096
	 * @return Fournisseurs Returns this fournisseurs.
2097
	 */
2098
	public function setCodeAssistantJuridique($codeAssistantJuridique) {
2099
		$this->codeAssistantJuridique = $codeAssistantJuridique;
2100
		return $this;
2101
	}
2102
2103
	/**
2104
	 * Set the code assistant social.
2105
	 *
2106
	 * @param string $codeAssistantSocial The code assistant social.
2107
	 * @return Fournisseurs Returns this fournisseurs.
2108
	 */
2109
	public function setCodeAssistantSocial($codeAssistantSocial) {
2110
		$this->codeAssistantSocial = $codeAssistantSocial;
2111
		return $this;
2112
	}
2113
2114
	/**
2115
	 * Set the code autre1.
2116
	 *
2117
	 * @param string $codeAutre1 The code autre1.
2118
	 * @return Fournisseurs Returns this fournisseurs.
2119
	 */
2120
	public function setCodeAutre1($codeAutre1) {
2121
		$this->codeAutre1 = $codeAutre1;
2122
		return $this;
2123
	}
2124
2125
	/**
2126
	 * Set the code autre2.
2127
	 *
2128
	 * @param string $codeAutre2 The code autre2.
2129
	 * @return Fournisseurs Returns this fournisseurs.
2130
	 */
2131
	public function setCodeAutre2($codeAutre2) {
2132
		$this->codeAutre2 = $codeAutre2;
2133
		return $this;
2134
	}
2135
2136
	/**
2137
	 * Set the code avocat.
2138
	 *
2139
	 * @param string $codeAvocat The code avocat.
2140
	 * @return Fournisseurs Returns this fournisseurs.
2141
	 */
2142
	public function setCodeAvocat($codeAvocat) {
2143
		$this->codeAvocat = $codeAvocat;
2144
		return $this;
2145
	}
2146
2147
	/**
2148
	 * Set the code barre.
2149
	 *
2150
	 * @param boolean $codeBarre The code barre.
2151
	 * @return Fournisseurs Returns this fournisseurs.
2152
	 */
2153
	public function setCodeBarre($codeBarre) {
2154
		$this->codeBarre = $codeBarre;
2155
		return $this;
2156
	}
2157
2158
	/**
2159
	 * Set the code categorie fournisseur.
2160
	 *
2161
	 * @param string $codeCategorieFournisseur The code categorie fournisseur.
2162
	 * @return Fournisseurs Returns this fournisseurs.
2163
	 */
2164
	public function setCodeCategorieFournisseur($codeCategorieFournisseur) {
2165
		$this->codeCategorieFournisseur = $codeCategorieFournisseur;
2166
		return $this;
2167
	}
2168
2169
	/**
2170
	 * Set the code collaborateur.
2171
	 *
2172
	 * @param string $codeCollaborateur The code collaborateur.
2173
	 * @return Fournisseurs Returns this fournisseurs.
2174
	 */
2175
	public function setCodeCollaborateur($codeCollaborateur) {
2176
		$this->codeCollaborateur = $codeCollaborateur;
2177
		return $this;
2178
	}
2179
2180
	/**
2181
	 * Set the code depot.
2182
	 *
2183
	 * @param string $codeDepot The code depot.
2184
	 * @return Fournisseurs Returns this fournisseurs.
2185
	 */
2186
	public function setCodeDepot($codeDepot) {
2187
		$this->codeDepot = $codeDepot;
2188
		return $this;
2189
	}
2190
2191
	/**
2192
	 * Set the code devise.
2193
	 *
2194
	 * @param string $codeDevise The code devise.
2195
	 * @return Fournisseurs Returns this fournisseurs.
2196
	 */
2197
	public function setCodeDevise($codeDevise) {
2198
		$this->codeDevise = $codeDevise;
2199
		return $this;
2200
	}
2201
2202
	/**
2203
	 * Set the code edition fact.
2204
	 *
2205
	 * @param string $codeEditionFact The code edition fact.
2206
	 * @return Fournisseurs Returns this fournisseurs.
2207
	 */
2208
	public function setCodeEditionFact($codeEditionFact) {
2209
		$this->codeEditionFact = $codeEditionFact;
2210
		return $this;
2211
	}
2212
2213
	/**
2214
	 * Set the code exc.
2215
	 *
2216
	 * @param string $codeExc The code exc.
2217
	 * @return Fournisseurs Returns this fournisseurs.
2218
	 */
2219
	public function setCodeExc($codeExc) {
2220
		$this->codeExc = $codeExc;
2221
		return $this;
2222
	}
2223
2224
	/**
2225
	 * Set the code expert.
2226
	 *
2227
	 * @param string $codeExpert The code expert.
2228
	 * @return Fournisseurs Returns this fournisseurs.
2229
	 */
2230
	public function setCodeExpert($codeExpert) {
2231
		$this->codeExpert = $codeExpert;
2232
		return $this;
2233
	}
2234
2235
	/**
2236
	 * Set the code famille.
2237
	 *
2238
	 * @param string $codeFamille The code famille.
2239
	 * @return Fournisseurs Returns this fournisseurs.
2240
	 */
2241
	public function setCodeFamille($codeFamille) {
2242
		$this->codeFamille = $codeFamille;
2243
		return $this;
2244
	}
2245
2246
	/**
2247
	 * Set the code geo.
2248
	 *
2249
	 * @param string $codeGeo The code geo.
2250
	 * @return Fournisseurs Returns this fournisseurs.
2251
	 */
2252
	public function setCodeGeo($codeGeo) {
2253
		$this->codeGeo = $codeGeo;
2254
		return $this;
2255
	}
2256
2257
	/**
2258
	 * Set the code imputation analytique.
2259
	 *
2260
	 * @param string $codeImputationAnalytique The code imputation analytique.
2261
	 * @return Fournisseurs Returns this fournisseurs.
2262
	 */
2263
	public function setCodeImputationAnalytique($codeImputationAnalytique) {
2264
		$this->codeImputationAnalytique = $codeImputationAnalytique;
2265
		return $this;
2266
	}
2267
2268
	/**
2269
	 * Set the code langue designation article.
2270
	 *
2271
	 * @param string $codeLangueDesignationArticle The code langue designation article.
2272
	 * @return Fournisseurs Returns this fournisseurs.
2273
	 */
2274
	public function setCodeLangueDesignationArticle($codeLangueDesignationArticle) {
2275
		$this->codeLangueDesignationArticle = $codeLangueDesignationArticle;
2276
		return $this;
2277
	}
2278
2279
	/**
2280
	 * Set the code origine.
2281
	 *
2282
	 * @param string $codeOrigine The code origine.
2283
	 * @return Fournisseurs Returns this fournisseurs.
2284
	 */
2285
	public function setCodeOrigine($codeOrigine) {
2286
		$this->codeOrigine = $codeOrigine;
2287
		return $this;
2288
	}
2289
2290
	/**
2291
	 * Set the code portefeuille.
2292
	 *
2293
	 * @param string $codePortefeuille The code portefeuille.
2294
	 * @return Fournisseurs Returns this fournisseurs.
2295
	 */
2296
	public function setCodePortefeuille($codePortefeuille) {
2297
		$this->codePortefeuille = $codePortefeuille;
2298
		return $this;
2299
	}
2300
2301
	/**
2302
	 * Set the code reglement.
2303
	 *
2304
	 * @param string $codeReglement The code reglement.
2305
	 * @return Fournisseurs Returns this fournisseurs.
2306
	 */
2307
	public function setCodeReglement($codeReglement) {
2308
		$this->codeReglement = $codeReglement;
2309
		return $this;
2310
	}
2311
2312
	/**
2313
	 * Set the code regroupement.
2314
	 *
2315
	 * @param string $codeRegroupement The code regroupement.
2316
	 * @return Fournisseurs Returns this fournisseurs.
2317
	 */
2318
	public function setCodeRegroupement($codeRegroupement) {
2319
		$this->codeRegroupement = $codeRegroupement;
2320
		return $this;
2321
	}
2322
2323
	/**
2324
	 * Set the code sous famille.
2325
	 *
2326
	 * @param string $codeSousFamille The code sous famille.
2327
	 * @return Fournisseurs Returns this fournisseurs.
2328
	 */
2329
	public function setCodeSousFamille($codeSousFamille) {
2330
		$this->codeSousFamille = $codeSousFamille;
2331
		return $this;
2332
	}
2333
2334
	/**
2335
	 * Set the code t v a.
2336
	 *
2337
	 * @param string $codeTVA The code t v a.
2338
	 * @return Fournisseurs Returns this fournisseurs.
2339
	 */
2340
	public function setCodeTVA($codeTVA) {
2341
		$this->codeTVA = $codeTVA;
2342
		return $this;
2343
	}
2344
2345
	/**
2346
	 * Set the code transporteur.
2347
	 *
2348
	 * @param string $codeTransporteur The code transporteur.
2349
	 * @return Fournisseurs Returns this fournisseurs.
2350
	 */
2351
	public function setCodeTransporteur($codeTransporteur) {
2352
		$this->codeTransporteur = $codeTransporteur;
2353
		return $this;
2354
	}
2355
2356
	/**
2357
	 * Set the code ventil compta.
2358
	 *
2359
	 * @param string $codeVentilCompta The code ventil compta.
2360
	 * @return Fournisseurs Returns this fournisseurs.
2361
	 */
2362
	public function setCodeVentilCompta($codeVentilCompta) {
2363
		$this->codeVentilCompta = $codeVentilCompta;
2364
		return $this;
2365
	}
2366
2367
	/**
2368
	 * Set the collectif.
2369
	 *
2370
	 * @param string $collectif The collectif.
2371
	 * @return Fournisseurs Returns this fournisseurs.
2372
	 */
2373
	public function setCollectif($collectif) {
2374
		$this->collectif = $collectif;
2375
		return $this;
2376
	}
2377
2378
	/**
2379
	 * Set the compte de vente.
2380
	 *
2381
	 * @param boolean $compteDeVente The compte de vente.
2382
	 * @return Fournisseurs Returns this fournisseurs.
2383
	 */
2384
	public function setCompteDeVente($compteDeVente) {
2385
		$this->compteDeVente = $compteDeVente;
2386
		return $this;
2387
	}
2388
2389
	/**
2390
	 * Set the d s code collab.
2391
	 *
2392
	 * @param string $dSCodeCollab The d s code collab.
2393
	 * @return Fournisseurs Returns this fournisseurs.
2394
	 */
2395
	public function setDSCodeCollab($dSCodeCollab) {
2396
		$this->dSCodeCollab = $dSCodeCollab;
2397
		return $this;
2398
	}
2399
2400
	/**
2401
	 * Set the d s date retour.
2402
	 *
2403
	 * @param DateTime $dSDateRetour The d s date retour.
2404
	 * @return Fournisseurs Returns this fournisseurs.
2405
	 */
2406
	public function setDSDateRetour(DateTime $dSDateRetour = null) {
2407
		$this->dSDateRetour = $dSDateRetour;
2408
		return $this;
2409
	}
2410
2411
	/**
2412
	 * Set the d s date sortie.
2413
	 *
2414
	 * @param DateTime $dSDateSortie The d s date sortie.
2415
	 * @return Fournisseurs Returns this fournisseurs.
2416
	 */
2417
	public function setDSDateSortie(DateTime $dSDateSortie = null) {
2418
		$this->dSDateSortie = $dSDateSortie;
2419
		return $this;
2420
	}
2421
2422
	/**
2423
	 * Set the date creation.
2424
	 *
2425
	 * @param DateTime $dateCreation The date creation.
2426
	 * @return Fournisseurs Returns this fournisseurs.
2427
	 */
2428
	public function setDateCreation(DateTime $dateCreation = null) {
2429
		$this->dateCreation = $dateCreation;
2430
		return $this;
2431
	}
2432
2433
	/**
2434
	 * Set the date entree.
2435
	 *
2436
	 * @param DateTime $dateEntree The date entree.
2437
	 * @return Fournisseurs Returns this fournisseurs.
2438
	 */
2439
	public function setDateEntree(DateTime $dateEntree = null) {
2440
		$this->dateEntree = $dateEntree;
2441
		return $this;
2442
	}
2443
2444
	/**
2445
	 * Set the date modification.
2446
	 *
2447
	 * @param DateTime $dateModification The date modification.
2448
	 * @return Fournisseurs Returns this fournisseurs.
2449
	 */
2450
	public function setDateModification(DateTime $dateModification = null) {
2451
		$this->dateModification = $dateModification;
2452
		return $this;
2453
	}
2454
2455
	/**
2456
	 * Set the date sortie.
2457
	 *
2458
	 * @param DateTime $dateSortie The date sortie.
2459
	 * @return Fournisseurs Returns this fournisseurs.
2460
	 */
2461
	public function setDateSortie(DateTime $dateSortie = null) {
2462
		$this->dateSortie = $dateSortie;
2463
		return $this;
2464
	}
2465
2466
	/**
2467
	 * Set the delai.
2468
	 *
2469
	 * @param float $delai The delai.
2470
	 * @return Fournisseurs Returns this fournisseurs.
2471
	 */
2472
	public function setDelai($delai) {
2473
		$this->delai = $delai;
2474
		return $this;
2475
	}
2476
2477
	/**
2478
	 * Set the domiciliation bancaire1.
2479
	 *
2480
	 * @param string $domiciliationBancaire1 The domiciliation bancaire1.
2481
	 * @return Fournisseurs Returns this fournisseurs.
2482
	 */
2483
	public function setDomiciliationBancaire1($domiciliationBancaire1) {
2484
		$this->domiciliationBancaire1 = $domiciliationBancaire1;
2485
		return $this;
2486
	}
2487
2488
	/**
2489
	 * Set the domiciliation bancaire2.
2490
	 *
2491
	 * @param string $domiciliationBancaire2 The domiciliation bancaire2.
2492
	 * @return Fournisseurs Returns this fournisseurs.
2493
	 */
2494
	public function setDomiciliationBancaire2($domiciliationBancaire2) {
2495
		$this->domiciliationBancaire2 = $domiciliationBancaire2;
2496
		return $this;
2497
	}
2498
2499
	/**
2500
	 * Set the dossier comptable.
2501
	 *
2502
	 * @param string $dossierComptable The dossier comptable.
2503
	 * @return Fournisseurs Returns this fournisseurs.
2504
	 */
2505
	public function setDossierComptable($dossierComptable) {
2506
		$this->dossierComptable = $dossierComptable;
2507
		return $this;
2508
	}
2509
2510
	/**
2511
	 * Set the dossier paie.
2512
	 *
2513
	 * @param string $dossierPaie The dossier paie.
2514
	 * @return Fournisseurs Returns this fournisseurs.
2515
	 */
2516
	public function setDossierPaie($dossierPaie) {
2517
		$this->dossierPaie = $dossierPaie;
2518
		return $this;
2519
	}
2520
2521
	/**
2522
	 * Set the e a n frn.
2523
	 *
2524
	 * @param string $eANFrn The e a n frn.
2525
	 * @return Fournisseurs Returns this fournisseurs.
2526
	 */
2527
	public function setEANFrn($eANFrn) {
2528
		$this->eANFrn = $eANFrn;
2529
		return $this;
2530
	}
2531
2532
	/**
2533
	 * Set the echeance fin decade.
2534
	 *
2535
	 * @param boolean $echeanceFinDecade The echeance fin decade.
2536
	 * @return Fournisseurs Returns this fournisseurs.
2537
	 */
2538
	public function setEcheanceFinDecade($echeanceFinDecade) {
2539
		$this->echeanceFinDecade = $echeanceFinDecade;
2540
		return $this;
2541
	}
2542
2543
	/**
2544
	 * Set the echeance fin quinzaine.
2545
	 *
2546
	 * @param boolean $echeanceFinQuinzaine The echeance fin quinzaine.
2547
	 * @return Fournisseurs Returns this fournisseurs.
2548
	 */
2549
	public function setEcheanceFinQuinzaine($echeanceFinQuinzaine) {
2550
		$this->echeanceFinQuinzaine = $echeanceFinQuinzaine;
2551
		return $this;
2552
	}
2553
2554
	/**
2555
	 * Set the etat1.
2556
	 *
2557
	 * @param string $etat1 The etat1.
2558
	 * @return Fournisseurs Returns this fournisseurs.
2559
	 */
2560
	public function setEtat1($etat1) {
2561
		$this->etat1 = $etat1;
2562
		return $this;
2563
	}
2564
2565
	/**
2566
	 * Set the etat2.
2567
	 *
2568
	 * @param string $etat2 The etat2.
2569
	 * @return Fournisseurs Returns this fournisseurs.
2570
	 */
2571
	public function setEtat2($etat2) {
2572
		$this->etat2 = $etat2;
2573
		return $this;
2574
	}
2575
2576
	/**
2577
	 * Set the etat3.
2578
	 *
2579
	 * @param string $etat3 The etat3.
2580
	 * @return Fournisseurs Returns this fournisseurs.
2581
	 */
2582
	public function setEtat3($etat3) {
2583
		$this->etat3 = $etat3;
2584
		return $this;
2585
	}
2586
2587
	/**
2588
	 * Set the etat4.
2589
	 *
2590
	 * @param string $etat4 The etat4.
2591
	 * @return Fournisseurs Returns this fournisseurs.
2592
	 */
2593
	public function setEtat4($etat4) {
2594
		$this->etat4 = $etat4;
2595
		return $this;
2596
	}
2597
2598
	/**
2599
	 * Set the etat5.
2600
	 *
2601
	 * @param string $etat5 The etat5.
2602
	 * @return Fournisseurs Returns this fournisseurs.
2603
	 */
2604
	public function setEtat5($etat5) {
2605
		$this->etat5 = $etat5;
2606
		return $this;
2607
	}
2608
2609
	/**
2610
	 * Set the etiquettes.
2611
	 *
2612
	 * @param boolean $etiquettes The etiquettes.
2613
	 * @return Fournisseurs Returns this fournisseurs.
2614
	 */
2615
	public function setEtiquettes($etiquettes) {
2616
		$this->etiquettes = $etiquettes;
2617
		return $this;
2618
	}
2619
2620
	/**
2621
	 * Set the facture euros.
2622
	 *
2623
	 * @param boolean $factureEuros The facture euros.
2624
	 * @return Fournisseurs Returns this fournisseurs.
2625
	 */
2626
	public function setFactureEuros($factureEuros) {
2627
		$this->factureEuros = $factureEuros;
2628
		return $this;
2629
	}
2630
2631
	/**
2632
	 * Set the facture isolee.
2633
	 *
2634
	 * @param boolean $factureIsolee The facture isolee.
2635
	 * @return Fournisseurs Returns this fournisseurs.
2636
	 */
2637
	public function setFactureIsolee($factureIsolee) {
2638
		$this->factureIsolee = $factureIsolee;
2639
		return $this;
2640
	}
2641
2642
	/**
2643
	 * Set the frais fixes1.
2644
	 *
2645
	 * @param boolean $fraisFixes1 The frais fixes1.
2646
	 * @return Fournisseurs Returns this fournisseurs.
2647
	 */
2648
	public function setFraisFixes1($fraisFixes1) {
2649
		$this->fraisFixes1 = $fraisFixes1;
2650
		return $this;
2651
	}
2652
2653
	/**
2654
	 * Set the frais fixes2.
2655
	 *
2656
	 * @param boolean $fraisFixes2 The frais fixes2.
2657
	 * @return Fournisseurs Returns this fournisseurs.
2658
	 */
2659
	public function setFraisFixes2($fraisFixes2) {
2660
		$this->fraisFixes2 = $fraisFixes2;
2661
		return $this;
2662
	}
2663
2664
	/**
2665
	 * Set the franco port1.
2666
	 *
2667
	 * @param float $francoPort1 The franco port1.
2668
	 * @return Fournisseurs Returns this fournisseurs.
2669
	 */
2670
	public function setFrancoPort1($francoPort1) {
2671
		$this->francoPort1 = $francoPort1;
2672
		return $this;
2673
	}
2674
2675
	/**
2676
	 * Set the franco port2.
2677
	 *
2678
	 * @param float $francoPort2 The franco port2.
2679
	 * @return Fournisseurs Returns this fournisseurs.
2680
	 */
2681
	public function setFrancoPort2($francoPort2) {
2682
		$this->francoPort2 = $francoPort2;
2683
		return $this;
2684
	}
2685
2686
	/**
2687
	 * Set the i g p.
2688
	 *
2689
	 * @param boolean $iGP The i g p.
2690
	 * @return Fournisseurs Returns this fournisseurs.
2691
	 */
2692
	public function setIGP($iGP) {
2693
		$this->iGP = $iGP;
2694
		return $this;
2695
	}
2696
2697
	/**
2698
	 * Set the identifiant t v a.
2699
	 *
2700
	 * @param string $identifiantTVA The identifiant t v a.
2701
	 * @return Fournisseurs Returns this fournisseurs.
2702
	 */
2703
	public function setIdentifiantTVA($identifiantTVA) {
2704
		$this->identifiantTVA = $identifiantTVA;
2705
		return $this;
2706
	}
2707
2708
	/**
2709
	 * Set the insp.
2710
	 *
2711
	 * @param string $insp The insp.
2712
	 * @return Fournisseurs Returns this fournisseurs.
2713
	 */
2714
	public function setInsp($insp) {
2715
		$this->insp = $insp;
2716
		return $this;
2717
	}
2718
2719
	/**
2720
	 * Set the mission sur dossier.
2721
	 *
2722
	 * @param int $missionSurDossier The mission sur dossier.
2723
	 * @return Fournisseurs Returns this fournisseurs.
2724
	 */
2725
	public function setMissionSurDossier($missionSurDossier) {
2726
		$this->missionSurDossier = $missionSurDossier;
2727
		return $this;
2728
	}
2729
2730
	/**
2731
	 * Set the modele b r.
2732
	 *
2733
	 * @param string $modeleBR The modele b r.
2734
	 * @return Fournisseurs Returns this fournisseurs.
2735
	 */
2736
	public function setModeleBR($modeleBR) {
2737
		$this->modeleBR = $modeleBR;
2738
		return $this;
2739
	}
2740
2741
	/**
2742
	 * Set the modele commande.
2743
	 *
2744
	 * @param string $modeleCommande The modele commande.
2745
	 * @return Fournisseurs Returns this fournisseurs.
2746
	 */
2747
	public function setModeleCommande($modeleCommande) {
2748
		$this->modeleCommande = $modeleCommande;
2749
		return $this;
2750
	}
2751
2752
	/**
2753
	 * Set the modele facture.
2754
	 *
2755
	 * @param string $modeleFacture The modele facture.
2756
	 * @return Fournisseurs Returns this fournisseurs.
2757
	 */
2758
	public function setModeleFacture($modeleFacture) {
2759
		$this->modeleFacture = $modeleFacture;
2760
		return $this;
2761
	}
2762
2763
	/**
2764
	 * Set the modele releve.
2765
	 *
2766
	 * @param string $modeleReleve The modele releve.
2767
	 * @return Fournisseurs Returns this fournisseurs.
2768
	 */
2769
	public function setModeleReleve($modeleReleve) {
2770
		$this->modeleReleve = $modeleReleve;
2771
		return $this;
2772
	}
2773
2774
	/**
2775
	 * Set the montant franco.
2776
	 *
2777
	 * @param float $montantFranco The montant franco.
2778
	 * @return Fournisseurs Returns this fournisseurs.
2779
	 */
2780
	public function setMontantFranco($montantFranco) {
2781
		$this->montantFranco = $montantFranco;
2782
		return $this;
2783
	}
2784
2785
	/**
2786
	 * Set the montant mini cde.
2787
	 *
2788
	 * @param float $montantMiniCde The montant mini cde.
2789
	 * @return Fournisseurs Returns this fournisseurs.
2790
	 */
2791
	public function setMontantMiniCde($montantMiniCde) {
2792
		$this->montantMiniCde = $montantMiniCde;
2793
		return $this;
2794
	}
2795
2796
	/**
2797
	 * Set the montant port liv.
2798
	 *
2799
	 * @param float $montantPortLiv The montant port liv.
2800
	 * @return Fournisseurs Returns this fournisseurs.
2801
	 */
2802
	public function setMontantPortLiv($montantPortLiv) {
2803
		$this->montantPortLiv = $montantPortLiv;
2804
		return $this;
2805
	}
2806
2807
	/**
2808
	 * Set the nb b r.
2809
	 *
2810
	 * @param string $nbBR The nb b r.
2811
	 * @return Fournisseurs Returns this fournisseurs.
2812
	 */
2813
	public function setNbBR($nbBR) {
2814
		$this->nbBR = $nbBR;
2815
		return $this;
2816
	}
2817
2818
	/**
2819
	 * Set the nb commande.
2820
	 *
2821
	 * @param string $nbCommande The nb commande.
2822
	 * @return Fournisseurs Returns this fournisseurs.
2823
	 */
2824
	public function setNbCommande($nbCommande) {
2825
		$this->nbCommande = $nbCommande;
2826
		return $this;
2827
	}
2828
2829
	/**
2830
	 * Set the nb facture.
2831
	 *
2832
	 * @param string $nbFacture The nb facture.
2833
	 * @return Fournisseurs Returns this fournisseurs.
2834
	 */
2835
	public function setNbFacture($nbFacture) {
2836
		$this->nbFacture = $nbFacture;
2837
		return $this;
2838
	}
2839
2840
	/**
2841
	 * Set the nb jour interval.
2842
	 *
2843
	 * @param int $nbJourInterval The nb jour interval.
2844
	 * @return Fournisseurs Returns this fournisseurs.
2845
	 */
2846
	public function setNbJourInterval($nbJourInterval) {
2847
		$this->nbJourInterval = $nbJourInterval;
2848
		return $this;
2849
	}
2850
2851
	/**
2852
	 * Set the nb max b r.
2853
	 *
2854
	 * @param string $nbMaxBR The nb max b r.
2855
	 * @return Fournisseurs Returns this fournisseurs.
2856
	 */
2857
	public function setNbMaxBR($nbMaxBR) {
2858
		$this->nbMaxBR = $nbMaxBR;
2859
		return $this;
2860
	}
2861
2862
	/**
2863
	 * Set the nb releve.
2864
	 *
2865
	 * @param string $nbReleve The nb releve.
2866
	 * @return Fournisseurs Returns this fournisseurs.
2867
	 */
2868
	public function setNbReleve($nbReleve) {
2869
		$this->nbReleve = $nbReleve;
2870
		return $this;
2871
	}
2872
2873
	/**
2874
	 * Set the nombre echeances.
2875
	 *
2876
	 * @param string $nombreEcheances The nombre echeances.
2877
	 * @return Fournisseurs Returns this fournisseurs.
2878
	 */
2879
	public function setNombreEcheances($nombreEcheances) {
2880
		$this->nombreEcheances = $nombreEcheances;
2881
		return $this;
2882
	}
2883
2884
	/**
2885
	 * Set the num facture f.
2886
	 *
2887
	 * @param int $numFactureF The num facture f.
2888
	 * @return Fournisseurs Returns this fournisseurs.
2889
	 */
2890
	public function setNumFactureF($numFactureF) {
2891
		$this->numFactureF = $numFactureF;
2892
		return $this;
2893
	}
2894
2895
	/**
2896
	 * Set the numero compte.
2897
	 *
2898
	 * @param string $numeroCompte The numero compte.
2899
	 * @return Fournisseurs Returns this fournisseurs.
2900
	 */
2901
	public function setNumeroCompte($numeroCompte) {
2902
		$this->numeroCompte = $numeroCompte;
2903
		return $this;
2904
	}
2905
2906
	/**
2907
	 * Set the observation1.
2908
	 *
2909
	 * @param string $observation1 The observation1.
2910
	 * @return Fournisseurs Returns this fournisseurs.
2911
	 */
2912
	public function setObservation1($observation1) {
2913
		$this->observation1 = $observation1;
2914
		return $this;
2915
	}
2916
2917
	/**
2918
	 * Set the observation2.
2919
	 *
2920
	 * @param string $observation2 The observation2.
2921
	 * @return Fournisseurs Returns this fournisseurs.
2922
	 */
2923
	public function setObservation2($observation2) {
2924
		$this->observation2 = $observation2;
2925
		return $this;
2926
	}
2927
2928
	/**
2929
	 * Set the paiement depart le.
2930
	 *
2931
	 * @param int $paiementDepartLe The paiement depart le.
2932
	 * @return Fournisseurs Returns this fournisseurs.
2933
	 */
2934
	public function setPaiementDepartLe($paiementDepartLe) {
2935
		$this->paiementDepartLe = $paiementDepartLe;
2936
		return $this;
2937
	}
2938
2939
	/**
2940
	 * Set the paiement le.
2941
	 *
2942
	 * @param string $paiementLe The paiement le.
2943
	 * @return Fournisseurs Returns this fournisseurs.
2944
	 */
2945
	public function setPaiementLe($paiementLe) {
2946
		$this->paiementLe = $paiementLe;
2947
		return $this;
2948
	}
2949
2950
	/**
2951
	 * Set the paiement nombre de jours.
2952
	 *
2953
	 * @param int $paiementNombreDeJours The paiement nombre de jours.
2954
	 * @return Fournisseurs Returns this fournisseurs.
2955
	 */
2956
	public function setPaiementNombreDeJours($paiementNombreDeJours) {
2957
		$this->paiementNombreDeJours = $paiementNombreDeJours;
2958
		return $this;
2959
	}
2960
2961
	/**
2962
	 * Set the prefixe facture f.
2963
	 *
2964
	 * @param string $prefixeFactureF The prefixe facture f.
2965
	 * @return Fournisseurs Returns this fournisseurs.
2966
	 */
2967
	public function setPrefixeFactureF($prefixeFactureF) {
2968
		$this->prefixeFactureF = $prefixeFactureF;
2969
		return $this;
2970
	}
2971
2972
	/**
2973
	 * Set the r i b.
2974
	 *
2975
	 * @param string $rIB The r i b.
2976
	 * @return Fournisseurs Returns this fournisseurs.
2977
	 */
2978
	public function setRIB($rIB) {
2979
		$this->rIB = $rIB;
2980
		return $this;
2981
	}
2982
2983
	/**
2984
	 * Set the regime.
2985
	 *
2986
	 * @param string $regime The regime.
2987
	 * @return Fournisseurs Returns this fournisseurs.
2988
	 */
2989
	public function setRegime($regime) {
2990
		$this->regime = $regime;
2991
		return $this;
2992
	}
2993
2994
	/**
2995
	 * Set the regroupement fact.
2996
	 *
2997
	 * @param string $regroupementFact The regroupement fact.
2998
	 * @return Fournisseurs Returns this fournisseurs.
2999
	 */
3000
	public function setRegroupementFact($regroupementFact) {
3001
		$this->regroupementFact = $regroupementFact;
3002
		return $this;
3003
	}
3004
3005
	/**
3006
	 * Set the releve facture.
3007
	 *
3008
	 * @param boolean $releveFacture The releve facture.
3009
	 * @return Fournisseurs Returns this fournisseurs.
3010
	 */
3011
	public function setReleveFacture($releveFacture) {
3012
		$this->releveFacture = $releveFacture;
3013
		return $this;
3014
	}
3015
3016
	/**
3017
	 * Set the remise ligne1.
3018
	 *
3019
	 * @param float $remiseLigne1 The remise ligne1.
3020
	 * @return Fournisseurs Returns this fournisseurs.
3021
	 */
3022
	public function setRemiseLigne1($remiseLigne1) {
3023
		$this->remiseLigne1 = $remiseLigne1;
3024
		return $this;
3025
	}
3026
3027
	/**
3028
	 * Set the remise ligne2.
3029
	 *
3030
	 * @param float $remiseLigne2 The remise ligne2.
3031
	 * @return Fournisseurs Returns this fournisseurs.
3032
	 */
3033
	public function setRemiseLigne2($remiseLigne2) {
3034
		$this->remiseLigne2 = $remiseLigne2;
3035
		return $this;
3036
	}
3037
3038
	/**
3039
	 * Set the remise ligne3.
3040
	 *
3041
	 * @param float $remiseLigne3 The remise ligne3.
3042
	 * @return Fournisseurs Returns this fournisseurs.
3043
	 */
3044
	public function setRemiseLigne3($remiseLigne3) {
3045
		$this->remiseLigne3 = $remiseLigne3;
3046
		return $this;
3047
	}
3048
3049
	/**
3050
	 * Set the remise pied.
3051
	 *
3052
	 * @param float $remisePied The remise pied.
3053
	 * @return Fournisseurs Returns this fournisseurs.
3054
	 */
3055
	public function setRemisePied($remisePied) {
3056
		$this->remisePied = $remisePied;
3057
		return $this;
3058
	}
3059
3060
	/**
3061
	 * Set the remise pied2.
3062
	 *
3063
	 * @param float $remisePied2 The remise pied2.
3064
	 * @return Fournisseurs Returns this fournisseurs.
3065
	 */
3066
	public function setRemisePied2($remisePied2) {
3067
		$this->remisePied2 = $remisePied2;
3068
		return $this;
3069
	}
3070
3071
	/**
3072
	 * Set the remise pied3.
3073
	 *
3074
	 * @param float $remisePied3 The remise pied3.
3075
	 * @return Fournisseurs Returns this fournisseurs.
3076
	 */
3077
	public function setRemisePied3($remisePied3) {
3078
		$this->remisePied3 = $remisePied3;
3079
		return $this;
3080
	}
3081
3082
	/**
3083
	 * Set the resultat.
3084
	 *
3085
	 * @param float $resultat The resultat.
3086
	 * @return Fournisseurs Returns this fournisseurs.
3087
	 */
3088
	public function setResultat($resultat) {
3089
		$this->resultat = $resultat;
3090
		return $this;
3091
	}
3092
3093
	/**
3094
	 * Set the siege groupe.
3095
	 *
3096
	 * @param boolean $siegeGroupe The siege groupe.
3097
	 * @return Fournisseurs Returns this fournisseurs.
3098
	 */
3099
	public function setSiegeGroupe($siegeGroupe) {
3100
		$this->siegeGroupe = $siegeGroupe;
3101
		return $this;
3102
	}
3103
3104
	/**
3105
	 * Set the soumis escompte.
3106
	 *
3107
	 * @param boolean $soumisEscompte The soumis escompte.
3108
	 * @return Fournisseurs Returns this fournisseurs.
3109
	 */
3110
	public function setSoumisEscompte($soumisEscompte) {
3111
		$this->soumisEscompte = $soumisEscompte;
3112
		return $this;
3113
	}
3114
3115
	/**
3116
	 * Set the soumis port1.
3117
	 *
3118
	 * @param string $soumisPort1 The soumis port1.
3119
	 * @return Fournisseurs Returns this fournisseurs.
3120
	 */
3121
	public function setSoumisPort1($soumisPort1) {
3122
		$this->soumisPort1 = $soumisPort1;
3123
		return $this;
3124
	}
3125
3126
	/**
3127
	 * Set the soumis port2.
3128
	 *
3129
	 * @param string $soumisPort2 The soumis port2.
3130
	 * @return Fournisseurs Returns this fournisseurs.
3131
	 */
3132
	public function setSoumisPort2($soumisPort2) {
3133
		$this->soumisPort2 = $soumisPort2;
3134
		return $this;
3135
	}
3136
3137
	/**
3138
	 * Set the soumis t v a.
3139
	 *
3140
	 * @param boolean $soumisTVA The soumis t v a.
3141
	 * @return Fournisseurs Returns this fournisseurs.
3142
	 */
3143
	public function setSoumisTVA($soumisTVA) {
3144
		$this->soumisTVA = $soumisTVA;
3145
		return $this;
3146
	}
3147
3148
	/**
3149
	 * Set the soumis taxe1.
3150
	 *
3151
	 * @param boolean $soumisTaxe1 The soumis taxe1.
3152
	 * @return Fournisseurs Returns this fournisseurs.
3153
	 */
3154
	public function setSoumisTaxe1($soumisTaxe1) {
3155
		$this->soumisTaxe1 = $soumisTaxe1;
3156
		return $this;
3157
	}
3158
3159
	/**
3160
	 * Set the soumis taxe2.
3161
	 *
3162
	 * @param boolean $soumisTaxe2 The soumis taxe2.
3163
	 * @return Fournisseurs Returns this fournisseurs.
3164
	 */
3165
	public function setSoumisTaxe2($soumisTaxe2) {
3166
		$this->soumisTaxe2 = $soumisTaxe2;
3167
		return $this;
3168
	}
3169
3170
	/**
3171
	 * Set the soumis taxe3.
3172
	 *
3173
	 * @param boolean $soumisTaxe3 The soumis taxe3.
3174
	 * @return Fournisseurs Returns this fournisseurs.
3175
	 */
3176
	public function setSoumisTaxe3($soumisTaxe3) {
3177
		$this->soumisTaxe3 = $soumisTaxe3;
3178
		return $this;
3179
	}
3180
3181
	/**
3182
	 * Set the soumis taxe4.
3183
	 *
3184
	 * @param boolean $soumisTaxe4 The soumis taxe4.
3185
	 * @return Fournisseurs Returns this fournisseurs.
3186
	 */
3187
	public function setSoumisTaxe4($soumisTaxe4) {
3188
		$this->soumisTaxe4 = $soumisTaxe4;
3189
		return $this;
3190
	}
3191
3192
	/**
3193
	 * Set the soumis taxe5.
3194
	 *
3195
	 * @param boolean $soumisTaxe5 The soumis taxe5.
3196
	 * @return Fournisseurs Returns this fournisseurs.
3197
	 */
3198
	public function setSoumisTaxe5($soumisTaxe5) {
3199
		$this->soumisTaxe5 = $soumisTaxe5;
3200
		return $this;
3201
	}
3202
3203
	/**
3204
	 * Set the t r s aff grp.
3205
	 *
3206
	 * @param boolean $tRSAffGrp The t r s aff grp.
3207
	 * @return Fournisseurs Returns this fournisseurs.
3208
	 */
3209
	public function setTRSAffGrp($tRSAffGrp) {
3210
		$this->tRSAffGrp = $tRSAffGrp;
3211
		return $this;
3212
	}
3213
3214
	/**
3215
	 * Set the t r s aff mat dang.
3216
	 *
3217
	 * @param string $tRSAffMatDang The t r s aff mat dang.
3218
	 * @return Fournisseurs Returns this fournisseurs.
3219
	 */
3220
	public function setTRSAffMatDang($tRSAffMatDang) {
3221
		$this->tRSAffMatDang = $tRSAffMatDang;
3222
		return $this;
3223
	}
3224
3225
	/**
3226
	 * Set the t r s aff prod chim.
3227
	 *
3228
	 * @param string $tRSAffProdChim The t r s aff prod chim.
3229
	 * @return Fournisseurs Returns this fournisseurs.
3230
	 */
3231
	public function setTRSAffProdChim($tRSAffProdChim) {
3232
		$this->tRSAffProdChim = $tRSAffProdChim;
3233
		return $this;
3234
	}
3235
3236
	/**
3237
	 * Set the t r s aff refri.
3238
	 *
3239
	 * @param string $tRSAffRefri The t r s aff refri.
3240
	 * @return Fournisseurs Returns this fournisseurs.
3241
	 */
3242
	public function setTRSAffRefri($tRSAffRefri) {
3243
		$this->tRSAffRefri = $tRSAffRefri;
3244
		return $this;
3245
	}
3246
3247
	/**
3248
	 * Set the t r s code tarif.
3249
	 *
3250
	 * @param string $tRSCodeTarif The t r s code tarif.
3251
	 * @return Fournisseurs Returns this fournisseurs.
3252
	 */
3253
	public function setTRSCodeTarif($tRSCodeTarif) {
3254
		$this->tRSCodeTarif = $tRSCodeTarif;
3255
		return $this;
3256
	}
3257
3258
	/**
3259
	 * Set the t r s est un affrete.
3260
	 *
3261
	 * @param string $tRSEstUnAffrete The t r s est un affrete.
3262
	 * @return Fournisseurs Returns this fournisseurs.
3263
	 */
3264
	public function setTRSEstUnAffrete($tRSEstUnAffrete) {
3265
		$this->tRSEstUnAffrete = $tRSEstUnAffrete;
3266
		return $this;
3267
	}
3268
3269
	/**
3270
	 * Set the t r s gestion palettes.
3271
	 *
3272
	 * @param boolean $tRSGestionPalettes The t r s gestion palettes.
3273
	 * @return Fournisseurs Returns this fournisseurs.
3274
	 */
3275
	public function setTRSGestionPalettes($tRSGestionPalettes) {
3276
		$this->tRSGestionPalettes = $tRSGestionPalettes;
3277
		return $this;
3278
	}
3279
3280
	/**
3281
	 * Set the t r s p cent px trs.
3282
	 *
3283
	 * @param float $tRSPCentPxTrs The t r s p cent px trs.
3284
	 * @return Fournisseurs Returns this fournisseurs.
3285
	 */
3286
	public function setTRSPCentPxTrs($tRSPCentPxTrs) {
3287
		$this->tRSPCentPxTrs = $tRSPCentPxTrs;
3288
		return $this;
3289
	}
3290
3291
	/**
3292
	 * Set the t r s suivi planing aff.
3293
	 *
3294
	 * @param boolean $tRSSuiviPlaningAff The t r s suivi planing aff.
3295
	 * @return Fournisseurs Returns this fournisseurs.
3296
	 */
3297
	public function setTRSSuiviPlaningAff($tRSSuiviPlaningAff) {
3298
		$this->tRSSuiviPlaningAff = $tRSSuiviPlaningAff;
3299
		return $this;
3300
	}
3301
3302
	/**
3303
	 * Set the t v a regime.
3304
	 *
3305
	 * @param string $tVARegime The t v a regime.
3306
	 * @return Fournisseurs Returns this fournisseurs.
3307
	 */
3308
	public function setTVARegime($tVARegime) {
3309
		$this->tVARegime = $tVARegime;
3310
		return $this;
3311
	}
3312
3313
	/**
3314
	 * Set the taux comm.
3315
	 *
3316
	 * @param float $tauxComm The taux comm.
3317
	 * @return Fournisseurs Returns this fournisseurs.
3318
	 */
3319
	public function setTauxComm($tauxComm) {
3320
		$this->tauxComm = $tauxComm;
3321
		return $this;
3322
	}
3323
3324
	/**
3325
	 * Set the taux escompte.
3326
	 *
3327
	 * @param float $tauxEscompte The taux escompte.
3328
	 * @return Fournisseurs Returns this fournisseurs.
3329
	 */
3330
	public function setTauxEscompte($tauxEscompte) {
3331
		$this->tauxEscompte = $tauxEscompte;
3332
		return $this;
3333
	}
3334
3335
	/**
3336
	 * Set the toutes activites.
3337
	 *
3338
	 * @param string $toutesActivites The toutes activites.
3339
	 * @return Fournisseurs Returns this fournisseurs.
3340
	 */
3341
	public function setToutesActivites($toutesActivites) {
3342
		$this->toutesActivites = $toutesActivites;
3343
		return $this;
3344
	}
3345
3346
	/**
3347
	 * Set the transporteur.
3348
	 *
3349
	 * @param string $transporteur The transporteur.
3350
	 * @return Fournisseurs Returns this fournisseurs.
3351
	 */
3352
	public function setTransporteur($transporteur) {
3353
		$this->transporteur = $transporteur;
3354
		return $this;
3355
	}
3356
3357
	/**
3358
	 * Set the type edit b r.
3359
	 *
3360
	 * @param string $typeEditBR The type edit b r.
3361
	 * @return Fournisseurs Returns this fournisseurs.
3362
	 */
3363
	public function setTypeEditBR($typeEditBR) {
3364
		$this->typeEditBR = $typeEditBR;
3365
		return $this;
3366
	}
3367
3368
	/**
3369
	 * Set the type fournisseur.
3370
	 *
3371
	 * @param string $typeFournisseur The type fournisseur.
3372
	 * @return Fournisseurs Returns this fournisseurs.
3373
	 */
3374
	public function setTypeFournisseur($typeFournisseur) {
3375
		$this->typeFournisseur = $typeFournisseur;
3376
		return $this;
3377
	}
3378
3379
}
3380