Complex classes like Clients 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 Clients, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
22 | class Clients { |
||
23 | |||
24 | /** |
||
25 | * Actif. |
||
26 | * |
||
27 | * @var bool|null |
||
28 | */ |
||
29 | private $actif; |
||
30 | |||
31 | /** |
||
32 | * Activite nouvelle. |
||
33 | * |
||
34 | * @var bool|null |
||
35 | */ |
||
36 | private $activiteNouvelle; |
||
37 | |||
38 | /** |
||
39 | * Activite saiso. |
||
40 | * |
||
41 | * @var bool|null |
||
42 | */ |
||
43 | private $activiteSaiso; |
||
44 | |||
45 | /** |
||
46 | * Adresse site client. |
||
47 | * |
||
48 | * @var string|null |
||
49 | */ |
||
50 | private $adresseSiteClient; |
||
51 | |||
52 | /** |
||
53 | * Article port1. |
||
54 | * |
||
55 | * @var string|null |
||
56 | */ |
||
57 | private $articlePort1; |
||
58 | |||
59 | /** |
||
60 | * Article port2. |
||
61 | * |
||
62 | * @var string|null |
||
63 | */ |
||
64 | private $articlePort2; |
||
65 | |||
66 | /** |
||
67 | * Assurance. |
||
68 | * |
||
69 | * @var bool|null |
||
70 | */ |
||
71 | private $assurance; |
||
72 | |||
73 | /** |
||
74 | * Bibliotheque novaxel. |
||
75 | * |
||
76 | * @var string|null |
||
77 | */ |
||
78 | private $bibliothequeNovaxel; |
||
79 | |||
80 | /** |
||
81 | * Bl chiffre. |
||
82 | * |
||
83 | * @var bool|null |
||
84 | */ |
||
85 | private $blChiffre; |
||
86 | |||
87 | /** |
||
88 | * Bloque. |
||
89 | * |
||
90 | * @var bool|null |
||
91 | */ |
||
92 | private $bloque; |
||
93 | |||
94 | /** |
||
95 | * Cde auto manu. |
||
96 | * |
||
97 | * @var string|null |
||
98 | */ |
||
99 | private $cdeAutoManu; |
||
100 | |||
101 | /** |
||
102 | * Cga. |
||
103 | * |
||
104 | * @var bool|null |
||
105 | */ |
||
106 | private $cga; |
||
107 | |||
108 | /** |
||
109 | * Charges. |
||
110 | * |
||
111 | * @var string|null |
||
112 | */ |
||
113 | private $charges; |
||
114 | |||
115 | /** |
||
116 | * Chiffre affaire. |
||
117 | * |
||
118 | * @var float|null |
||
119 | */ |
||
120 | private $chiffreAffaire; |
||
121 | |||
122 | /** |
||
123 | * Cle alpha. |
||
124 | * |
||
125 | * @var string|null |
||
126 | */ |
||
127 | private $cleAlpha; |
||
128 | |||
129 | /** |
||
130 | * Code. |
||
131 | * |
||
132 | * @var string|null |
||
133 | */ |
||
134 | private $code; |
||
135 | |||
136 | /** |
||
137 | * Code activite. |
||
138 | * |
||
139 | * @var string|null |
||
140 | */ |
||
141 | private $codeActivite; |
||
142 | |||
143 | /** |
||
144 | * Code agence. |
||
145 | * |
||
146 | * @var string|null |
||
147 | */ |
||
148 | private $codeAgence; |
||
149 | |||
150 | /** |
||
151 | * Code article cotisation. |
||
152 | * |
||
153 | * @var string|null |
||
154 | */ |
||
155 | private $codeArticleCotisation; |
||
156 | |||
157 | /** |
||
158 | * Code article droit fixe. |
||
159 | * |
||
160 | * @var string|null |
||
161 | */ |
||
162 | private $codeArticleDroitFixe; |
||
163 | |||
164 | /** |
||
165 | * Code article frais fixe. |
||
166 | * |
||
167 | * @var string|null |
||
168 | */ |
||
169 | private $codeArticleFraisFixe; |
||
170 | |||
171 | /** |
||
172 | * Code assistant juridique. |
||
173 | * |
||
174 | * @var string|null |
||
175 | */ |
||
176 | private $codeAssistantJuridique; |
||
177 | |||
178 | /** |
||
179 | * Code assistant social. |
||
180 | * |
||
181 | * @var string|null |
||
182 | */ |
||
183 | private $codeAssistantSocial; |
||
184 | |||
185 | /** |
||
186 | * Code autre1. |
||
187 | * |
||
188 | * @var string|null |
||
189 | */ |
||
190 | private $codeAutre1; |
||
191 | |||
192 | /** |
||
193 | * Code autre2. |
||
194 | * |
||
195 | * @var string|null |
||
196 | */ |
||
197 | private $codeAutre2; |
||
198 | |||
199 | /** |
||
200 | * Code avocat. |
||
201 | * |
||
202 | * @var string|null |
||
203 | */ |
||
204 | private $codeAvocat; |
||
205 | |||
206 | /** |
||
207 | * Code barre. |
||
208 | * |
||
209 | * @var bool|null |
||
210 | */ |
||
211 | private $codeBarre; |
||
212 | |||
213 | /** |
||
214 | * Code categorie client. |
||
215 | * |
||
216 | * @var string|null |
||
217 | */ |
||
218 | private $codeCategorieClient; |
||
219 | |||
220 | /** |
||
221 | * Code client fact. |
||
222 | * |
||
223 | * @var string|null |
||
224 | */ |
||
225 | private $codeClientFact; |
||
226 | |||
227 | /** |
||
228 | * Code client livr. |
||
229 | * |
||
230 | * @var string|null |
||
231 | */ |
||
232 | private $codeClientLivr; |
||
233 | |||
234 | /** |
||
235 | * Code collaborateur. |
||
236 | * |
||
237 | * @var string|null |
||
238 | */ |
||
239 | private $codeCollaborateur; |
||
240 | |||
241 | /** |
||
242 | * Code depot. |
||
243 | * |
||
244 | * @var string|null |
||
245 | */ |
||
246 | private $codeDepot; |
||
247 | |||
248 | /** |
||
249 | * Code devise. |
||
250 | * |
||
251 | * @var string|null |
||
252 | */ |
||
253 | private $codeDevise; |
||
254 | |||
255 | /** |
||
256 | * Code edition fact. |
||
257 | * |
||
258 | * @var string|null |
||
259 | */ |
||
260 | private $codeEditionFact; |
||
261 | |||
262 | /** |
||
263 | * Code exc. |
||
264 | * |
||
265 | * @var string|null |
||
266 | */ |
||
267 | private $codeExc; |
||
268 | |||
269 | /** |
||
270 | * Code expert. |
||
271 | * |
||
272 | * @var string|null |
||
273 | */ |
||
274 | private $codeExpert; |
||
275 | |||
276 | /** |
||
277 | * Code factor. |
||
278 | * |
||
279 | * @var string|null |
||
280 | */ |
||
281 | private $codeFactor; |
||
282 | |||
283 | /** |
||
284 | * Code famille. |
||
285 | * |
||
286 | * @var string|null |
||
287 | */ |
||
288 | private $codeFamille; |
||
289 | |||
290 | /** |
||
291 | * Code geo. |
||
292 | * |
||
293 | * @var string|null |
||
294 | */ |
||
295 | private $codeGeo; |
||
296 | |||
297 | /** |
||
298 | * Code imputation analytique. |
||
299 | * |
||
300 | * @var string|null |
||
301 | */ |
||
302 | private $codeImputationAnalytique; |
||
303 | |||
304 | /** |
||
305 | * Code langue designation article. |
||
306 | * |
||
307 | * @var string|null |
||
308 | */ |
||
309 | private $codeLangueDesignationArticle; |
||
310 | |||
311 | /** |
||
312 | * Code mission frais fixe. |
||
313 | * |
||
314 | * @var string|null |
||
315 | */ |
||
316 | private $codeMissionFraisFixe; |
||
317 | |||
318 | /** |
||
319 | * Code origine. |
||
320 | * |
||
321 | * @var string|null |
||
322 | */ |
||
323 | private $codeOrigine; |
||
324 | |||
325 | /** |
||
326 | * Code pays corres. |
||
327 | * |
||
328 | * @var string|null |
||
329 | */ |
||
330 | private $codePaysCorres; |
||
331 | |||
332 | /** |
||
333 | * Code pays fact. |
||
334 | * |
||
335 | * @var string|null |
||
336 | */ |
||
337 | private $codePaysFact; |
||
338 | |||
339 | /** |
||
340 | * Code portefeuille. |
||
341 | * |
||
342 | * @var string|null |
||
343 | */ |
||
344 | private $codePortefeuille; |
||
345 | |||
346 | /** |
||
347 | * Code recette impots. |
||
348 | * |
||
349 | * @var string|null |
||
350 | */ |
||
351 | private $codeRecetteImpots; |
||
352 | |||
353 | /** |
||
354 | * Code reglement. |
||
355 | * |
||
356 | * @var string|null |
||
357 | */ |
||
358 | private $codeReglement; |
||
359 | |||
360 | /** |
||
361 | * Code regroupement. |
||
362 | * |
||
363 | * @var string|null |
||
364 | */ |
||
365 | private $codeRegroupement; |
||
366 | |||
367 | /** |
||
368 | * Code representant. |
||
369 | * |
||
370 | * @var string|null |
||
371 | */ |
||
372 | private $codeRepresentant; |
||
373 | |||
374 | /** |
||
375 | * Code revision. |
||
376 | * |
||
377 | * @var string|null |
||
378 | */ |
||
379 | private $codeRevision; |
||
380 | |||
381 | /** |
||
382 | * Code sous famille. |
||
383 | * |
||
384 | * @var string|null |
||
385 | */ |
||
386 | private $codeSousFamille; |
||
387 | |||
388 | /** |
||
389 | * Code sous tournee. |
||
390 | * |
||
391 | * @var string|null |
||
392 | */ |
||
393 | private $codeSousTournee; |
||
394 | |||
395 | /** |
||
396 | * Code tarif. |
||
397 | * |
||
398 | * @var string|null |
||
399 | */ |
||
400 | private $codeTarif; |
||
401 | |||
402 | /** |
||
403 | * Code tournee. |
||
404 | * |
||
405 | * @var string|null |
||
406 | */ |
||
407 | private $codeTournee; |
||
408 | |||
409 | /** |
||
410 | * Code transporteur. |
||
411 | * |
||
412 | * @var string|null |
||
413 | */ |
||
414 | private $codeTransporteur; |
||
415 | |||
416 | /** |
||
417 | * Code tva. |
||
418 | * |
||
419 | * @var string|null |
||
420 | */ |
||
421 | private $codeTva; |
||
422 | |||
423 | /** |
||
424 | * Code ventil compta. |
||
425 | * |
||
426 | * @var string|null |
||
427 | */ |
||
428 | private $codeVentilCompta; |
||
429 | |||
430 | /** |
||
431 | * Coef sur pv. |
||
432 | * |
||
433 | * @var float|null |
||
434 | */ |
||
435 | private $coefSurPv; |
||
436 | |||
437 | /** |
||
438 | * Coeff pv client. |
||
439 | * |
||
440 | * @var float|null |
||
441 | */ |
||
442 | private $coeffPvClient; |
||
443 | |||
444 | /** |
||
445 | * Collectif. |
||
446 | * |
||
447 | * @var string|null |
||
448 | */ |
||
449 | private $collectif; |
||
450 | |||
451 | /** |
||
452 | * Conjoint. |
||
453 | * |
||
454 | * @var string|null |
||
455 | */ |
||
456 | private $conjoint; |
||
457 | |||
458 | /** |
||
459 | * Contact recette impots. |
||
460 | * |
||
461 | * @var string|null |
||
462 | */ |
||
463 | private $contactRecetteImpots; |
||
464 | |||
465 | /** |
||
466 | * Date attrib encours. |
||
467 | * |
||
468 | * @var DateTime|null |
||
469 | */ |
||
470 | private $dateAttribEncours; |
||
471 | |||
472 | /** |
||
473 | * Date creation. |
||
474 | * |
||
475 | * @var DateTime|null |
||
476 | */ |
||
477 | private $dateCreation; |
||
478 | |||
479 | /** |
||
480 | * Date deb activite. |
||
481 | * |
||
482 | * @var DateTime|null |
||
483 | */ |
||
484 | private $dateDebActivite; |
||
485 | |||
486 | /** |
||
487 | * Date deb prof. |
||
488 | * |
||
489 | * @var DateTime|null |
||
490 | */ |
||
491 | private $dateDebProf; |
||
492 | |||
493 | /** |
||
494 | * Date derniere vente. |
||
495 | * |
||
496 | * @var DateTime|null |
||
497 | */ |
||
498 | private $dateDerniereVente; |
||
499 | |||
500 | /** |
||
501 | * Date entree. |
||
502 | * |
||
503 | * @var DateTime|null |
||
504 | */ |
||
505 | private $dateEntree; |
||
506 | |||
507 | /** |
||
508 | * Date fin activite. |
||
509 | * |
||
510 | * @var DateTime|null |
||
511 | */ |
||
512 | private $dateFinActivite; |
||
513 | |||
514 | /** |
||
515 | * Date modification. |
||
516 | * |
||
517 | * @var DateTime|null |
||
518 | */ |
||
519 | private $dateModification; |
||
520 | |||
521 | /** |
||
522 | * Date reprise. |
||
523 | * |
||
524 | * @var DateTime|null |
||
525 | */ |
||
526 | private $dateReprise; |
||
527 | |||
528 | /** |
||
529 | * Date sortie. |
||
530 | * |
||
531 | * @var DateTime|null |
||
532 | */ |
||
533 | private $dateSortie; |
||
534 | |||
535 | /** |
||
536 | * Delai tarif. |
||
537 | * |
||
538 | * @var int|null |
||
539 | */ |
||
540 | private $delaiTarif; |
||
541 | |||
542 | /** |
||
543 | * Domiciliation bancaire1. |
||
544 | * |
||
545 | * @var string|null |
||
546 | */ |
||
547 | private $domiciliationBancaire1; |
||
548 | |||
549 | /** |
||
550 | * Domiciliation bancaire2. |
||
551 | * |
||
552 | * @var string|null |
||
553 | */ |
||
554 | private $domiciliationBancaire2; |
||
555 | |||
556 | /** |
||
557 | * Dossier comptable. |
||
558 | * |
||
559 | * @var string|null |
||
560 | */ |
||
561 | private $dossierComptable; |
||
562 | |||
563 | /** |
||
564 | * Dossier paie. |
||
565 | * |
||
566 | * @var string|null |
||
567 | */ |
||
568 | private $dossierPaie; |
||
569 | |||
570 | /** |
||
571 | * Ds code collab. |
||
572 | * |
||
573 | * @var string|null |
||
574 | */ |
||
575 | private $dsCodeCollab; |
||
576 | |||
577 | /** |
||
578 | * Ds date retour. |
||
579 | * |
||
580 | * @var DateTime|null |
||
581 | */ |
||
582 | private $dsDateRetour; |
||
583 | |||
584 | /** |
||
585 | * Ds date sortie. |
||
586 | * |
||
587 | * @var DateTime|null |
||
588 | */ |
||
589 | private $dsDateSortie; |
||
590 | |||
591 | /** |
||
592 | * Du client. |
||
593 | * |
||
594 | * @var string|null |
||
595 | */ |
||
596 | private $duClient; |
||
597 | |||
598 | /** |
||
599 | * Duree echeances. |
||
600 | * |
||
601 | * @var string|null |
||
602 | */ |
||
603 | private $dureeEcheances; |
||
604 | |||
605 | /** |
||
606 | * Effectif etp. |
||
607 | * |
||
608 | * @var int|null |
||
609 | */ |
||
610 | private $effectifEtp; |
||
611 | |||
612 | /** |
||
613 | * Election ce. |
||
614 | * |
||
615 | * @var DateTime|null |
||
616 | */ |
||
617 | private $electionCe; |
||
618 | |||
619 | /** |
||
620 | * Election delegue personnel. |
||
621 | * |
||
622 | * @var DateTime|null |
||
623 | */ |
||
624 | private $electionDeleguePersonnel; |
||
625 | |||
626 | /** |
||
627 | * Equip info. |
||
628 | * |
||
629 | * @var string|null |
||
630 | */ |
||
631 | private $equipInfo; |
||
632 | |||
633 | /** |
||
634 | * Etat1. |
||
635 | * |
||
636 | * @var string|null |
||
637 | */ |
||
638 | private $etat1; |
||
639 | |||
640 | /** |
||
641 | * Etat2. |
||
642 | * |
||
643 | * @var string|null |
||
644 | */ |
||
645 | private $etat2; |
||
646 | |||
647 | /** |
||
648 | * Etat3. |
||
649 | * |
||
650 | * @var string|null |
||
651 | */ |
||
652 | private $etat3; |
||
653 | |||
654 | /** |
||
655 | * Etat4. |
||
656 | * |
||
657 | * @var string|null |
||
658 | */ |
||
659 | private $etat4; |
||
660 | |||
661 | /** |
||
662 | * Etat5. |
||
663 | * |
||
664 | * @var string|null |
||
665 | */ |
||
666 | private $etat5; |
||
667 | |||
668 | /** |
||
669 | * Etiquettes. |
||
670 | * |
||
671 | * @var bool|null |
||
672 | */ |
||
673 | private $etiquettes; |
||
674 | |||
675 | /** |
||
676 | * Fact btq. |
||
677 | * |
||
678 | * @var string|null |
||
679 | */ |
||
680 | private $factBtq; |
||
681 | |||
682 | /** |
||
683 | * Fact bureau distributeur. |
||
684 | * |
||
685 | * @var string|null |
||
686 | */ |
||
687 | private $factBureauDistributeur; |
||
688 | |||
689 | /** |
||
690 | * Fact code officiel commune. |
||
691 | * |
||
692 | * @var string|null |
||
693 | */ |
||
694 | private $factCodeOfficielCommune; |
||
695 | |||
696 | /** |
||
697 | * Fact code postal. |
||
698 | * |
||
699 | * @var string|null |
||
700 | */ |
||
701 | private $factCodePostal; |
||
702 | |||
703 | /** |
||
704 | * Fact complement. |
||
705 | * |
||
706 | * @var string|null |
||
707 | */ |
||
708 | private $factComplement; |
||
709 | |||
710 | /** |
||
711 | * Fact nom rs. |
||
712 | * |
||
713 | * @var string|null |
||
714 | */ |
||
715 | private $factNomRs; |
||
716 | |||
717 | /** |
||
718 | * Fact nom ville. |
||
719 | * |
||
720 | * @var string|null |
||
721 | */ |
||
722 | private $factNomVille; |
||
723 | |||
724 | /** |
||
725 | * Fact nom voie. |
||
726 | * |
||
727 | * @var string|null |
||
728 | */ |
||
729 | private $factNomVoie; |
||
730 | |||
731 | /** |
||
732 | * Fact num voie. |
||
733 | * |
||
734 | * @var string|null |
||
735 | */ |
||
736 | private $factNumVoie; |
||
737 | |||
738 | /** |
||
739 | * Facturation compta. |
||
740 | * |
||
741 | * @var DateTime|null |
||
742 | */ |
||
743 | private $facturationCompta; |
||
744 | |||
745 | /** |
||
746 | * Facturation compta prec. |
||
747 | * |
||
748 | * @var DateTime|null |
||
749 | */ |
||
750 | private $facturationComptaPrec; |
||
751 | |||
752 | /** |
||
753 | * Facturation cotisation. |
||
754 | * |
||
755 | * @var bool|null |
||
756 | */ |
||
757 | private $facturationCotisation; |
||
758 | |||
759 | /** |
||
760 | * Facturation droit fixe. |
||
761 | * |
||
762 | * @var bool|null |
||
763 | */ |
||
764 | private $facturationDroitFixe; |
||
765 | |||
766 | /** |
||
767 | * Facturation frais fixe. |
||
768 | * |
||
769 | * @var bool|null |
||
770 | */ |
||
771 | private $facturationFraisFixe; |
||
772 | |||
773 | /** |
||
774 | * Facturation paie. |
||
775 | * |
||
776 | * @var DateTime|null |
||
777 | */ |
||
778 | private $facturationPaie; |
||
779 | |||
780 | /** |
||
781 | * Facturation paie prec. |
||
782 | * |
||
783 | * @var DateTime|null |
||
784 | */ |
||
785 | private $facturationPaiePrec; |
||
786 | |||
787 | /** |
||
788 | * Facture euros. |
||
789 | * |
||
790 | * @var bool|null |
||
791 | */ |
||
792 | private $factureEuros; |
||
793 | |||
794 | /** |
||
795 | * Facture isolee. |
||
796 | * |
||
797 | * @var bool|null |
||
798 | */ |
||
799 | private $factureIsolee; |
||
800 | |||
801 | /** |
||
802 | * Facture temps passes. |
||
803 | * |
||
804 | * @var bool|null |
||
805 | */ |
||
806 | private $factureTempsPasses; |
||
807 | |||
808 | /** |
||
809 | * Factures mail. |
||
810 | * |
||
811 | * @var bool|null |
||
812 | */ |
||
813 | private $facturesMail; |
||
814 | |||
815 | /** |
||
816 | * Fortement impose. |
||
817 | * |
||
818 | * @var string|null |
||
819 | */ |
||
820 | private $fortementImpose; |
||
821 | |||
822 | /** |
||
823 | * Frais fixes1. |
||
824 | * |
||
825 | * @var bool|null |
||
826 | */ |
||
827 | private $fraisFixes1; |
||
828 | |||
829 | /** |
||
830 | * Frais fixes2. |
||
831 | * |
||
832 | * @var bool|null |
||
833 | */ |
||
834 | private $fraisFixes2; |
||
835 | |||
836 | /** |
||
837 | * Franco port1. |
||
838 | * |
||
839 | * @var float|null |
||
840 | */ |
||
841 | private $francoPort1; |
||
842 | |||
843 | /** |
||
844 | * Franco port2. |
||
845 | * |
||
846 | * @var float|null |
||
847 | */ |
||
848 | private $francoPort2; |
||
849 | |||
850 | /** |
||
851 | * Heure appel. |
||
852 | * |
||
853 | * @var string|null |
||
854 | */ |
||
855 | private $heureAppel; |
||
856 | |||
857 | /** |
||
858 | * Identifiant tva. |
||
859 | * |
||
860 | * @var string|null |
||
861 | */ |
||
862 | private $identifiantTva; |
||
863 | |||
864 | /** |
||
865 | * Indice factures mail. |
||
866 | * |
||
867 | * @var int|null |
||
868 | */ |
||
869 | private $indiceFacturesMail; |
||
870 | |||
871 | /** |
||
872 | * Insp. |
||
873 | * |
||
874 | * @var string|null |
||
875 | */ |
||
876 | private $insp; |
||
877 | |||
878 | /** |
||
879 | * Interesse gestion. |
||
880 | * |
||
881 | * @var string|null |
||
882 | */ |
||
883 | private $interesseGestion; |
||
884 | |||
885 | /** |
||
886 | * Mensualisation actif. |
||
887 | * |
||
888 | * @var bool|null |
||
889 | */ |
||
890 | private $mensualisationActif; |
||
891 | |||
892 | /** |
||
893 | * Mensualisation au. |
||
894 | * |
||
895 | * @var DateTime|null |
||
896 | */ |
||
897 | private $mensualisationAu; |
||
898 | |||
899 | /** |
||
900 | * Mensualisation du. |
||
901 | * |
||
902 | * @var DateTime|null |
||
903 | */ |
||
904 | private $mensualisationDu; |
||
905 | |||
906 | /** |
||
907 | * Mensualisation frequence. |
||
908 | * |
||
909 | * @var string|null |
||
910 | */ |
||
911 | private $mensualisationFrequence; |
||
912 | |||
913 | /** |
||
914 | * Mensualisation montant. |
||
915 | * |
||
916 | * @var float|null |
||
917 | */ |
||
918 | private $mensualisationMontant; |
||
919 | |||
920 | /** |
||
921 | * Mission sur dossier. |
||
922 | * |
||
923 | * @var int|null |
||
924 | */ |
||
925 | private $missionSurDossier; |
||
926 | |||
927 | /** |
||
928 | * Modele bl. |
||
929 | * |
||
930 | * @var string|null |
||
931 | */ |
||
932 | private $modeleBl; |
||
933 | |||
934 | /** |
||
935 | * Modele commande. |
||
936 | * |
||
937 | * @var string|null |
||
938 | */ |
||
939 | private $modeleCommande; |
||
940 | |||
941 | /** |
||
942 | * Modele facture. |
||
943 | * |
||
944 | * @var string|null |
||
945 | */ |
||
946 | private $modeleFacture; |
||
947 | |||
948 | /** |
||
949 | * Modele proformas. |
||
950 | * |
||
951 | * @var string|null |
||
952 | */ |
||
953 | private $modeleProformas; |
||
954 | |||
955 | /** |
||
956 | * Modele releve. |
||
957 | * |
||
958 | * @var string|null |
||
959 | */ |
||
960 | private $modeleReleve; |
||
961 | |||
962 | /** |
||
963 | * Mois cloture. |
||
964 | * |
||
965 | * @var string|null |
||
966 | */ |
||
967 | private $moisCloture; |
||
968 | |||
969 | /** |
||
970 | * Mois cotisation. |
||
971 | * |
||
972 | * @var int|null |
||
973 | */ |
||
974 | private $moisCotisation; |
||
975 | |||
976 | /** |
||
977 | * Mois droit fixe. |
||
978 | * |
||
979 | * @var int|null |
||
980 | */ |
||
981 | private $moisDroitFixe; |
||
982 | |||
983 | /** |
||
984 | * Mt cmd non fact. |
||
985 | * |
||
986 | * @var float|null |
||
987 | */ |
||
988 | private $mtCmdNonFact; |
||
989 | |||
990 | /** |
||
991 | * Mt encours. |
||
992 | * |
||
993 | * @var float|null |
||
994 | */ |
||
995 | private $mtEncours; |
||
996 | |||
997 | /** |
||
998 | * Mt encours autorise. |
||
999 | * |
||
1000 | * @var float|null |
||
1001 | */ |
||
1002 | private $mtEncoursAutorise; |
||
1003 | |||
1004 | /** |
||
1005 | * Nb appels en cours. |
||
1006 | * |
||
1007 | * @var int|null |
||
1008 | */ |
||
1009 | private $nbAppelsEnCours; |
||
1010 | |||
1011 | /** |
||
1012 | * Nb bl. |
||
1013 | * |
||
1014 | * @var string|null |
||
1015 | */ |
||
1016 | private $nbBl; |
||
1017 | |||
1018 | /** |
||
1019 | * Nb bl non chiffres. |
||
1020 | * |
||
1021 | * @var int|null |
||
1022 | */ |
||
1023 | private $nbBlNonChiffres; |
||
1024 | |||
1025 | /** |
||
1026 | * Nb commande. |
||
1027 | * |
||
1028 | * @var string|null |
||
1029 | */ |
||
1030 | private $nbCommande; |
||
1031 | |||
1032 | /** |
||
1033 | * Nb devis. |
||
1034 | * |
||
1035 | * @var string|null |
||
1036 | */ |
||
1037 | private $nbDevis; |
||
1038 | |||
1039 | /** |
||
1040 | * Nb facture. |
||
1041 | * |
||
1042 | * @var string|null |
||
1043 | */ |
||
1044 | private $nbFacture; |
||
1045 | |||
1046 | /** |
||
1047 | * Nb jour interval. |
||
1048 | * |
||
1049 | * @var int|null |
||
1050 | */ |
||
1051 | private $nbJourInterval; |
||
1052 | |||
1053 | /** |
||
1054 | * Nb max bl. |
||
1055 | * |
||
1056 | * @var string|null |
||
1057 | */ |
||
1058 | private $nbMaxBl; |
||
1059 | |||
1060 | /** |
||
1061 | * Nb releve. |
||
1062 | * |
||
1063 | * @var string|null |
||
1064 | */ |
||
1065 | private $nbReleve; |
||
1066 | |||
1067 | /** |
||
1068 | * Nombre echeances. |
||
1069 | * |
||
1070 | * @var string|null |
||
1071 | */ |
||
1072 | private $nombreEcheances; |
||
1073 | |||
1074 | /** |
||
1075 | * Nombre mois exercice. |
||
1076 | * |
||
1077 | * @var string|null |
||
1078 | */ |
||
1079 | private $nombreMoisExercice; |
||
1080 | |||
1081 | /** |
||
1082 | * Notoriete. |
||
1083 | * |
||
1084 | * @var string|null |
||
1085 | */ |
||
1086 | private $notoriete; |
||
1087 | |||
1088 | /** |
||
1089 | * Num web adherent. |
||
1090 | * |
||
1091 | * @var string|null |
||
1092 | */ |
||
1093 | private $numWebAdherent; |
||
1094 | |||
1095 | /** |
||
1096 | * Numero compte. |
||
1097 | * |
||
1098 | * @var string|null |
||
1099 | */ |
||
1100 | private $numeroCompte; |
||
1101 | |||
1102 | /** |
||
1103 | * Observation1. |
||
1104 | * |
||
1105 | * @var string|null |
||
1106 | */ |
||
1107 | private $observation1; |
||
1108 | |||
1109 | /** |
||
1110 | * Observation2. |
||
1111 | * |
||
1112 | * @var string|null |
||
1113 | */ |
||
1114 | private $observation2; |
||
1115 | |||
1116 | /** |
||
1117 | * Observation3. |
||
1118 | * |
||
1119 | * @var string|null |
||
1120 | */ |
||
1121 | private $observation3; |
||
1122 | |||
1123 | /** |
||
1124 | * Occasionnel. |
||
1125 | * |
||
1126 | * @var bool|null |
||
1127 | */ |
||
1128 | private $occasionnel; |
||
1129 | |||
1130 | /** |
||
1131 | * Organisation adm. |
||
1132 | * |
||
1133 | * @var string|null |
||
1134 | */ |
||
1135 | private $organisationAdm; |
||
1136 | |||
1137 | /** |
||
1138 | * Paiement depart le. |
||
1139 | * |
||
1140 | * @var int|null |
||
1141 | */ |
||
1142 | private $paiementDepartLe; |
||
1143 | |||
1144 | /** |
||
1145 | * Paiement le. |
||
1146 | * |
||
1147 | * @var string|null |
||
1148 | */ |
||
1149 | private $paiementLe; |
||
1150 | |||
1151 | /** |
||
1152 | * Paiement nombre de jours. |
||
1153 | * |
||
1154 | * @var int|null |
||
1155 | */ |
||
1156 | private $paiementNombreDeJours; |
||
1157 | |||
1158 | /** |
||
1159 | * Pas productif. |
||
1160 | * |
||
1161 | * @var bool|null |
||
1162 | */ |
||
1163 | private $pasProductif; |
||
1164 | |||
1165 | /** |
||
1166 | * Pas taches operationnelles. |
||
1167 | * |
||
1168 | * @var bool|null |
||
1169 | */ |
||
1170 | private $pasTachesOperationnelles; |
||
1171 | |||
1172 | /** |
||
1173 | * Patrimoine. |
||
1174 | * |
||
1175 | * @var string|null |
||
1176 | */ |
||
1177 | private $patrimoine; |
||
1178 | |||
1179 | /** |
||
1180 | * Prelevements perso. |
||
1181 | * |
||
1182 | * @var string|null |
||
1183 | */ |
||
1184 | private $prelevementsPerso; |
||
1185 | |||
1186 | /** |
||
1187 | * Prescripteur. |
||
1188 | * |
||
1189 | * @var string|null |
||
1190 | */ |
||
1191 | private $prescripteur; |
||
1192 | |||
1193 | /** |
||
1194 | * Previsionnel. |
||
1195 | * |
||
1196 | * @var string|null |
||
1197 | */ |
||
1198 | private $previsionnel; |
||
1199 | |||
1200 | /** |
||
1201 | * Prioritaire. |
||
1202 | * |
||
1203 | * @var bool|null |
||
1204 | */ |
||
1205 | private $prioritaire; |
||
1206 | |||
1207 | /** |
||
1208 | * Profil dir anxieux. |
||
1209 | * |
||
1210 | * @var bool|null |
||
1211 | */ |
||
1212 | private $profilDirAnxieux; |
||
1213 | |||
1214 | /** |
||
1215 | * Profil dir commercial. |
||
1216 | * |
||
1217 | * @var bool|null |
||
1218 | */ |
||
1219 | private $profilDirCommercial; |
||
1220 | |||
1221 | /** |
||
1222 | * Profil dir gestionnaire. |
||
1223 | * |
||
1224 | * @var bool|null |
||
1225 | */ |
||
1226 | private $profilDirGestionnaire; |
||
1227 | |||
1228 | /** |
||
1229 | * Profil dir somnolent. |
||
1230 | * |
||
1231 | * @var bool|null |
||
1232 | */ |
||
1233 | private $profilDirSomnolent; |
||
1234 | |||
1235 | /** |
||
1236 | * Profil dir technicien. |
||
1237 | * |
||
1238 | * @var bool|null |
||
1239 | */ |
||
1240 | private $profilDirTechnicien; |
||
1241 | |||
1242 | /** |
||
1243 | * Profil ent. |
||
1244 | * |
||
1245 | * @var string|null |
||
1246 | */ |
||
1247 | private $profilEnt; |
||
1248 | |||
1249 | /** |
||
1250 | * Prospect. |
||
1251 | * |
||
1252 | * @var bool|null |
||
1253 | */ |
||
1254 | private $prospect; |
||
1255 | |||
1256 | /** |
||
1257 | * Qualite paiement. |
||
1258 | * |
||
1259 | * @var string|null |
||
1260 | */ |
||
1261 | private $qualitePaiement; |
||
1262 | |||
1263 | /** |
||
1264 | * Raison fin activite. |
||
1265 | * |
||
1266 | * @var string|null |
||
1267 | */ |
||
1268 | private $raisonFinActivite; |
||
1269 | |||
1270 | /** |
||
1271 | * Raison mv paiement. |
||
1272 | * |
||
1273 | * @var string|null |
||
1274 | */ |
||
1275 | private $raisonMvPaiement; |
||
1276 | |||
1277 | /** |
||
1278 | * Regime. |
||
1279 | * |
||
1280 | * @var string|null |
||
1281 | */ |
||
1282 | private $regime; |
||
1283 | |||
1284 | /** |
||
1285 | * Regroupement fact. |
||
1286 | * |
||
1287 | * @var string|null |
||
1288 | */ |
||
1289 | private $regroupementFact; |
||
1290 | |||
1291 | /** |
||
1292 | * Relation cabinet. |
||
1293 | * |
||
1294 | * @var string|null |
||
1295 | */ |
||
1296 | private $relationCabinet; |
||
1297 | |||
1298 | /** |
||
1299 | * Releve facture. |
||
1300 | * |
||
1301 | * @var bool|null |
||
1302 | */ |
||
1303 | private $releveFacture; |
||
1304 | |||
1305 | /** |
||
1306 | * Remise ligne1. |
||
1307 | * |
||
1308 | * @var float|null |
||
1309 | */ |
||
1310 | private $remiseLigne1; |
||
1311 | |||
1312 | /** |
||
1313 | * Remise ligne2. |
||
1314 | * |
||
1315 | * @var float|null |
||
1316 | */ |
||
1317 | private $remiseLigne2; |
||
1318 | |||
1319 | /** |
||
1320 | * Remise ligne3. |
||
1321 | * |
||
1322 | * @var float|null |
||
1323 | */ |
||
1324 | private $remiseLigne3; |
||
1325 | |||
1326 | /** |
||
1327 | * Remise pied. |
||
1328 | * |
||
1329 | * @var float|null |
||
1330 | */ |
||
1331 | private $remisePied; |
||
1332 | |||
1333 | /** |
||
1334 | * Remise pied2. |
||
1335 | * |
||
1336 | * @var float|null |
||
1337 | */ |
||
1338 | private $remisePied2; |
||
1339 | |||
1340 | /** |
||
1341 | * Remise pied3. |
||
1342 | * |
||
1343 | * @var float|null |
||
1344 | */ |
||
1345 | private $remisePied3; |
||
1346 | |||
1347 | /** |
||
1348 | * Resultat. |
||
1349 | * |
||
1350 | * @var float|null |
||
1351 | */ |
||
1352 | private $resultat; |
||
1353 | |||
1354 | /** |
||
1355 | * Rib. |
||
1356 | * |
||
1357 | * @var string|null |
||
1358 | */ |
||
1359 | private $rib; |
||
1360 | |||
1361 | /** |
||
1362 | * Sante financiere. |
||
1363 | * |
||
1364 | * @var string|null |
||
1365 | */ |
||
1366 | private $santeFinanciere; |
||
1367 | |||
1368 | /** |
||
1369 | * Service cpta. |
||
1370 | * |
||
1371 | * @var bool|null |
||
1372 | */ |
||
1373 | private $serviceCpta; |
||
1374 | |||
1375 | /** |
||
1376 | * Siege groupe. |
||
1377 | * |
||
1378 | * @var bool|null |
||
1379 | */ |
||
1380 | private $siegeGroupe; |
||
1381 | |||
1382 | /** |
||
1383 | * Social. |
||
1384 | * |
||
1385 | * @var bool|null |
||
1386 | */ |
||
1387 | private $social; |
||
1388 | |||
1389 | /** |
||
1390 | * Social btq. |
||
1391 | * |
||
1392 | * @var string|null |
||
1393 | */ |
||
1394 | private $socialBtq; |
||
1395 | |||
1396 | /** |
||
1397 | * Social bureau distributeur. |
||
1398 | * |
||
1399 | * @var string|null |
||
1400 | */ |
||
1401 | private $socialBureauDistributeur; |
||
1402 | |||
1403 | /** |
||
1404 | * Social code officiel commune. |
||
1405 | * |
||
1406 | * @var string|null |
||
1407 | */ |
||
1408 | private $socialCodeOfficielCommune; |
||
1409 | |||
1410 | /** |
||
1411 | * Social code postal. |
||
1412 | * |
||
1413 | * @var string|null |
||
1414 | */ |
||
1415 | private $socialCodePostal; |
||
1416 | |||
1417 | /** |
||
1418 | * Social complement. |
||
1419 | * |
||
1420 | * @var string|null |
||
1421 | */ |
||
1422 | private $socialComplement; |
||
1423 | |||
1424 | /** |
||
1425 | * Social nom rs. |
||
1426 | * |
||
1427 | * @var string|null |
||
1428 | */ |
||
1429 | private $socialNomRs; |
||
1430 | |||
1431 | /** |
||
1432 | * Social nom ville. |
||
1433 | * |
||
1434 | * @var string|null |
||
1435 | */ |
||
1436 | private $socialNomVille; |
||
1437 | |||
1438 | /** |
||
1439 | * Social nom voie. |
||
1440 | * |
||
1441 | * @var string|null |
||
1442 | */ |
||
1443 | private $socialNomVoie; |
||
1444 | |||
1445 | /** |
||
1446 | * Social num voie. |
||
1447 | * |
||
1448 | * @var string|null |
||
1449 | */ |
||
1450 | private $socialNumVoie; |
||
1451 | |||
1452 | /** |
||
1453 | * Soumis escompte. |
||
1454 | * |
||
1455 | * @var bool|null |
||
1456 | */ |
||
1457 | private $soumisEscompte; |
||
1458 | |||
1459 | /** |
||
1460 | * Soumis port1. |
||
1461 | * |
||
1462 | * @var string|null |
||
1463 | */ |
||
1464 | private $soumisPort1; |
||
1465 | |||
1466 | /** |
||
1467 | * Soumis port2. |
||
1468 | * |
||
1469 | * @var string|null |
||
1470 | */ |
||
1471 | private $soumisPort2; |
||
1472 | |||
1473 | /** |
||
1474 | * Soumis taxe1. |
||
1475 | * |
||
1476 | * @var bool|null |
||
1477 | */ |
||
1478 | private $soumisTaxe1; |
||
1479 | |||
1480 | /** |
||
1481 | * Soumis taxe2. |
||
1482 | * |
||
1483 | * @var bool|null |
||
1484 | */ |
||
1485 | private $soumisTaxe2; |
||
1486 | |||
1487 | /** |
||
1488 | * Soumis taxe3. |
||
1489 | * |
||
1490 | * @var bool|null |
||
1491 | */ |
||
1492 | private $soumisTaxe3; |
||
1493 | |||
1494 | /** |
||
1495 | * Soumis taxe4. |
||
1496 | * |
||
1497 | * @var bool|null |
||
1498 | */ |
||
1499 | private $soumisTaxe4; |
||
1500 | |||
1501 | /** |
||
1502 | * Soumis taxe5. |
||
1503 | * |
||
1504 | * @var bool|null |
||
1505 | */ |
||
1506 | private $soumisTaxe5; |
||
1507 | |||
1508 | /** |
||
1509 | * Soumis tva. |
||
1510 | * |
||
1511 | * @var bool|null |
||
1512 | */ |
||
1513 | private $soumisTva; |
||
1514 | |||
1515 | /** |
||
1516 | * Tableau de bord. |
||
1517 | * |
||
1518 | * @var string|null |
||
1519 | */ |
||
1520 | private $tableauDeBord; |
||
1521 | |||
1522 | /** |
||
1523 | * Toutes activites. |
||
1524 | * |
||
1525 | * @var string|null |
||
1526 | */ |
||
1527 | private $toutesActivites; |
||
1528 | |||
1529 | /** |
||
1530 | * Transporteur. |
||
1531 | * |
||
1532 | * @var string|null |
||
1533 | */ |
||
1534 | private $transporteur; |
||
1535 | |||
1536 | /** |
||
1537 | * Tresorerie. |
||
1538 | * |
||
1539 | * @var string|null |
||
1540 | */ |
||
1541 | private $tresorerie; |
||
1542 | |||
1543 | /** |
||
1544 | * Tva regime. |
||
1545 | * |
||
1546 | * @var string|null |
||
1547 | */ |
||
1548 | private $tvaRegime; |
||
1549 | |||
1550 | /** |
||
1551 | * Tx escompte vente. |
||
1552 | * |
||
1553 | * @var float|null |
||
1554 | */ |
||
1555 | private $txEscompteVente; |
||
1556 | |||
1557 | /** |
||
1558 | * Type client. |
||
1559 | * |
||
1560 | * @var string|null |
||
1561 | */ |
||
1562 | private $typeClient; |
||
1563 | |||
1564 | /** |
||
1565 | * Type edit bl. |
||
1566 | * |
||
1567 | * @var string|null |
||
1568 | */ |
||
1569 | private $typeEditBl; |
||
1570 | |||
1571 | /** |
||
1572 | * Type facture. |
||
1573 | * |
||
1574 | * @var int|null |
||
1575 | */ |
||
1576 | private $typeFacture; |
||
1577 | |||
1578 | /** |
||
1579 | * Type gestion etebac. |
||
1580 | * |
||
1581 | * @var string|null |
||
1582 | */ |
||
1583 | private $typeGestionEtebac; |
||
1584 | |||
1585 | /** |
||
1586 | * Use adresse fact. |
||
1587 | * |
||
1588 | * @var bool|null |
||
1589 | */ |
||
1590 | private $useAdresseFact; |
||
1591 | |||
1592 | /** |
||
1593 | * Use corres sociale. |
||
1594 | * |
||
1595 | * @var bool|null |
||
1596 | */ |
||
1597 | private $useCorresSociale; |
||
1598 | |||
1599 | /** |
||
1600 | * Constructor. |
||
1601 | */ |
||
1602 | public function __construct() { |
||
1603 | // NOTHING TO DO |
||
1604 | } |
||
1605 | |||
1606 | /** |
||
1607 | * Get the actif. |
||
1608 | * |
||
1609 | * @return bool|null Returns the actif. |
||
1610 | */ |
||
1611 | public function getActif(): ?bool { |
||
1612 | return $this->actif; |
||
1613 | } |
||
1614 | |||
1615 | /** |
||
1616 | * Get the activite nouvelle. |
||
1617 | * |
||
1618 | * @return bool|null Returns the activite nouvelle. |
||
1619 | */ |
||
1620 | public function getActiviteNouvelle(): ?bool { |
||
1621 | return $this->activiteNouvelle; |
||
1622 | } |
||
1623 | |||
1624 | /** |
||
1625 | * Get the activite saiso. |
||
1626 | * |
||
1627 | * @return bool|null Returns the activite saiso. |
||
1628 | */ |
||
1629 | public function getActiviteSaiso(): ?bool { |
||
1630 | return $this->activiteSaiso; |
||
1631 | } |
||
1632 | |||
1633 | /** |
||
1634 | * Get the adresse site client. |
||
1635 | * |
||
1636 | * @return string|null Returns the adresse site client. |
||
1637 | */ |
||
1638 | public function getAdresseSiteClient(): ?string { |
||
1639 | return $this->adresseSiteClient; |
||
1640 | } |
||
1641 | |||
1642 | /** |
||
1643 | * Get the article port1. |
||
1644 | * |
||
1645 | * @return string|null Returns the article port1. |
||
1646 | */ |
||
1647 | public function getArticlePort1(): ?string { |
||
1648 | return $this->articlePort1; |
||
1649 | } |
||
1650 | |||
1651 | /** |
||
1652 | * Get the article port2. |
||
1653 | * |
||
1654 | * @return string|null Returns the article port2. |
||
1655 | */ |
||
1656 | public function getArticlePort2(): ?string { |
||
1657 | return $this->articlePort2; |
||
1658 | } |
||
1659 | |||
1660 | /** |
||
1661 | * Get the assurance. |
||
1662 | * |
||
1663 | * @return bool|null Returns the assurance. |
||
1664 | */ |
||
1665 | public function getAssurance(): ?bool { |
||
1666 | return $this->assurance; |
||
1667 | } |
||
1668 | |||
1669 | /** |
||
1670 | * Get the bibliotheque novaxel. |
||
1671 | * |
||
1672 | * @return string|null Returns the bibliotheque novaxel. |
||
1673 | */ |
||
1674 | public function getBibliothequeNovaxel(): ?string { |
||
1675 | return $this->bibliothequeNovaxel; |
||
1676 | } |
||
1677 | |||
1678 | /** |
||
1679 | * Get the bl chiffre. |
||
1680 | * |
||
1681 | * @return bool|null Returns the bl chiffre. |
||
1682 | */ |
||
1683 | public function getBlChiffre(): ?bool { |
||
1684 | return $this->blChiffre; |
||
1685 | } |
||
1686 | |||
1687 | /** |
||
1688 | * Get the bloque. |
||
1689 | * |
||
1690 | * @return bool|null Returns the bloque. |
||
1691 | */ |
||
1692 | public function getBloque(): ?bool { |
||
1693 | return $this->bloque; |
||
1694 | } |
||
1695 | |||
1696 | /** |
||
1697 | * Get the cde auto manu. |
||
1698 | * |
||
1699 | * @return string|null Returns the cde auto manu. |
||
1700 | */ |
||
1701 | public function getCdeAutoManu(): ?string { |
||
1702 | return $this->cdeAutoManu; |
||
1703 | } |
||
1704 | |||
1705 | /** |
||
1706 | * Get the cga. |
||
1707 | * |
||
1708 | * @return bool|null Returns the cga. |
||
1709 | */ |
||
1710 | public function getCga(): ?bool { |
||
1711 | return $this->cga; |
||
1712 | } |
||
1713 | |||
1714 | /** |
||
1715 | * Get the charges. |
||
1716 | * |
||
1717 | * @return string|null Returns the charges. |
||
1718 | */ |
||
1719 | public function getCharges(): ?string { |
||
1720 | return $this->charges; |
||
1721 | } |
||
1722 | |||
1723 | /** |
||
1724 | * Get the chiffre affaire. |
||
1725 | * |
||
1726 | * @return float|null Returns the chiffre affaire. |
||
1727 | */ |
||
1728 | public function getChiffreAffaire(): ?float { |
||
1729 | return $this->chiffreAffaire; |
||
1730 | } |
||
1731 | |||
1732 | /** |
||
1733 | * Get the cle alpha. |
||
1734 | * |
||
1735 | * @return string|null Returns the cle alpha. |
||
1736 | */ |
||
1737 | public function getCleAlpha(): ?string { |
||
1738 | return $this->cleAlpha; |
||
1739 | } |
||
1740 | |||
1741 | /** |
||
1742 | * Get the code. |
||
1743 | * |
||
1744 | * @return string|null Returns the code. |
||
1745 | */ |
||
1746 | public function getCode(): ?string { |
||
1747 | return $this->code; |
||
1748 | } |
||
1749 | |||
1750 | /** |
||
1751 | * Get the code activite. |
||
1752 | * |
||
1753 | * @return string|null Returns the code activite. |
||
1754 | */ |
||
1755 | public function getCodeActivite(): ?string { |
||
1756 | return $this->codeActivite; |
||
1757 | } |
||
1758 | |||
1759 | /** |
||
1760 | * Get the code agence. |
||
1761 | * |
||
1762 | * @return string|null Returns the code agence. |
||
1763 | */ |
||
1764 | public function getCodeAgence(): ?string { |
||
1765 | return $this->codeAgence; |
||
1766 | } |
||
1767 | |||
1768 | /** |
||
1769 | * Get the code article cotisation. |
||
1770 | * |
||
1771 | * @return string|null Returns the code article cotisation. |
||
1772 | */ |
||
1773 | public function getCodeArticleCotisation(): ?string { |
||
1774 | return $this->codeArticleCotisation; |
||
1775 | } |
||
1776 | |||
1777 | /** |
||
1778 | * Get the code article droit fixe. |
||
1779 | * |
||
1780 | * @return string|null Returns the code article droit fixe. |
||
1781 | */ |
||
1782 | public function getCodeArticleDroitFixe(): ?string { |
||
1783 | return $this->codeArticleDroitFixe; |
||
1784 | } |
||
1785 | |||
1786 | /** |
||
1787 | * Get the code article frais fixe. |
||
1788 | * |
||
1789 | * @return string|null Returns the code article frais fixe. |
||
1790 | */ |
||
1791 | public function getCodeArticleFraisFixe(): ?string { |
||
1792 | return $this->codeArticleFraisFixe; |
||
1793 | } |
||
1794 | |||
1795 | /** |
||
1796 | * Get the code assistant juridique. |
||
1797 | * |
||
1798 | * @return string|null Returns the code assistant juridique. |
||
1799 | */ |
||
1800 | public function getCodeAssistantJuridique(): ?string { |
||
1801 | return $this->codeAssistantJuridique; |
||
1802 | } |
||
1803 | |||
1804 | /** |
||
1805 | * Get the code assistant social. |
||
1806 | * |
||
1807 | * @return string|null Returns the code assistant social. |
||
1808 | */ |
||
1809 | public function getCodeAssistantSocial(): ?string { |
||
1810 | return $this->codeAssistantSocial; |
||
1811 | } |
||
1812 | |||
1813 | /** |
||
1814 | * Get the code autre1. |
||
1815 | * |
||
1816 | * @return string|null Returns the code autre1. |
||
1817 | */ |
||
1818 | public function getCodeAutre1(): ?string { |
||
1819 | return $this->codeAutre1; |
||
1820 | } |
||
1821 | |||
1822 | /** |
||
1823 | * Get the code autre2. |
||
1824 | * |
||
1825 | * @return string|null Returns the code autre2. |
||
1826 | */ |
||
1827 | public function getCodeAutre2(): ?string { |
||
1828 | return $this->codeAutre2; |
||
1829 | } |
||
1830 | |||
1831 | /** |
||
1832 | * Get the code avocat. |
||
1833 | * |
||
1834 | * @return string|null Returns the code avocat. |
||
1835 | */ |
||
1836 | public function getCodeAvocat(): ?string { |
||
1837 | return $this->codeAvocat; |
||
1838 | } |
||
1839 | |||
1840 | /** |
||
1841 | * Get the code barre. |
||
1842 | * |
||
1843 | * @return bool|null Returns the code barre. |
||
1844 | */ |
||
1845 | public function getCodeBarre(): ?bool { |
||
1846 | return $this->codeBarre; |
||
1847 | } |
||
1848 | |||
1849 | /** |
||
1850 | * Get the code categorie client. |
||
1851 | * |
||
1852 | * @return string|null Returns the code categorie client. |
||
1853 | */ |
||
1854 | public function getCodeCategorieClient(): ?string { |
||
1855 | return $this->codeCategorieClient; |
||
1856 | } |
||
1857 | |||
1858 | /** |
||
1859 | * Get the code client fact. |
||
1860 | * |
||
1861 | * @return string|null Returns the code client fact. |
||
1862 | */ |
||
1863 | public function getCodeClientFact(): ?string { |
||
1864 | return $this->codeClientFact; |
||
1865 | } |
||
1866 | |||
1867 | /** |
||
1868 | * Get the code client livr. |
||
1869 | * |
||
1870 | * @return string|null Returns the code client livr. |
||
1871 | */ |
||
1872 | public function getCodeClientLivr(): ?string { |
||
1873 | return $this->codeClientLivr; |
||
1874 | } |
||
1875 | |||
1876 | /** |
||
1877 | * Get the code collaborateur. |
||
1878 | * |
||
1879 | * @return string|null Returns the code collaborateur. |
||
1880 | */ |
||
1881 | public function getCodeCollaborateur(): ?string { |
||
1882 | return $this->codeCollaborateur; |
||
1883 | } |
||
1884 | |||
1885 | /** |
||
1886 | * Get the code depot. |
||
1887 | * |
||
1888 | * @return string|null Returns the code depot. |
||
1889 | */ |
||
1890 | public function getCodeDepot(): ?string { |
||
1891 | return $this->codeDepot; |
||
1892 | } |
||
1893 | |||
1894 | /** |
||
1895 | * Get the code devise. |
||
1896 | * |
||
1897 | * @return string|null Returns the code devise. |
||
1898 | */ |
||
1899 | public function getCodeDevise(): ?string { |
||
1900 | return $this->codeDevise; |
||
1901 | } |
||
1902 | |||
1903 | /** |
||
1904 | * Get the code edition fact. |
||
1905 | * |
||
1906 | * @return string|null Returns the code edition fact. |
||
1907 | */ |
||
1908 | public function getCodeEditionFact(): ?string { |
||
1909 | return $this->codeEditionFact; |
||
1910 | } |
||
1911 | |||
1912 | /** |
||
1913 | * Get the code exc. |
||
1914 | * |
||
1915 | * @return string|null Returns the code exc. |
||
1916 | */ |
||
1917 | public function getCodeExc(): ?string { |
||
1918 | return $this->codeExc; |
||
1919 | } |
||
1920 | |||
1921 | /** |
||
1922 | * Get the code expert. |
||
1923 | * |
||
1924 | * @return string|null Returns the code expert. |
||
1925 | */ |
||
1926 | public function getCodeExpert(): ?string { |
||
1927 | return $this->codeExpert; |
||
1928 | } |
||
1929 | |||
1930 | /** |
||
1931 | * Get the code factor. |
||
1932 | * |
||
1933 | * @return string|null Returns the code factor. |
||
1934 | */ |
||
1935 | public function getCodeFactor(): ?string { |
||
1936 | return $this->codeFactor; |
||
1937 | } |
||
1938 | |||
1939 | /** |
||
1940 | * Get the code famille. |
||
1941 | * |
||
1942 | * @return string|null Returns the code famille. |
||
1943 | */ |
||
1944 | public function getCodeFamille(): ?string { |
||
1945 | return $this->codeFamille; |
||
1946 | } |
||
1947 | |||
1948 | /** |
||
1949 | * Get the code geo. |
||
1950 | * |
||
1951 | * @return string|null Returns the code geo. |
||
1952 | */ |
||
1953 | public function getCodeGeo(): ?string { |
||
1954 | return $this->codeGeo; |
||
1955 | } |
||
1956 | |||
1957 | /** |
||
1958 | * Get the code imputation analytique. |
||
1959 | * |
||
1960 | * @return string|null Returns the code imputation analytique. |
||
1961 | */ |
||
1962 | public function getCodeImputationAnalytique(): ?string { |
||
1963 | return $this->codeImputationAnalytique; |
||
1964 | } |
||
1965 | |||
1966 | /** |
||
1967 | * Get the code langue designation article. |
||
1968 | * |
||
1969 | * @return string|null Returns the code langue designation article. |
||
1970 | */ |
||
1971 | public function getCodeLangueDesignationArticle(): ?string { |
||
1972 | return $this->codeLangueDesignationArticle; |
||
1973 | } |
||
1974 | |||
1975 | /** |
||
1976 | * Get the code mission frais fixe. |
||
1977 | * |
||
1978 | * @return string|null Returns the code mission frais fixe. |
||
1979 | */ |
||
1980 | public function getCodeMissionFraisFixe(): ?string { |
||
1981 | return $this->codeMissionFraisFixe; |
||
1982 | } |
||
1983 | |||
1984 | /** |
||
1985 | * Get the code origine. |
||
1986 | * |
||
1987 | * @return string|null Returns the code origine. |
||
1988 | */ |
||
1989 | public function getCodeOrigine(): ?string { |
||
1990 | return $this->codeOrigine; |
||
1991 | } |
||
1992 | |||
1993 | /** |
||
1994 | * Get the code pays corres. |
||
1995 | * |
||
1996 | * @return string|null Returns the code pays corres. |
||
1997 | */ |
||
1998 | public function getCodePaysCorres(): ?string { |
||
1999 | return $this->codePaysCorres; |
||
2000 | } |
||
2001 | |||
2002 | /** |
||
2003 | * Get the code pays fact. |
||
2004 | * |
||
2005 | * @return string|null Returns the code pays fact. |
||
2006 | */ |
||
2007 | public function getCodePaysFact(): ?string { |
||
2008 | return $this->codePaysFact; |
||
2009 | } |
||
2010 | |||
2011 | /** |
||
2012 | * Get the code portefeuille. |
||
2013 | * |
||
2014 | * @return string|null Returns the code portefeuille. |
||
2015 | */ |
||
2016 | public function getCodePortefeuille(): ?string { |
||
2017 | return $this->codePortefeuille; |
||
2018 | } |
||
2019 | |||
2020 | /** |
||
2021 | * Get the code recette impots. |
||
2022 | * |
||
2023 | * @return string|null Returns the code recette impots. |
||
2024 | */ |
||
2025 | public function getCodeRecetteImpots(): ?string { |
||
2026 | return $this->codeRecetteImpots; |
||
2027 | } |
||
2028 | |||
2029 | /** |
||
2030 | * Get the code reglement. |
||
2031 | * |
||
2032 | * @return string|null Returns the code reglement. |
||
2033 | */ |
||
2034 | public function getCodeReglement(): ?string { |
||
2035 | return $this->codeReglement; |
||
2036 | } |
||
2037 | |||
2038 | /** |
||
2039 | * Get the code regroupement. |
||
2040 | * |
||
2041 | * @return string|null Returns the code regroupement. |
||
2042 | */ |
||
2043 | public function getCodeRegroupement(): ?string { |
||
2044 | return $this->codeRegroupement; |
||
2045 | } |
||
2046 | |||
2047 | /** |
||
2048 | * Get the code representant. |
||
2049 | * |
||
2050 | * @return string|null Returns the code representant. |
||
2051 | */ |
||
2052 | public function getCodeRepresentant(): ?string { |
||
2053 | return $this->codeRepresentant; |
||
2054 | } |
||
2055 | |||
2056 | /** |
||
2057 | * Get the code revision. |
||
2058 | * |
||
2059 | * @return string|null Returns the code revision. |
||
2060 | */ |
||
2061 | public function getCodeRevision(): ?string { |
||
2062 | return $this->codeRevision; |
||
2063 | } |
||
2064 | |||
2065 | /** |
||
2066 | * Get the code sous famille. |
||
2067 | * |
||
2068 | * @return string|null Returns the code sous famille. |
||
2069 | */ |
||
2070 | public function getCodeSousFamille(): ?string { |
||
2071 | return $this->codeSousFamille; |
||
2072 | } |
||
2073 | |||
2074 | /** |
||
2075 | * Get the code sous tournee. |
||
2076 | * |
||
2077 | * @return string|null Returns the code sous tournee. |
||
2078 | */ |
||
2079 | public function getCodeSousTournee(): ?string { |
||
2080 | return $this->codeSousTournee; |
||
2081 | } |
||
2082 | |||
2083 | /** |
||
2084 | * Get the code tarif. |
||
2085 | * |
||
2086 | * @return string|null Returns the code tarif. |
||
2087 | */ |
||
2088 | public function getCodeTarif(): ?string { |
||
2089 | return $this->codeTarif; |
||
2090 | } |
||
2091 | |||
2092 | /** |
||
2093 | * Get the code tournee. |
||
2094 | * |
||
2095 | * @return string|null Returns the code tournee. |
||
2096 | */ |
||
2097 | public function getCodeTournee(): ?string { |
||
2098 | return $this->codeTournee; |
||
2099 | } |
||
2100 | |||
2101 | /** |
||
2102 | * Get the code transporteur. |
||
2103 | * |
||
2104 | * @return string|null Returns the code transporteur. |
||
2105 | */ |
||
2106 | public function getCodeTransporteur(): ?string { |
||
2107 | return $this->codeTransporteur; |
||
2108 | } |
||
2109 | |||
2110 | /** |
||
2111 | * Get the code tva. |
||
2112 | * |
||
2113 | * @return string|null Returns the code tva. |
||
2114 | */ |
||
2115 | public function getCodeTva(): ?string { |
||
2116 | return $this->codeTva; |
||
2117 | } |
||
2118 | |||
2119 | /** |
||
2120 | * Get the code ventil compta. |
||
2121 | * |
||
2122 | * @return string|null Returns the code ventil compta. |
||
2123 | */ |
||
2124 | public function getCodeVentilCompta(): ?string { |
||
2125 | return $this->codeVentilCompta; |
||
2126 | } |
||
2127 | |||
2128 | /** |
||
2129 | * Get the coef sur pv. |
||
2130 | * |
||
2131 | * @return float|null Returns the coef sur pv. |
||
2132 | */ |
||
2133 | public function getCoefSurPv(): ?float { |
||
2134 | return $this->coefSurPv; |
||
2135 | } |
||
2136 | |||
2137 | /** |
||
2138 | * Get the coeff pv client. |
||
2139 | * |
||
2140 | * @return float|null Returns the coeff pv client. |
||
2141 | */ |
||
2142 | public function getCoeffPvClient(): ?float { |
||
2143 | return $this->coeffPvClient; |
||
2144 | } |
||
2145 | |||
2146 | /** |
||
2147 | * Get the collectif. |
||
2148 | * |
||
2149 | * @return string|null Returns the collectif. |
||
2150 | */ |
||
2151 | public function getCollectif(): ?string { |
||
2152 | return $this->collectif; |
||
2153 | } |
||
2154 | |||
2155 | /** |
||
2156 | * Get the conjoint. |
||
2157 | * |
||
2158 | * @return string|null Returns the conjoint. |
||
2159 | */ |
||
2160 | public function getConjoint(): ?string { |
||
2161 | return $this->conjoint; |
||
2162 | } |
||
2163 | |||
2164 | /** |
||
2165 | * Get the contact recette impots. |
||
2166 | * |
||
2167 | * @return string|null Returns the contact recette impots. |
||
2168 | */ |
||
2169 | public function getContactRecetteImpots(): ?string { |
||
2170 | return $this->contactRecetteImpots; |
||
2171 | } |
||
2172 | |||
2173 | /** |
||
2174 | * Get the date attrib encours. |
||
2175 | * |
||
2176 | * @return DateTime|null Returns the date attrib encours. |
||
2177 | */ |
||
2178 | public function getDateAttribEncours(): ?DateTime { |
||
2179 | return $this->dateAttribEncours; |
||
2180 | } |
||
2181 | |||
2182 | /** |
||
2183 | * Get the date creation. |
||
2184 | * |
||
2185 | * @return DateTime|null Returns the date creation. |
||
2186 | */ |
||
2187 | public function getDateCreation(): ?DateTime { |
||
2188 | return $this->dateCreation; |
||
2189 | } |
||
2190 | |||
2191 | /** |
||
2192 | * Get the date deb activite. |
||
2193 | * |
||
2194 | * @return DateTime|null Returns the date deb activite. |
||
2195 | */ |
||
2196 | public function getDateDebActivite(): ?DateTime { |
||
2197 | return $this->dateDebActivite; |
||
2198 | } |
||
2199 | |||
2200 | /** |
||
2201 | * Get the date deb prof. |
||
2202 | * |
||
2203 | * @return DateTime|null Returns the date deb prof. |
||
2204 | */ |
||
2205 | public function getDateDebProf(): ?DateTime { |
||
2206 | return $this->dateDebProf; |
||
2207 | } |
||
2208 | |||
2209 | /** |
||
2210 | * Get the date derniere vente. |
||
2211 | * |
||
2212 | * @return DateTime|null Returns the date derniere vente. |
||
2213 | */ |
||
2214 | public function getDateDerniereVente(): ?DateTime { |
||
2215 | return $this->dateDerniereVente; |
||
2216 | } |
||
2217 | |||
2218 | /** |
||
2219 | * Get the date entree. |
||
2220 | * |
||
2221 | * @return DateTime|null Returns the date entree. |
||
2222 | */ |
||
2223 | public function getDateEntree(): ?DateTime { |
||
2224 | return $this->dateEntree; |
||
2225 | } |
||
2226 | |||
2227 | /** |
||
2228 | * Get the date fin activite. |
||
2229 | * |
||
2230 | * @return DateTime|null Returns the date fin activite. |
||
2231 | */ |
||
2232 | public function getDateFinActivite(): ?DateTime { |
||
2233 | return $this->dateFinActivite; |
||
2234 | } |
||
2235 | |||
2236 | /** |
||
2237 | * Get the date modification. |
||
2238 | * |
||
2239 | * @return DateTime|null Returns the date modification. |
||
2240 | */ |
||
2241 | public function getDateModification(): ?DateTime { |
||
2242 | return $this->dateModification; |
||
2243 | } |
||
2244 | |||
2245 | /** |
||
2246 | * Get the date reprise. |
||
2247 | * |
||
2248 | * @return DateTime|null Returns the date reprise. |
||
2249 | */ |
||
2250 | public function getDateReprise(): ?DateTime { |
||
2251 | return $this->dateReprise; |
||
2252 | } |
||
2253 | |||
2254 | /** |
||
2255 | * Get the date sortie. |
||
2256 | * |
||
2257 | * @return DateTime|null Returns the date sortie. |
||
2258 | */ |
||
2259 | public function getDateSortie(): ?DateTime { |
||
2260 | return $this->dateSortie; |
||
2261 | } |
||
2262 | |||
2263 | /** |
||
2264 | * Get the delai tarif. |
||
2265 | * |
||
2266 | * @return int|null Returns the delai tarif. |
||
2267 | */ |
||
2268 | public function getDelaiTarif(): ?int { |
||
2269 | return $this->delaiTarif; |
||
2270 | } |
||
2271 | |||
2272 | /** |
||
2273 | * Get the domiciliation bancaire1. |
||
2274 | * |
||
2275 | * @return string|null Returns the domiciliation bancaire1. |
||
2276 | */ |
||
2277 | public function getDomiciliationBancaire1(): ?string { |
||
2278 | return $this->domiciliationBancaire1; |
||
2279 | } |
||
2280 | |||
2281 | /** |
||
2282 | * Get the domiciliation bancaire2. |
||
2283 | * |
||
2284 | * @return string|null Returns the domiciliation bancaire2. |
||
2285 | */ |
||
2286 | public function getDomiciliationBancaire2(): ?string { |
||
2287 | return $this->domiciliationBancaire2; |
||
2288 | } |
||
2289 | |||
2290 | /** |
||
2291 | * Get the dossier comptable. |
||
2292 | * |
||
2293 | * @return string|null Returns the dossier comptable. |
||
2294 | */ |
||
2295 | public function getDossierComptable(): ?string { |
||
2296 | return $this->dossierComptable; |
||
2297 | } |
||
2298 | |||
2299 | /** |
||
2300 | * Get the dossier paie. |
||
2301 | * |
||
2302 | * @return string|null Returns the dossier paie. |
||
2303 | */ |
||
2304 | public function getDossierPaie(): ?string { |
||
2305 | return $this->dossierPaie; |
||
2306 | } |
||
2307 | |||
2308 | /** |
||
2309 | * Get the ds code collab. |
||
2310 | * |
||
2311 | * @return string|null Returns the ds code collab. |
||
2312 | */ |
||
2313 | public function getDsCodeCollab(): ?string { |
||
2314 | return $this->dsCodeCollab; |
||
2315 | } |
||
2316 | |||
2317 | /** |
||
2318 | * Get the ds date retour. |
||
2319 | * |
||
2320 | * @return DateTime|null Returns the ds date retour. |
||
2321 | */ |
||
2322 | public function getDsDateRetour(): ?DateTime { |
||
2323 | return $this->dsDateRetour; |
||
2324 | } |
||
2325 | |||
2326 | /** |
||
2327 | * Get the ds date sortie. |
||
2328 | * |
||
2329 | * @return DateTime|null Returns the ds date sortie. |
||
2330 | */ |
||
2331 | public function getDsDateSortie(): ?DateTime { |
||
2332 | return $this->dsDateSortie; |
||
2333 | } |
||
2334 | |||
2335 | /** |
||
2336 | * Get the du client. |
||
2337 | * |
||
2338 | * @return string|null Returns the du client. |
||
2339 | */ |
||
2340 | public function getDuClient(): ?string { |
||
2341 | return $this->duClient; |
||
2342 | } |
||
2343 | |||
2344 | /** |
||
2345 | * Get the duree echeances. |
||
2346 | * |
||
2347 | * @return string|null Returns the duree echeances. |
||
2348 | */ |
||
2349 | public function getDureeEcheances(): ?string { |
||
2350 | return $this->dureeEcheances; |
||
2351 | } |
||
2352 | |||
2353 | /** |
||
2354 | * Get the effectif etp. |
||
2355 | * |
||
2356 | * @return int|null Returns the effectif etp. |
||
2357 | */ |
||
2358 | public function getEffectifEtp(): ?int { |
||
2359 | return $this->effectifEtp; |
||
2360 | } |
||
2361 | |||
2362 | /** |
||
2363 | * Get the election ce. |
||
2364 | * |
||
2365 | * @return DateTime|null Returns the election ce. |
||
2366 | */ |
||
2367 | public function getElectionCe(): ?DateTime { |
||
2368 | return $this->electionCe; |
||
2369 | } |
||
2370 | |||
2371 | /** |
||
2372 | * Get the election delegue personnel. |
||
2373 | * |
||
2374 | * @return DateTime|null Returns the election delegue personnel. |
||
2375 | */ |
||
2376 | public function getElectionDeleguePersonnel(): ?DateTime { |
||
2377 | return $this->electionDeleguePersonnel; |
||
2378 | } |
||
2379 | |||
2380 | /** |
||
2381 | * Get the equip info. |
||
2382 | * |
||
2383 | * @return string|null Returns the equip info. |
||
2384 | */ |
||
2385 | public function getEquipInfo(): ?string { |
||
2386 | return $this->equipInfo; |
||
2387 | } |
||
2388 | |||
2389 | /** |
||
2390 | * Get the etat1. |
||
2391 | * |
||
2392 | * @return string|null Returns the etat1. |
||
2393 | */ |
||
2394 | public function getEtat1(): ?string { |
||
2395 | return $this->etat1; |
||
2396 | } |
||
2397 | |||
2398 | /** |
||
2399 | * Get the etat2. |
||
2400 | * |
||
2401 | * @return string|null Returns the etat2. |
||
2402 | */ |
||
2403 | public function getEtat2(): ?string { |
||
2404 | return $this->etat2; |
||
2405 | } |
||
2406 | |||
2407 | /** |
||
2408 | * Get the etat3. |
||
2409 | * |
||
2410 | * @return string|null Returns the etat3. |
||
2411 | */ |
||
2412 | public function getEtat3(): ?string { |
||
2413 | return $this->etat3; |
||
2414 | } |
||
2415 | |||
2416 | /** |
||
2417 | * Get the etat4. |
||
2418 | * |
||
2419 | * @return string|null Returns the etat4. |
||
2420 | */ |
||
2421 | public function getEtat4(): ?string { |
||
2422 | return $this->etat4; |
||
2423 | } |
||
2424 | |||
2425 | /** |
||
2426 | * Get the etat5. |
||
2427 | * |
||
2428 | * @return string|null Returns the etat5. |
||
2429 | */ |
||
2430 | public function getEtat5(): ?string { |
||
2431 | return $this->etat5; |
||
2432 | } |
||
2433 | |||
2434 | /** |
||
2435 | * Get the etiquettes. |
||
2436 | * |
||
2437 | * @return bool|null Returns the etiquettes. |
||
2438 | */ |
||
2439 | public function getEtiquettes(): ?bool { |
||
2440 | return $this->etiquettes; |
||
2441 | } |
||
2442 | |||
2443 | /** |
||
2444 | * Get the fact btq. |
||
2445 | * |
||
2446 | * @return string|null Returns the fact btq. |
||
2447 | */ |
||
2448 | public function getFactBtq(): ?string { |
||
2449 | return $this->factBtq; |
||
2450 | } |
||
2451 | |||
2452 | /** |
||
2453 | * Get the fact bureau distributeur. |
||
2454 | * |
||
2455 | * @return string|null Returns the fact bureau distributeur. |
||
2456 | */ |
||
2457 | public function getFactBureauDistributeur(): ?string { |
||
2458 | return $this->factBureauDistributeur; |
||
2459 | } |
||
2460 | |||
2461 | /** |
||
2462 | * Get the fact code officiel commune. |
||
2463 | * |
||
2464 | * @return string|null Returns the fact code officiel commune. |
||
2465 | */ |
||
2466 | public function getFactCodeOfficielCommune(): ?string { |
||
2467 | return $this->factCodeOfficielCommune; |
||
2468 | } |
||
2469 | |||
2470 | /** |
||
2471 | * Get the fact code postal. |
||
2472 | * |
||
2473 | * @return string|null Returns the fact code postal. |
||
2474 | */ |
||
2475 | public function getFactCodePostal(): ?string { |
||
2476 | return $this->factCodePostal; |
||
2477 | } |
||
2478 | |||
2479 | /** |
||
2480 | * Get the fact complement. |
||
2481 | * |
||
2482 | * @return string|null Returns the fact complement. |
||
2483 | */ |
||
2484 | public function getFactComplement(): ?string { |
||
2485 | return $this->factComplement; |
||
2486 | } |
||
2487 | |||
2488 | /** |
||
2489 | * Get the fact nom rs. |
||
2490 | * |
||
2491 | * @return string|null Returns the fact nom rs. |
||
2492 | */ |
||
2493 | public function getFactNomRs(): ?string { |
||
2494 | return $this->factNomRs; |
||
2495 | } |
||
2496 | |||
2497 | /** |
||
2498 | * Get the fact nom ville. |
||
2499 | * |
||
2500 | * @return string|null Returns the fact nom ville. |
||
2501 | */ |
||
2502 | public function getFactNomVille(): ?string { |
||
2503 | return $this->factNomVille; |
||
2504 | } |
||
2505 | |||
2506 | /** |
||
2507 | * Get the fact nom voie. |
||
2508 | * |
||
2509 | * @return string|null Returns the fact nom voie. |
||
2510 | */ |
||
2511 | public function getFactNomVoie(): ?string { |
||
2512 | return $this->factNomVoie; |
||
2513 | } |
||
2514 | |||
2515 | /** |
||
2516 | * Get the fact num voie. |
||
2517 | * |
||
2518 | * @return string|null Returns the fact num voie. |
||
2519 | */ |
||
2520 | public function getFactNumVoie(): ?string { |
||
2521 | return $this->factNumVoie; |
||
2522 | } |
||
2523 | |||
2524 | /** |
||
2525 | * Get the facturation compta. |
||
2526 | * |
||
2527 | * @return DateTime|null Returns the facturation compta. |
||
2528 | */ |
||
2529 | public function getFacturationCompta(): ?DateTime { |
||
2530 | return $this->facturationCompta; |
||
2531 | } |
||
2532 | |||
2533 | /** |
||
2534 | * Get the facturation compta prec. |
||
2535 | * |
||
2536 | * @return DateTime|null Returns the facturation compta prec. |
||
2537 | */ |
||
2538 | public function getFacturationComptaPrec(): ?DateTime { |
||
2539 | return $this->facturationComptaPrec; |
||
2540 | } |
||
2541 | |||
2542 | /** |
||
2543 | * Get the facturation cotisation. |
||
2544 | * |
||
2545 | * @return bool|null Returns the facturation cotisation. |
||
2546 | */ |
||
2547 | public function getFacturationCotisation(): ?bool { |
||
2548 | return $this->facturationCotisation; |
||
2549 | } |
||
2550 | |||
2551 | /** |
||
2552 | * Get the facturation droit fixe. |
||
2553 | * |
||
2554 | * @return bool|null Returns the facturation droit fixe. |
||
2555 | */ |
||
2556 | public function getFacturationDroitFixe(): ?bool { |
||
2557 | return $this->facturationDroitFixe; |
||
2558 | } |
||
2559 | |||
2560 | /** |
||
2561 | * Get the facturation frais fixe. |
||
2562 | * |
||
2563 | * @return bool|null Returns the facturation frais fixe. |
||
2564 | */ |
||
2565 | public function getFacturationFraisFixe(): ?bool { |
||
2566 | return $this->facturationFraisFixe; |
||
2567 | } |
||
2568 | |||
2569 | /** |
||
2570 | * Get the facturation paie. |
||
2571 | * |
||
2572 | * @return DateTime|null Returns the facturation paie. |
||
2573 | */ |
||
2574 | public function getFacturationPaie(): ?DateTime { |
||
2575 | return $this->facturationPaie; |
||
2576 | } |
||
2577 | |||
2578 | /** |
||
2579 | * Get the facturation paie prec. |
||
2580 | * |
||
2581 | * @return DateTime|null Returns the facturation paie prec. |
||
2582 | */ |
||
2583 | public function getFacturationPaiePrec(): ?DateTime { |
||
2584 | return $this->facturationPaiePrec; |
||
2585 | } |
||
2586 | |||
2587 | /** |
||
2588 | * Get the facture euros. |
||
2589 | * |
||
2590 | * @return bool|null Returns the facture euros. |
||
2591 | */ |
||
2592 | public function getFactureEuros(): ?bool { |
||
2593 | return $this->factureEuros; |
||
2594 | } |
||
2595 | |||
2596 | /** |
||
2597 | * Get the facture isolee. |
||
2598 | * |
||
2599 | * @return bool|null Returns the facture isolee. |
||
2600 | */ |
||
2601 | public function getFactureIsolee(): ?bool { |
||
2602 | return $this->factureIsolee; |
||
2603 | } |
||
2604 | |||
2605 | /** |
||
2606 | * Get the facture temps passes. |
||
2607 | * |
||
2608 | * @return bool|null Returns the facture temps passes. |
||
2609 | */ |
||
2610 | public function getFactureTempsPasses(): ?bool { |
||
2611 | return $this->factureTempsPasses; |
||
2612 | } |
||
2613 | |||
2614 | /** |
||
2615 | * Get the factures mail. |
||
2616 | * |
||
2617 | * @return bool|null Returns the factures mail. |
||
2618 | */ |
||
2619 | public function getFacturesMail(): ?bool { |
||
2620 | return $this->facturesMail; |
||
2621 | } |
||
2622 | |||
2623 | /** |
||
2624 | * Get the fortement impose. |
||
2625 | * |
||
2626 | * @return string|null Returns the fortement impose. |
||
2627 | */ |
||
2628 | public function getFortementImpose(): ?string { |
||
2629 | return $this->fortementImpose; |
||
2630 | } |
||
2631 | |||
2632 | /** |
||
2633 | * Get the frais fixes1. |
||
2634 | * |
||
2635 | * @return bool|null Returns the frais fixes1. |
||
2636 | */ |
||
2637 | public function getFraisFixes1(): ?bool { |
||
2638 | return $this->fraisFixes1; |
||
2639 | } |
||
2640 | |||
2641 | /** |
||
2642 | * Get the frais fixes2. |
||
2643 | * |
||
2644 | * @return bool|null Returns the frais fixes2. |
||
2645 | */ |
||
2646 | public function getFraisFixes2(): ?bool { |
||
2647 | return $this->fraisFixes2; |
||
2648 | } |
||
2649 | |||
2650 | /** |
||
2651 | * Get the franco port1. |
||
2652 | * |
||
2653 | * @return float|null Returns the franco port1. |
||
2654 | */ |
||
2655 | public function getFrancoPort1(): ?float { |
||
2656 | return $this->francoPort1; |
||
2657 | } |
||
2658 | |||
2659 | /** |
||
2660 | * Get the franco port2. |
||
2661 | * |
||
2662 | * @return float|null Returns the franco port2. |
||
2663 | */ |
||
2664 | public function getFrancoPort2(): ?float { |
||
2665 | return $this->francoPort2; |
||
2666 | } |
||
2667 | |||
2668 | /** |
||
2669 | * Get the heure appel. |
||
2670 | * |
||
2671 | * @return string|null Returns the heure appel. |
||
2672 | */ |
||
2673 | public function getHeureAppel(): ?string { |
||
2674 | return $this->heureAppel; |
||
2675 | } |
||
2676 | |||
2677 | /** |
||
2678 | * Get the identifiant tva. |
||
2679 | * |
||
2680 | * @return string|null Returns the identifiant tva. |
||
2681 | */ |
||
2682 | public function getIdentifiantTva(): ?string { |
||
2683 | return $this->identifiantTva; |
||
2684 | } |
||
2685 | |||
2686 | /** |
||
2687 | * Get the indice factures mail. |
||
2688 | * |
||
2689 | * @return int|null Returns the indice factures mail. |
||
2690 | */ |
||
2691 | public function getIndiceFacturesMail(): ?int { |
||
2692 | return $this->indiceFacturesMail; |
||
2693 | } |
||
2694 | |||
2695 | /** |
||
2696 | * Get the insp. |
||
2697 | * |
||
2698 | * @return string|null Returns the insp. |
||
2699 | */ |
||
2700 | public function getInsp(): ?string { |
||
2701 | return $this->insp; |
||
2702 | } |
||
2703 | |||
2704 | /** |
||
2705 | * Get the interesse gestion. |
||
2706 | * |
||
2707 | * @return string|null Returns the interesse gestion. |
||
2708 | */ |
||
2709 | public function getInteresseGestion(): ?string { |
||
2710 | return $this->interesseGestion; |
||
2711 | } |
||
2712 | |||
2713 | /** |
||
2714 | * Get the mensualisation actif. |
||
2715 | * |
||
2716 | * @return bool|null Returns the mensualisation actif. |
||
2717 | */ |
||
2718 | public function getMensualisationActif(): ?bool { |
||
2719 | return $this->mensualisationActif; |
||
2720 | } |
||
2721 | |||
2722 | /** |
||
2723 | * Get the mensualisation au. |
||
2724 | * |
||
2725 | * @return DateTime|null Returns the mensualisation au. |
||
2726 | */ |
||
2727 | public function getMensualisationAu(): ?DateTime { |
||
2728 | return $this->mensualisationAu; |
||
2729 | } |
||
2730 | |||
2731 | /** |
||
2732 | * Get the mensualisation du. |
||
2733 | * |
||
2734 | * @return DateTime|null Returns the mensualisation du. |
||
2735 | */ |
||
2736 | public function getMensualisationDu(): ?DateTime { |
||
2737 | return $this->mensualisationDu; |
||
2738 | } |
||
2739 | |||
2740 | /** |
||
2741 | * Get the mensualisation frequence. |
||
2742 | * |
||
2743 | * @return string|null Returns the mensualisation frequence. |
||
2744 | */ |
||
2745 | public function getMensualisationFrequence(): ?string { |
||
2746 | return $this->mensualisationFrequence; |
||
2747 | } |
||
2748 | |||
2749 | /** |
||
2750 | * Get the mensualisation montant. |
||
2751 | * |
||
2752 | * @return float|null Returns the mensualisation montant. |
||
2753 | */ |
||
2754 | public function getMensualisationMontant(): ?float { |
||
2755 | return $this->mensualisationMontant; |
||
2756 | } |
||
2757 | |||
2758 | /** |
||
2759 | * Get the mission sur dossier. |
||
2760 | * |
||
2761 | * @return int|null Returns the mission sur dossier. |
||
2762 | */ |
||
2763 | public function getMissionSurDossier(): ?int { |
||
2764 | return $this->missionSurDossier; |
||
2765 | } |
||
2766 | |||
2767 | /** |
||
2768 | * Get the modele bl. |
||
2769 | * |
||
2770 | * @return string|null Returns the modele bl. |
||
2771 | */ |
||
2772 | public function getModeleBl(): ?string { |
||
2773 | return $this->modeleBl; |
||
2774 | } |
||
2775 | |||
2776 | /** |
||
2777 | * Get the modele commande. |
||
2778 | * |
||
2779 | * @return string|null Returns the modele commande. |
||
2780 | */ |
||
2781 | public function getModeleCommande(): ?string { |
||
2782 | return $this->modeleCommande; |
||
2783 | } |
||
2784 | |||
2785 | /** |
||
2786 | * Get the modele facture. |
||
2787 | * |
||
2788 | * @return string|null Returns the modele facture. |
||
2789 | */ |
||
2790 | public function getModeleFacture(): ?string { |
||
2791 | return $this->modeleFacture; |
||
2792 | } |
||
2793 | |||
2794 | /** |
||
2795 | * Get the modele proformas. |
||
2796 | * |
||
2797 | * @return string|null Returns the modele proformas. |
||
2798 | */ |
||
2799 | public function getModeleProformas(): ?string { |
||
2800 | return $this->modeleProformas; |
||
2801 | } |
||
2802 | |||
2803 | /** |
||
2804 | * Get the modele releve. |
||
2805 | * |
||
2806 | * @return string|null Returns the modele releve. |
||
2807 | */ |
||
2808 | public function getModeleReleve(): ?string { |
||
2809 | return $this->modeleReleve; |
||
2810 | } |
||
2811 | |||
2812 | /** |
||
2813 | * Get the mois cloture. |
||
2814 | * |
||
2815 | * @return string|null Returns the mois cloture. |
||
2816 | */ |
||
2817 | public function getMoisCloture(): ?string { |
||
2818 | return $this->moisCloture; |
||
2819 | } |
||
2820 | |||
2821 | /** |
||
2822 | * Get the mois cotisation. |
||
2823 | * |
||
2824 | * @return int|null Returns the mois cotisation. |
||
2825 | */ |
||
2826 | public function getMoisCotisation(): ?int { |
||
2827 | return $this->moisCotisation; |
||
2828 | } |
||
2829 | |||
2830 | /** |
||
2831 | * Get the mois droit fixe. |
||
2832 | * |
||
2833 | * @return int|null Returns the mois droit fixe. |
||
2834 | */ |
||
2835 | public function getMoisDroitFixe(): ?int { |
||
2836 | return $this->moisDroitFixe; |
||
2837 | } |
||
2838 | |||
2839 | /** |
||
2840 | * Get the mt cmd non fact. |
||
2841 | * |
||
2842 | * @return float|null Returns the mt cmd non fact. |
||
2843 | */ |
||
2844 | public function getMtCmdNonFact(): ?float { |
||
2845 | return $this->mtCmdNonFact; |
||
2846 | } |
||
2847 | |||
2848 | /** |
||
2849 | * Get the mt encours. |
||
2850 | * |
||
2851 | * @return float|null Returns the mt encours. |
||
2852 | */ |
||
2853 | public function getMtEncours(): ?float { |
||
2854 | return $this->mtEncours; |
||
2855 | } |
||
2856 | |||
2857 | /** |
||
2858 | * Get the mt encours autorise. |
||
2859 | * |
||
2860 | * @return float|null Returns the mt encours autorise. |
||
2861 | */ |
||
2862 | public function getMtEncoursAutorise(): ?float { |
||
2863 | return $this->mtEncoursAutorise; |
||
2864 | } |
||
2865 | |||
2866 | /** |
||
2867 | * Get the nb appels en cours. |
||
2868 | * |
||
2869 | * @return int|null Returns the nb appels en cours. |
||
2870 | */ |
||
2871 | public function getNbAppelsEnCours(): ?int { |
||
2872 | return $this->nbAppelsEnCours; |
||
2873 | } |
||
2874 | |||
2875 | /** |
||
2876 | * Get the nb bl. |
||
2877 | * |
||
2878 | * @return string|null Returns the nb bl. |
||
2879 | */ |
||
2880 | public function getNbBl(): ?string { |
||
2881 | return $this->nbBl; |
||
2882 | } |
||
2883 | |||
2884 | /** |
||
2885 | * Get the nb bl non chiffres. |
||
2886 | * |
||
2887 | * @return int|null Returns the nb bl non chiffres. |
||
2888 | */ |
||
2889 | public function getNbBlNonChiffres(): ?int { |
||
2890 | return $this->nbBlNonChiffres; |
||
2891 | } |
||
2892 | |||
2893 | /** |
||
2894 | * Get the nb commande. |
||
2895 | * |
||
2896 | * @return string|null Returns the nb commande. |
||
2897 | */ |
||
2898 | public function getNbCommande(): ?string { |
||
2899 | return $this->nbCommande; |
||
2900 | } |
||
2901 | |||
2902 | /** |
||
2903 | * Get the nb devis. |
||
2904 | * |
||
2905 | * @return string|null Returns the nb devis. |
||
2906 | */ |
||
2907 | public function getNbDevis(): ?string { |
||
2908 | return $this->nbDevis; |
||
2909 | } |
||
2910 | |||
2911 | /** |
||
2912 | * Get the nb facture. |
||
2913 | * |
||
2914 | * @return string|null Returns the nb facture. |
||
2915 | */ |
||
2916 | public function getNbFacture(): ?string { |
||
2917 | return $this->nbFacture; |
||
2918 | } |
||
2919 | |||
2920 | /** |
||
2921 | * Get the nb jour interval. |
||
2922 | * |
||
2923 | * @return int|null Returns the nb jour interval. |
||
2924 | */ |
||
2925 | public function getNbJourInterval(): ?int { |
||
2926 | return $this->nbJourInterval; |
||
2927 | } |
||
2928 | |||
2929 | /** |
||
2930 | * Get the nb max bl. |
||
2931 | * |
||
2932 | * @return string|null Returns the nb max bl. |
||
2933 | */ |
||
2934 | public function getNbMaxBl(): ?string { |
||
2935 | return $this->nbMaxBl; |
||
2936 | } |
||
2937 | |||
2938 | /** |
||
2939 | * Get the nb releve. |
||
2940 | * |
||
2941 | * @return string|null Returns the nb releve. |
||
2942 | */ |
||
2943 | public function getNbReleve(): ?string { |
||
2944 | return $this->nbReleve; |
||
2945 | } |
||
2946 | |||
2947 | /** |
||
2948 | * Get the nombre echeances. |
||
2949 | * |
||
2950 | * @return string|null Returns the nombre echeances. |
||
2951 | */ |
||
2952 | public function getNombreEcheances(): ?string { |
||
2953 | return $this->nombreEcheances; |
||
2954 | } |
||
2955 | |||
2956 | /** |
||
2957 | * Get the nombre mois exercice. |
||
2958 | * |
||
2959 | * @return string|null Returns the nombre mois exercice. |
||
2960 | */ |
||
2961 | public function getNombreMoisExercice(): ?string { |
||
2962 | return $this->nombreMoisExercice; |
||
2963 | } |
||
2964 | |||
2965 | /** |
||
2966 | * Get the notoriete. |
||
2967 | * |
||
2968 | * @return string|null Returns the notoriete. |
||
2969 | */ |
||
2970 | public function getNotoriete(): ?string { |
||
2971 | return $this->notoriete; |
||
2972 | } |
||
2973 | |||
2974 | /** |
||
2975 | * Get the num web adherent. |
||
2976 | * |
||
2977 | * @return string|null Returns the num web adherent. |
||
2978 | */ |
||
2979 | public function getNumWebAdherent(): ?string { |
||
2980 | return $this->numWebAdherent; |
||
2981 | } |
||
2982 | |||
2983 | /** |
||
2984 | * Get the numero compte. |
||
2985 | * |
||
2986 | * @return string|null Returns the numero compte. |
||
2987 | */ |
||
2988 | public function getNumeroCompte(): ?string { |
||
2989 | return $this->numeroCompte; |
||
2990 | } |
||
2991 | |||
2992 | /** |
||
2993 | * Get the observation1. |
||
2994 | * |
||
2995 | * @return string|null Returns the observation1. |
||
2996 | */ |
||
2997 | public function getObservation1(): ?string { |
||
2998 | return $this->observation1; |
||
2999 | } |
||
3000 | |||
3001 | /** |
||
3002 | * Get the observation2. |
||
3003 | * |
||
3004 | * @return string|null Returns the observation2. |
||
3005 | */ |
||
3006 | public function getObservation2(): ?string { |
||
3007 | return $this->observation2; |
||
3008 | } |
||
3009 | |||
3010 | /** |
||
3011 | * Get the observation3. |
||
3012 | * |
||
3013 | * @return string|null Returns the observation3. |
||
3014 | */ |
||
3015 | public function getObservation3(): ?string { |
||
3016 | return $this->observation3; |
||
3017 | } |
||
3018 | |||
3019 | /** |
||
3020 | * Get the occasionnel. |
||
3021 | * |
||
3022 | * @return bool|null Returns the occasionnel. |
||
3023 | */ |
||
3024 | public function getOccasionnel(): ?bool { |
||
3025 | return $this->occasionnel; |
||
3026 | } |
||
3027 | |||
3028 | /** |
||
3029 | * Get the organisation adm. |
||
3030 | * |
||
3031 | * @return string|null Returns the organisation adm. |
||
3032 | */ |
||
3033 | public function getOrganisationAdm(): ?string { |
||
3034 | return $this->organisationAdm; |
||
3035 | } |
||
3036 | |||
3037 | /** |
||
3038 | * Get the paiement depart le. |
||
3039 | * |
||
3040 | * @return int|null Returns the paiement depart le. |
||
3041 | */ |
||
3042 | public function getPaiementDepartLe(): ?int { |
||
3043 | return $this->paiementDepartLe; |
||
3044 | } |
||
3045 | |||
3046 | /** |
||
3047 | * Get the paiement le. |
||
3048 | * |
||
3049 | * @return string|null Returns the paiement le. |
||
3050 | */ |
||
3051 | public function getPaiementLe(): ?string { |
||
3052 | return $this->paiementLe; |
||
3053 | } |
||
3054 | |||
3055 | /** |
||
3056 | * Get the paiement nombre de jours. |
||
3057 | * |
||
3058 | * @return int|null Returns the paiement nombre de jours. |
||
3059 | */ |
||
3060 | public function getPaiementNombreDeJours(): ?int { |
||
3061 | return $this->paiementNombreDeJours; |
||
3062 | } |
||
3063 | |||
3064 | /** |
||
3065 | * Get the pas productif. |
||
3066 | * |
||
3067 | * @return bool|null Returns the pas productif. |
||
3068 | */ |
||
3069 | public function getPasProductif(): ?bool { |
||
3070 | return $this->pasProductif; |
||
3071 | } |
||
3072 | |||
3073 | /** |
||
3074 | * Get the pas taches operationnelles. |
||
3075 | * |
||
3076 | * @return bool|null Returns the pas taches operationnelles. |
||
3077 | */ |
||
3078 | public function getPasTachesOperationnelles(): ?bool { |
||
3079 | return $this->pasTachesOperationnelles; |
||
3080 | } |
||
3081 | |||
3082 | /** |
||
3083 | * Get the patrimoine. |
||
3084 | * |
||
3085 | * @return string|null Returns the patrimoine. |
||
3086 | */ |
||
3087 | public function getPatrimoine(): ?string { |
||
3088 | return $this->patrimoine; |
||
3089 | } |
||
3090 | |||
3091 | /** |
||
3092 | * Get the prelevements perso. |
||
3093 | * |
||
3094 | * @return string|null Returns the prelevements perso. |
||
3095 | */ |
||
3096 | public function getPrelevementsPerso(): ?string { |
||
3097 | return $this->prelevementsPerso; |
||
3098 | } |
||
3099 | |||
3100 | /** |
||
3101 | * Get the prescripteur. |
||
3102 | * |
||
3103 | * @return string|null Returns the prescripteur. |
||
3104 | */ |
||
3105 | public function getPrescripteur(): ?string { |
||
3106 | return $this->prescripteur; |
||
3107 | } |
||
3108 | |||
3109 | /** |
||
3110 | * Get the previsionnel. |
||
3111 | * |
||
3112 | * @return string|null Returns the previsionnel. |
||
3113 | */ |
||
3114 | public function getPrevisionnel(): ?string { |
||
3115 | return $this->previsionnel; |
||
3116 | } |
||
3117 | |||
3118 | /** |
||
3119 | * Get the prioritaire. |
||
3120 | * |
||
3121 | * @return bool|null Returns the prioritaire. |
||
3122 | */ |
||
3123 | public function getPrioritaire(): ?bool { |
||
3124 | return $this->prioritaire; |
||
3125 | } |
||
3126 | |||
3127 | /** |
||
3128 | * Get the profil dir anxieux. |
||
3129 | * |
||
3130 | * @return bool|null Returns the profil dir anxieux. |
||
3131 | */ |
||
3132 | public function getProfilDirAnxieux(): ?bool { |
||
3133 | return $this->profilDirAnxieux; |
||
3134 | } |
||
3135 | |||
3136 | /** |
||
3137 | * Get the profil dir commercial. |
||
3138 | * |
||
3139 | * @return bool|null Returns the profil dir commercial. |
||
3140 | */ |
||
3141 | public function getProfilDirCommercial(): ?bool { |
||
3142 | return $this->profilDirCommercial; |
||
3143 | } |
||
3144 | |||
3145 | /** |
||
3146 | * Get the profil dir gestionnaire. |
||
3147 | * |
||
3148 | * @return bool|null Returns the profil dir gestionnaire. |
||
3149 | */ |
||
3150 | public function getProfilDirGestionnaire(): ?bool { |
||
3151 | return $this->profilDirGestionnaire; |
||
3152 | } |
||
3153 | |||
3154 | /** |
||
3155 | * Get the profil dir somnolent. |
||
3156 | * |
||
3157 | * @return bool|null Returns the profil dir somnolent. |
||
3158 | */ |
||
3159 | public function getProfilDirSomnolent(): ?bool { |
||
3160 | return $this->profilDirSomnolent; |
||
3161 | } |
||
3162 | |||
3163 | /** |
||
3164 | * Get the profil dir technicien. |
||
3165 | * |
||
3166 | * @return bool|null Returns the profil dir technicien. |
||
3167 | */ |
||
3168 | public function getProfilDirTechnicien(): ?bool { |
||
3169 | return $this->profilDirTechnicien; |
||
3170 | } |
||
3171 | |||
3172 | /** |
||
3173 | * Get the profil ent. |
||
3174 | * |
||
3175 | * @return string|null Returns the profil ent. |
||
3176 | */ |
||
3177 | public function getProfilEnt(): ?string { |
||
3178 | return $this->profilEnt; |
||
3179 | } |
||
3180 | |||
3181 | /** |
||
3182 | * Get the prospect. |
||
3183 | * |
||
3184 | * @return bool|null Returns the prospect. |
||
3185 | */ |
||
3186 | public function getProspect(): ?bool { |
||
3187 | return $this->prospect; |
||
3188 | } |
||
3189 | |||
3190 | /** |
||
3191 | * Get the qualite paiement. |
||
3192 | * |
||
3193 | * @return string|null Returns the qualite paiement. |
||
3194 | */ |
||
3195 | public function getQualitePaiement(): ?string { |
||
3196 | return $this->qualitePaiement; |
||
3197 | } |
||
3198 | |||
3199 | /** |
||
3200 | * Get the raison fin activite. |
||
3201 | * |
||
3202 | * @return string|null Returns the raison fin activite. |
||
3203 | */ |
||
3204 | public function getRaisonFinActivite(): ?string { |
||
3205 | return $this->raisonFinActivite; |
||
3206 | } |
||
3207 | |||
3208 | /** |
||
3209 | * Get the raison mv paiement. |
||
3210 | * |
||
3211 | * @return string|null Returns the raison mv paiement. |
||
3212 | */ |
||
3213 | public function getRaisonMvPaiement(): ?string { |
||
3214 | return $this->raisonMvPaiement; |
||
3215 | } |
||
3216 | |||
3217 | /** |
||
3218 | * Get the regime. |
||
3219 | * |
||
3220 | * @return string|null Returns the regime. |
||
3221 | */ |
||
3222 | public function getRegime(): ?string { |
||
3223 | return $this->regime; |
||
3224 | } |
||
3225 | |||
3226 | /** |
||
3227 | * Get the regroupement fact. |
||
3228 | * |
||
3229 | * @return string|null Returns the regroupement fact. |
||
3230 | */ |
||
3231 | public function getRegroupementFact(): ?string { |
||
3232 | return $this->regroupementFact; |
||
3233 | } |
||
3234 | |||
3235 | /** |
||
3236 | * Get the relation cabinet. |
||
3237 | * |
||
3238 | * @return string|null Returns the relation cabinet. |
||
3239 | */ |
||
3240 | public function getRelationCabinet(): ?string { |
||
3241 | return $this->relationCabinet; |
||
3242 | } |
||
3243 | |||
3244 | /** |
||
3245 | * Get the releve facture. |
||
3246 | * |
||
3247 | * @return bool|null Returns the releve facture. |
||
3248 | */ |
||
3249 | public function getReleveFacture(): ?bool { |
||
3250 | return $this->releveFacture; |
||
3251 | } |
||
3252 | |||
3253 | /** |
||
3254 | * Get the remise ligne1. |
||
3255 | * |
||
3256 | * @return float|null Returns the remise ligne1. |
||
3257 | */ |
||
3258 | public function getRemiseLigne1(): ?float { |
||
3259 | return $this->remiseLigne1; |
||
3260 | } |
||
3261 | |||
3262 | /** |
||
3263 | * Get the remise ligne2. |
||
3264 | * |
||
3265 | * @return float|null Returns the remise ligne2. |
||
3266 | */ |
||
3267 | public function getRemiseLigne2(): ?float { |
||
3268 | return $this->remiseLigne2; |
||
3269 | } |
||
3270 | |||
3271 | /** |
||
3272 | * Get the remise ligne3. |
||
3273 | * |
||
3274 | * @return float|null Returns the remise ligne3. |
||
3275 | */ |
||
3276 | public function getRemiseLigne3(): ?float { |
||
3277 | return $this->remiseLigne3; |
||
3278 | } |
||
3279 | |||
3280 | /** |
||
3281 | * Get the remise pied. |
||
3282 | * |
||
3283 | * @return float|null Returns the remise pied. |
||
3284 | */ |
||
3285 | public function getRemisePied(): ?float { |
||
3286 | return $this->remisePied; |
||
3287 | } |
||
3288 | |||
3289 | /** |
||
3290 | * Get the remise pied2. |
||
3291 | * |
||
3292 | * @return float|null Returns the remise pied2. |
||
3293 | */ |
||
3294 | public function getRemisePied2(): ?float { |
||
3295 | return $this->remisePied2; |
||
3296 | } |
||
3297 | |||
3298 | /** |
||
3299 | * Get the remise pied3. |
||
3300 | * |
||
3301 | * @return float|null Returns the remise pied3. |
||
3302 | */ |
||
3303 | public function getRemisePied3(): ?float { |
||
3304 | return $this->remisePied3; |
||
3305 | } |
||
3306 | |||
3307 | /** |
||
3308 | * Get the resultat. |
||
3309 | * |
||
3310 | * @return float|null Returns the resultat. |
||
3311 | */ |
||
3312 | public function getResultat(): ?float { |
||
3313 | return $this->resultat; |
||
3314 | } |
||
3315 | |||
3316 | /** |
||
3317 | * Get the rib. |
||
3318 | * |
||
3319 | * @return string|null Returns the rib. |
||
3320 | */ |
||
3321 | public function getRib(): ?string { |
||
3322 | return $this->rib; |
||
3323 | } |
||
3324 | |||
3325 | /** |
||
3326 | * Get the sante financiere. |
||
3327 | * |
||
3328 | * @return string|null Returns the sante financiere. |
||
3329 | */ |
||
3330 | public function getSanteFinanciere(): ?string { |
||
3331 | return $this->santeFinanciere; |
||
3332 | } |
||
3333 | |||
3334 | /** |
||
3335 | * Get the service cpta. |
||
3336 | * |
||
3337 | * @return bool|null Returns the service cpta. |
||
3338 | */ |
||
3339 | public function getServiceCpta(): ?bool { |
||
3340 | return $this->serviceCpta; |
||
3341 | } |
||
3342 | |||
3343 | /** |
||
3344 | * Get the siege groupe. |
||
3345 | * |
||
3346 | * @return bool|null Returns the siege groupe. |
||
3347 | */ |
||
3348 | public function getSiegeGroupe(): ?bool { |
||
3349 | return $this->siegeGroupe; |
||
3350 | } |
||
3351 | |||
3352 | /** |
||
3353 | * Get the social. |
||
3354 | * |
||
3355 | * @return bool|null Returns the social. |
||
3356 | */ |
||
3357 | public function getSocial(): ?bool { |
||
3358 | return $this->social; |
||
3359 | } |
||
3360 | |||
3361 | /** |
||
3362 | * Get the social btq. |
||
3363 | * |
||
3364 | * @return string|null Returns the social btq. |
||
3365 | */ |
||
3366 | public function getSocialBtq(): ?string { |
||
3367 | return $this->socialBtq; |
||
3368 | } |
||
3369 | |||
3370 | /** |
||
3371 | * Get the social bureau distributeur. |
||
3372 | * |
||
3373 | * @return string|null Returns the social bureau distributeur. |
||
3374 | */ |
||
3375 | public function getSocialBureauDistributeur(): ?string { |
||
3376 | return $this->socialBureauDistributeur; |
||
3377 | } |
||
3378 | |||
3379 | /** |
||
3380 | * Get the social code officiel commune. |
||
3381 | * |
||
3382 | * @return string|null Returns the social code officiel commune. |
||
3383 | */ |
||
3384 | public function getSocialCodeOfficielCommune(): ?string { |
||
3385 | return $this->socialCodeOfficielCommune; |
||
3386 | } |
||
3387 | |||
3388 | /** |
||
3389 | * Get the social code postal. |
||
3390 | * |
||
3391 | * @return string|null Returns the social code postal. |
||
3392 | */ |
||
3393 | public function getSocialCodePostal(): ?string { |
||
3394 | return $this->socialCodePostal; |
||
3395 | } |
||
3396 | |||
3397 | /** |
||
3398 | * Get the social complement. |
||
3399 | * |
||
3400 | * @return string|null Returns the social complement. |
||
3401 | */ |
||
3402 | public function getSocialComplement(): ?string { |
||
3403 | return $this->socialComplement; |
||
3404 | } |
||
3405 | |||
3406 | /** |
||
3407 | * Get the social nom rs. |
||
3408 | * |
||
3409 | * @return string|null Returns the social nom rs. |
||
3410 | */ |
||
3411 | public function getSocialNomRs(): ?string { |
||
3412 | return $this->socialNomRs; |
||
3413 | } |
||
3414 | |||
3415 | /** |
||
3416 | * Get the social nom ville. |
||
3417 | * |
||
3418 | * @return string|null Returns the social nom ville. |
||
3419 | */ |
||
3420 | public function getSocialNomVille(): ?string { |
||
3421 | return $this->socialNomVille; |
||
3422 | } |
||
3423 | |||
3424 | /** |
||
3425 | * Get the social nom voie. |
||
3426 | * |
||
3427 | * @return string|null Returns the social nom voie. |
||
3428 | */ |
||
3429 | public function getSocialNomVoie(): ?string { |
||
3430 | return $this->socialNomVoie; |
||
3431 | } |
||
3432 | |||
3433 | /** |
||
3434 | * Get the social num voie. |
||
3435 | * |
||
3436 | * @return string|null Returns the social num voie. |
||
3437 | */ |
||
3438 | public function getSocialNumVoie(): ?string { |
||
3439 | return $this->socialNumVoie; |
||
3440 | } |
||
3441 | |||
3442 | /** |
||
3443 | * Get the soumis escompte. |
||
3444 | * |
||
3445 | * @return bool|null Returns the soumis escompte. |
||
3446 | */ |
||
3447 | public function getSoumisEscompte(): ?bool { |
||
3448 | return $this->soumisEscompte; |
||
3449 | } |
||
3450 | |||
3451 | /** |
||
3452 | * Get the soumis port1. |
||
3453 | * |
||
3454 | * @return string|null Returns the soumis port1. |
||
3455 | */ |
||
3456 | public function getSoumisPort1(): ?string { |
||
3457 | return $this->soumisPort1; |
||
3458 | } |
||
3459 | |||
3460 | /** |
||
3461 | * Get the soumis port2. |
||
3462 | * |
||
3463 | * @return string|null Returns the soumis port2. |
||
3464 | */ |
||
3465 | public function getSoumisPort2(): ?string { |
||
3466 | return $this->soumisPort2; |
||
3467 | } |
||
3468 | |||
3469 | /** |
||
3470 | * Get the soumis taxe1. |
||
3471 | * |
||
3472 | * @return bool|null Returns the soumis taxe1. |
||
3473 | */ |
||
3474 | public function getSoumisTaxe1(): ?bool { |
||
3475 | return $this->soumisTaxe1; |
||
3476 | } |
||
3477 | |||
3478 | /** |
||
3479 | * Get the soumis taxe2. |
||
3480 | * |
||
3481 | * @return bool|null Returns the soumis taxe2. |
||
3482 | */ |
||
3483 | public function getSoumisTaxe2(): ?bool { |
||
3484 | return $this->soumisTaxe2; |
||
3485 | } |
||
3486 | |||
3487 | /** |
||
3488 | * Get the soumis taxe3. |
||
3489 | * |
||
3490 | * @return bool|null Returns the soumis taxe3. |
||
3491 | */ |
||
3492 | public function getSoumisTaxe3(): ?bool { |
||
3493 | return $this->soumisTaxe3; |
||
3494 | } |
||
3495 | |||
3496 | /** |
||
3497 | * Get the soumis taxe4. |
||
3498 | * |
||
3499 | * @return bool|null Returns the soumis taxe4. |
||
3500 | */ |
||
3501 | public function getSoumisTaxe4(): ?bool { |
||
3502 | return $this->soumisTaxe4; |
||
3503 | } |
||
3504 | |||
3505 | /** |
||
3506 | * Get the soumis taxe5. |
||
3507 | * |
||
3508 | * @return bool|null Returns the soumis taxe5. |
||
3509 | */ |
||
3510 | public function getSoumisTaxe5(): ?bool { |
||
3511 | return $this->soumisTaxe5; |
||
3512 | } |
||
3513 | |||
3514 | /** |
||
3515 | * Get the soumis tva. |
||
3516 | * |
||
3517 | * @return bool|null Returns the soumis tva. |
||
3518 | */ |
||
3519 | public function getSoumisTva(): ?bool { |
||
3520 | return $this->soumisTva; |
||
3521 | } |
||
3522 | |||
3523 | /** |
||
3524 | * Get the tableau de bord. |
||
3525 | * |
||
3526 | * @return string|null Returns the tableau de bord. |
||
3527 | */ |
||
3528 | public function getTableauDeBord(): ?string { |
||
3529 | return $this->tableauDeBord; |
||
3530 | } |
||
3531 | |||
3532 | /** |
||
3533 | * Get the toutes activites. |
||
3534 | * |
||
3535 | * @return string|null Returns the toutes activites. |
||
3536 | */ |
||
3537 | public function getToutesActivites(): ?string { |
||
3538 | return $this->toutesActivites; |
||
3539 | } |
||
3540 | |||
3541 | /** |
||
3542 | * Get the transporteur. |
||
3543 | * |
||
3544 | * @return string|null Returns the transporteur. |
||
3545 | */ |
||
3546 | public function getTransporteur(): ?string { |
||
3547 | return $this->transporteur; |
||
3548 | } |
||
3549 | |||
3550 | /** |
||
3551 | * Get the tresorerie. |
||
3552 | * |
||
3553 | * @return string|null Returns the tresorerie. |
||
3554 | */ |
||
3555 | public function getTresorerie(): ?string { |
||
3556 | return $this->tresorerie; |
||
3557 | } |
||
3558 | |||
3559 | /** |
||
3560 | * Get the tva regime. |
||
3561 | * |
||
3562 | * @return string|null Returns the tva regime. |
||
3563 | */ |
||
3564 | public function getTvaRegime(): ?string { |
||
3565 | return $this->tvaRegime; |
||
3566 | } |
||
3567 | |||
3568 | /** |
||
3569 | * Get the tx escompte vente. |
||
3570 | * |
||
3571 | * @return float|null Returns the tx escompte vente. |
||
3572 | */ |
||
3573 | public function getTxEscompteVente(): ?float { |
||
3574 | return $this->txEscompteVente; |
||
3575 | } |
||
3576 | |||
3577 | /** |
||
3578 | * Get the type client. |
||
3579 | * |
||
3580 | * @return string|null Returns the type client. |
||
3581 | */ |
||
3582 | public function getTypeClient(): ?string { |
||
3583 | return $this->typeClient; |
||
3584 | } |
||
3585 | |||
3586 | /** |
||
3587 | * Get the type edit bl. |
||
3588 | * |
||
3589 | * @return string|null Returns the type edit bl. |
||
3590 | */ |
||
3591 | public function getTypeEditBl(): ?string { |
||
3592 | return $this->typeEditBl; |
||
3593 | } |
||
3594 | |||
3595 | /** |
||
3596 | * Get the type facture. |
||
3597 | * |
||
3598 | * @return int|null Returns the type facture. |
||
3599 | */ |
||
3600 | public function getTypeFacture(): ?int { |
||
3601 | return $this->typeFacture; |
||
3602 | } |
||
3603 | |||
3604 | /** |
||
3605 | * Get the type gestion etebac. |
||
3606 | * |
||
3607 | * @return string|null Returns the type gestion etebac. |
||
3608 | */ |
||
3609 | public function getTypeGestionEtebac(): ?string { |
||
3610 | return $this->typeGestionEtebac; |
||
3611 | } |
||
3612 | |||
3613 | /** |
||
3614 | * Get the use adresse fact. |
||
3615 | * |
||
3616 | * @return bool|null Returns the use adresse fact. |
||
3617 | */ |
||
3618 | public function getUseAdresseFact(): ?bool { |
||
3619 | return $this->useAdresseFact; |
||
3620 | } |
||
3621 | |||
3622 | /** |
||
3623 | * Get the use corres sociale. |
||
3624 | * |
||
3625 | * @return bool|null Returns the use corres sociale. |
||
3626 | */ |
||
3627 | public function getUseCorresSociale(): ?bool { |
||
3628 | return $this->useCorresSociale; |
||
3629 | } |
||
3630 | |||
3631 | /** |
||
3632 | * Set the actif. |
||
3633 | * |
||
3634 | * @param bool|null $actif The actif. |
||
3635 | * @return Clients Returns this Clients. |
||
3636 | */ |
||
3637 | public function setActif(?bool $actif): Clients { |
||
3638 | $this->actif = $actif; |
||
3639 | return $this; |
||
3640 | } |
||
3641 | |||
3642 | /** |
||
3643 | * Set the activite nouvelle. |
||
3644 | * |
||
3645 | * @param bool|null $activiteNouvelle The activite nouvelle. |
||
3646 | * @return Clients Returns this Clients. |
||
3647 | */ |
||
3648 | public function setActiviteNouvelle(?bool $activiteNouvelle): Clients { |
||
3649 | $this->activiteNouvelle = $activiteNouvelle; |
||
3650 | return $this; |
||
3651 | } |
||
3652 | |||
3653 | /** |
||
3654 | * Set the activite saiso. |
||
3655 | * |
||
3656 | * @param bool|null $activiteSaiso The activite saiso. |
||
3657 | * @return Clients Returns this Clients. |
||
3658 | */ |
||
3659 | public function setActiviteSaiso(?bool $activiteSaiso): Clients { |
||
3660 | $this->activiteSaiso = $activiteSaiso; |
||
3661 | return $this; |
||
3662 | } |
||
3663 | |||
3664 | /** |
||
3665 | * Set the adresse site client. |
||
3666 | * |
||
3667 | * @param string|null $adresseSiteClient The adresse site client. |
||
3668 | * @return Clients Returns this Clients. |
||
3669 | */ |
||
3670 | public function setAdresseSiteClient(?string $adresseSiteClient): Clients { |
||
3671 | $this->adresseSiteClient = $adresseSiteClient; |
||
3672 | return $this; |
||
3673 | } |
||
3674 | |||
3675 | /** |
||
3676 | * Set the article port1. |
||
3677 | * |
||
3678 | * @param string|null $articlePort1 The article port1. |
||
3679 | * @return Clients Returns this Clients. |
||
3680 | */ |
||
3681 | public function setArticlePort1(?string $articlePort1): Clients { |
||
3682 | $this->articlePort1 = $articlePort1; |
||
3683 | return $this; |
||
3684 | } |
||
3685 | |||
3686 | /** |
||
3687 | * Set the article port2. |
||
3688 | * |
||
3689 | * @param string|null $articlePort2 The article port2. |
||
3690 | * @return Clients Returns this Clients. |
||
3691 | */ |
||
3692 | public function setArticlePort2(?string $articlePort2): Clients { |
||
3693 | $this->articlePort2 = $articlePort2; |
||
3694 | return $this; |
||
3695 | } |
||
3696 | |||
3697 | /** |
||
3698 | * Set the assurance. |
||
3699 | * |
||
3700 | * @param bool|null $assurance The assurance. |
||
3701 | * @return Clients Returns this Clients. |
||
3702 | */ |
||
3703 | public function setAssurance(?bool $assurance): Clients { |
||
3704 | $this->assurance = $assurance; |
||
3705 | return $this; |
||
3706 | } |
||
3707 | |||
3708 | /** |
||
3709 | * Set the bibliotheque novaxel. |
||
3710 | * |
||
3711 | * @param string|null $bibliothequeNovaxel The bibliotheque novaxel. |
||
3712 | * @return Clients Returns this Clients. |
||
3713 | */ |
||
3714 | public function setBibliothequeNovaxel(?string $bibliothequeNovaxel): Clients { |
||
3715 | $this->bibliothequeNovaxel = $bibliothequeNovaxel; |
||
3716 | return $this; |
||
3717 | } |
||
3718 | |||
3719 | /** |
||
3720 | * Set the bl chiffre. |
||
3721 | * |
||
3722 | * @param bool|null $blChiffre The bl chiffre. |
||
3723 | * @return Clients Returns this Clients. |
||
3724 | */ |
||
3725 | public function setBlChiffre(?bool $blChiffre): Clients { |
||
3726 | $this->blChiffre = $blChiffre; |
||
3727 | return $this; |
||
3728 | } |
||
3729 | |||
3730 | /** |
||
3731 | * Set the bloque. |
||
3732 | * |
||
3733 | * @param bool|null $bloque The bloque. |
||
3734 | * @return Clients Returns this Clients. |
||
3735 | */ |
||
3736 | public function setBloque(?bool $bloque): Clients { |
||
3737 | $this->bloque = $bloque; |
||
3738 | return $this; |
||
3739 | } |
||
3740 | |||
3741 | /** |
||
3742 | * Set the cde auto manu. |
||
3743 | * |
||
3744 | * @param string|null $cdeAutoManu The cde auto manu. |
||
3745 | * @return Clients Returns this Clients. |
||
3746 | */ |
||
3747 | public function setCdeAutoManu(?string $cdeAutoManu): Clients { |
||
3748 | $this->cdeAutoManu = $cdeAutoManu; |
||
3749 | return $this; |
||
3750 | } |
||
3751 | |||
3752 | /** |
||
3753 | * Set the cga. |
||
3754 | * |
||
3755 | * @param bool|null $cga The cga. |
||
3756 | * @return Clients Returns this Clients. |
||
3757 | */ |
||
3758 | public function setCga(?bool $cga): Clients { |
||
3759 | $this->cga = $cga; |
||
3760 | return $this; |
||
3761 | } |
||
3762 | |||
3763 | /** |
||
3764 | * Set the charges. |
||
3765 | * |
||
3766 | * @param string|null $charges The charges. |
||
3767 | * @return Clients Returns this Clients. |
||
3768 | */ |
||
3769 | public function setCharges(?string $charges): Clients { |
||
3770 | $this->charges = $charges; |
||
3771 | return $this; |
||
3772 | } |
||
3773 | |||
3774 | /** |
||
3775 | * Set the chiffre affaire. |
||
3776 | * |
||
3777 | * @param float|null $chiffreAffaire The chiffre affaire. |
||
3778 | * @return Clients Returns this Clients. |
||
3779 | */ |
||
3780 | public function setChiffreAffaire(?float $chiffreAffaire): Clients { |
||
3781 | $this->chiffreAffaire = $chiffreAffaire; |
||
3782 | return $this; |
||
3783 | } |
||
3784 | |||
3785 | /** |
||
3786 | * Set the cle alpha. |
||
3787 | * |
||
3788 | * @param string|null $cleAlpha The cle alpha. |
||
3789 | * @return Clients Returns this Clients. |
||
3790 | */ |
||
3791 | public function setCleAlpha(?string $cleAlpha): Clients { |
||
3792 | $this->cleAlpha = $cleAlpha; |
||
3793 | return $this; |
||
3794 | } |
||
3795 | |||
3796 | /** |
||
3797 | * Set the code. |
||
3798 | * |
||
3799 | * @param string|null $code The code. |
||
3800 | * @return Clients Returns this Clients. |
||
3801 | */ |
||
3802 | public function setCode(?string $code): Clients { |
||
3803 | $this->code = $code; |
||
3804 | return $this; |
||
3805 | } |
||
3806 | |||
3807 | /** |
||
3808 | * Set the code activite. |
||
3809 | * |
||
3810 | * @param string|null $codeActivite The code activite. |
||
3811 | * @return Clients Returns this Clients. |
||
3812 | */ |
||
3813 | public function setCodeActivite(?string $codeActivite): Clients { |
||
3814 | $this->codeActivite = $codeActivite; |
||
3815 | return $this; |
||
3816 | } |
||
3817 | |||
3818 | /** |
||
3819 | * Set the code agence. |
||
3820 | * |
||
3821 | * @param string|null $codeAgence The code agence. |
||
3822 | * @return Clients Returns this Clients. |
||
3823 | */ |
||
3824 | public function setCodeAgence(?string $codeAgence): Clients { |
||
3825 | $this->codeAgence = $codeAgence; |
||
3826 | return $this; |
||
3827 | } |
||
3828 | |||
3829 | /** |
||
3830 | * Set the code article cotisation. |
||
3831 | * |
||
3832 | * @param string|null $codeArticleCotisation The code article cotisation. |
||
3833 | * @return Clients Returns this Clients. |
||
3834 | */ |
||
3835 | public function setCodeArticleCotisation(?string $codeArticleCotisation): Clients { |
||
3836 | $this->codeArticleCotisation = $codeArticleCotisation; |
||
3837 | return $this; |
||
3838 | } |
||
3839 | |||
3840 | /** |
||
3841 | * Set the code article droit fixe. |
||
3842 | * |
||
3843 | * @param string|null $codeArticleDroitFixe The code article droit fixe. |
||
3844 | * @return Clients Returns this Clients. |
||
3845 | */ |
||
3846 | public function setCodeArticleDroitFixe(?string $codeArticleDroitFixe): Clients { |
||
3847 | $this->codeArticleDroitFixe = $codeArticleDroitFixe; |
||
3848 | return $this; |
||
3849 | } |
||
3850 | |||
3851 | /** |
||
3852 | * Set the code article frais fixe. |
||
3853 | * |
||
3854 | * @param string|null $codeArticleFraisFixe The code article frais fixe. |
||
3855 | * @return Clients Returns this Clients. |
||
3856 | */ |
||
3857 | public function setCodeArticleFraisFixe(?string $codeArticleFraisFixe): Clients { |
||
3858 | $this->codeArticleFraisFixe = $codeArticleFraisFixe; |
||
3859 | return $this; |
||
3860 | } |
||
3861 | |||
3862 | /** |
||
3863 | * Set the code assistant juridique. |
||
3864 | * |
||
3865 | * @param string|null $codeAssistantJuridique The code assistant juridique. |
||
3866 | * @return Clients Returns this Clients. |
||
3867 | */ |
||
3868 | public function setCodeAssistantJuridique(?string $codeAssistantJuridique): Clients { |
||
3869 | $this->codeAssistantJuridique = $codeAssistantJuridique; |
||
3870 | return $this; |
||
3871 | } |
||
3872 | |||
3873 | /** |
||
3874 | * Set the code assistant social. |
||
3875 | * |
||
3876 | * @param string|null $codeAssistantSocial The code assistant social. |
||
3877 | * @return Clients Returns this Clients. |
||
3878 | */ |
||
3879 | public function setCodeAssistantSocial(?string $codeAssistantSocial): Clients { |
||
3880 | $this->codeAssistantSocial = $codeAssistantSocial; |
||
3881 | return $this; |
||
3882 | } |
||
3883 | |||
3884 | /** |
||
3885 | * Set the code autre1. |
||
3886 | * |
||
3887 | * @param string|null $codeAutre1 The code autre1. |
||
3888 | * @return Clients Returns this Clients. |
||
3889 | */ |
||
3890 | public function setCodeAutre1(?string $codeAutre1): Clients { |
||
3891 | $this->codeAutre1 = $codeAutre1; |
||
3892 | return $this; |
||
3893 | } |
||
3894 | |||
3895 | /** |
||
3896 | * Set the code autre2. |
||
3897 | * |
||
3898 | * @param string|null $codeAutre2 The code autre2. |
||
3899 | * @return Clients Returns this Clients. |
||
3900 | */ |
||
3901 | public function setCodeAutre2(?string $codeAutre2): Clients { |
||
3902 | $this->codeAutre2 = $codeAutre2; |
||
3903 | return $this; |
||
3904 | } |
||
3905 | |||
3906 | /** |
||
3907 | * Set the code avocat. |
||
3908 | * |
||
3909 | * @param string|null $codeAvocat The code avocat. |
||
3910 | * @return Clients Returns this Clients. |
||
3911 | */ |
||
3912 | public function setCodeAvocat(?string $codeAvocat): Clients { |
||
3913 | $this->codeAvocat = $codeAvocat; |
||
3914 | return $this; |
||
3915 | } |
||
3916 | |||
3917 | /** |
||
3918 | * Set the code barre. |
||
3919 | * |
||
3920 | * @param bool|null $codeBarre The code barre. |
||
3921 | * @return Clients Returns this Clients. |
||
3922 | */ |
||
3923 | public function setCodeBarre(?bool $codeBarre): Clients { |
||
3924 | $this->codeBarre = $codeBarre; |
||
3925 | return $this; |
||
3926 | } |
||
3927 | |||
3928 | /** |
||
3929 | * Set the code categorie client. |
||
3930 | * |
||
3931 | * @param string|null $codeCategorieClient The code categorie client. |
||
3932 | * @return Clients Returns this Clients. |
||
3933 | */ |
||
3934 | public function setCodeCategorieClient(?string $codeCategorieClient): Clients { |
||
3935 | $this->codeCategorieClient = $codeCategorieClient; |
||
3936 | return $this; |
||
3937 | } |
||
3938 | |||
3939 | /** |
||
3940 | * Set the code client fact. |
||
3941 | * |
||
3942 | * @param string|null $codeClientFact The code client fact. |
||
3943 | * @return Clients Returns this Clients. |
||
3944 | */ |
||
3945 | public function setCodeClientFact(?string $codeClientFact): Clients { |
||
3946 | $this->codeClientFact = $codeClientFact; |
||
3947 | return $this; |
||
3948 | } |
||
3949 | |||
3950 | /** |
||
3951 | * Set the code client livr. |
||
3952 | * |
||
3953 | * @param string|null $codeClientLivr The code client livr. |
||
3954 | * @return Clients Returns this Clients. |
||
3955 | */ |
||
3956 | public function setCodeClientLivr(?string $codeClientLivr): Clients { |
||
3957 | $this->codeClientLivr = $codeClientLivr; |
||
3958 | return $this; |
||
3959 | } |
||
3960 | |||
3961 | /** |
||
3962 | * Set the code collaborateur. |
||
3963 | * |
||
3964 | * @param string|null $codeCollaborateur The code collaborateur. |
||
3965 | * @return Clients Returns this Clients. |
||
3966 | */ |
||
3967 | public function setCodeCollaborateur(?string $codeCollaborateur): Clients { |
||
3968 | $this->codeCollaborateur = $codeCollaborateur; |
||
3969 | return $this; |
||
3970 | } |
||
3971 | |||
3972 | /** |
||
3973 | * Set the code depot. |
||
3974 | * |
||
3975 | * @param string|null $codeDepot The code depot. |
||
3976 | * @return Clients Returns this Clients. |
||
3977 | */ |
||
3978 | public function setCodeDepot(?string $codeDepot): Clients { |
||
3979 | $this->codeDepot = $codeDepot; |
||
3980 | return $this; |
||
3981 | } |
||
3982 | |||
3983 | /** |
||
3984 | * Set the code devise. |
||
3985 | * |
||
3986 | * @param string|null $codeDevise The code devise. |
||
3987 | * @return Clients Returns this Clients. |
||
3988 | */ |
||
3989 | public function setCodeDevise(?string $codeDevise): Clients { |
||
3990 | $this->codeDevise = $codeDevise; |
||
3991 | return $this; |
||
3992 | } |
||
3993 | |||
3994 | /** |
||
3995 | * Set the code edition fact. |
||
3996 | * |
||
3997 | * @param string|null $codeEditionFact The code edition fact. |
||
3998 | * @return Clients Returns this Clients. |
||
3999 | */ |
||
4000 | public function setCodeEditionFact(?string $codeEditionFact): Clients { |
||
4001 | $this->codeEditionFact = $codeEditionFact; |
||
4002 | return $this; |
||
4003 | } |
||
4004 | |||
4005 | /** |
||
4006 | * Set the code exc. |
||
4007 | * |
||
4008 | * @param string|null $codeExc The code exc. |
||
4009 | * @return Clients Returns this Clients. |
||
4010 | */ |
||
4011 | public function setCodeExc(?string $codeExc): Clients { |
||
4012 | $this->codeExc = $codeExc; |
||
4013 | return $this; |
||
4014 | } |
||
4015 | |||
4016 | /** |
||
4017 | * Set the code expert. |
||
4018 | * |
||
4019 | * @param string|null $codeExpert The code expert. |
||
4020 | * @return Clients Returns this Clients. |
||
4021 | */ |
||
4022 | public function setCodeExpert(?string $codeExpert): Clients { |
||
4023 | $this->codeExpert = $codeExpert; |
||
4024 | return $this; |
||
4025 | } |
||
4026 | |||
4027 | /** |
||
4028 | * Set the code factor. |
||
4029 | * |
||
4030 | * @param string|null $codeFactor The code factor. |
||
4031 | * @return Clients Returns this Clients. |
||
4032 | */ |
||
4033 | public function setCodeFactor(?string $codeFactor): Clients { |
||
4034 | $this->codeFactor = $codeFactor; |
||
4035 | return $this; |
||
4036 | } |
||
4037 | |||
4038 | /** |
||
4039 | * Set the code famille. |
||
4040 | * |
||
4041 | * @param string|null $codeFamille The code famille. |
||
4042 | * @return Clients Returns this Clients. |
||
4043 | */ |
||
4044 | public function setCodeFamille(?string $codeFamille): Clients { |
||
4045 | $this->codeFamille = $codeFamille; |
||
4046 | return $this; |
||
4047 | } |
||
4048 | |||
4049 | /** |
||
4050 | * Set the code geo. |
||
4051 | * |
||
4052 | * @param string|null $codeGeo The code geo. |
||
4053 | * @return Clients Returns this Clients. |
||
4054 | */ |
||
4055 | public function setCodeGeo(?string $codeGeo): Clients { |
||
4056 | $this->codeGeo = $codeGeo; |
||
4057 | return $this; |
||
4058 | } |
||
4059 | |||
4060 | /** |
||
4061 | * Set the code imputation analytique. |
||
4062 | * |
||
4063 | * @param string|null $codeImputationAnalytique The code imputation analytique. |
||
4064 | * @return Clients Returns this Clients. |
||
4065 | */ |
||
4066 | public function setCodeImputationAnalytique(?string $codeImputationAnalytique): Clients { |
||
4067 | $this->codeImputationAnalytique = $codeImputationAnalytique; |
||
4068 | return $this; |
||
4069 | } |
||
4070 | |||
4071 | /** |
||
4072 | * Set the code langue designation article. |
||
4073 | * |
||
4074 | * @param string|null $codeLangueDesignationArticle The code langue designation article. |
||
4075 | * @return Clients Returns this Clients. |
||
4076 | */ |
||
4077 | public function setCodeLangueDesignationArticle(?string $codeLangueDesignationArticle): Clients { |
||
4078 | $this->codeLangueDesignationArticle = $codeLangueDesignationArticle; |
||
4079 | return $this; |
||
4080 | } |
||
4081 | |||
4082 | /** |
||
4083 | * Set the code mission frais fixe. |
||
4084 | * |
||
4085 | * @param string|null $codeMissionFraisFixe The code mission frais fixe. |
||
4086 | * @return Clients Returns this Clients. |
||
4087 | */ |
||
4088 | public function setCodeMissionFraisFixe(?string $codeMissionFraisFixe): Clients { |
||
4089 | $this->codeMissionFraisFixe = $codeMissionFraisFixe; |
||
4090 | return $this; |
||
4091 | } |
||
4092 | |||
4093 | /** |
||
4094 | * Set the code origine. |
||
4095 | * |
||
4096 | * @param string|null $codeOrigine The code origine. |
||
4097 | * @return Clients Returns this Clients. |
||
4098 | */ |
||
4099 | public function setCodeOrigine(?string $codeOrigine): Clients { |
||
4100 | $this->codeOrigine = $codeOrigine; |
||
4101 | return $this; |
||
4102 | } |
||
4103 | |||
4104 | /** |
||
4105 | * Set the code pays corres. |
||
4106 | * |
||
4107 | * @param string|null $codePaysCorres The code pays corres. |
||
4108 | * @return Clients Returns this Clients. |
||
4109 | */ |
||
4110 | public function setCodePaysCorres(?string $codePaysCorres): Clients { |
||
4111 | $this->codePaysCorres = $codePaysCorres; |
||
4112 | return $this; |
||
4113 | } |
||
4114 | |||
4115 | /** |
||
4116 | * Set the code pays fact. |
||
4117 | * |
||
4118 | * @param string|null $codePaysFact The code pays fact. |
||
4119 | * @return Clients Returns this Clients. |
||
4120 | */ |
||
4121 | public function setCodePaysFact(?string $codePaysFact): Clients { |
||
4122 | $this->codePaysFact = $codePaysFact; |
||
4123 | return $this; |
||
4124 | } |
||
4125 | |||
4126 | /** |
||
4127 | * Set the code portefeuille. |
||
4128 | * |
||
4129 | * @param string|null $codePortefeuille The code portefeuille. |
||
4130 | * @return Clients Returns this Clients. |
||
4131 | */ |
||
4132 | public function setCodePortefeuille(?string $codePortefeuille): Clients { |
||
4133 | $this->codePortefeuille = $codePortefeuille; |
||
4134 | return $this; |
||
4135 | } |
||
4136 | |||
4137 | /** |
||
4138 | * Set the code recette impots. |
||
4139 | * |
||
4140 | * @param string|null $codeRecetteImpots The code recette impots. |
||
4141 | * @return Clients Returns this Clients. |
||
4142 | */ |
||
4143 | public function setCodeRecetteImpots(?string $codeRecetteImpots): Clients { |
||
4144 | $this->codeRecetteImpots = $codeRecetteImpots; |
||
4145 | return $this; |
||
4146 | } |
||
4147 | |||
4148 | /** |
||
4149 | * Set the code reglement. |
||
4150 | * |
||
4151 | * @param string|null $codeReglement The code reglement. |
||
4152 | * @return Clients Returns this Clients. |
||
4153 | */ |
||
4154 | public function setCodeReglement(?string $codeReglement): Clients { |
||
4155 | $this->codeReglement = $codeReglement; |
||
4156 | return $this; |
||
4157 | } |
||
4158 | |||
4159 | /** |
||
4160 | * Set the code regroupement. |
||
4161 | * |
||
4162 | * @param string|null $codeRegroupement The code regroupement. |
||
4163 | * @return Clients Returns this Clients. |
||
4164 | */ |
||
4165 | public function setCodeRegroupement(?string $codeRegroupement): Clients { |
||
4166 | $this->codeRegroupement = $codeRegroupement; |
||
4167 | return $this; |
||
4168 | } |
||
4169 | |||
4170 | /** |
||
4171 | * Set the code representant. |
||
4172 | * |
||
4173 | * @param string|null $codeRepresentant The code representant. |
||
4174 | * @return Clients Returns this Clients. |
||
4175 | */ |
||
4176 | public function setCodeRepresentant(?string $codeRepresentant): Clients { |
||
4177 | $this->codeRepresentant = $codeRepresentant; |
||
4178 | return $this; |
||
4179 | } |
||
4180 | |||
4181 | /** |
||
4182 | * Set the code revision. |
||
4183 | * |
||
4184 | * @param string|null $codeRevision The code revision. |
||
4185 | * @return Clients Returns this Clients. |
||
4186 | */ |
||
4187 | public function setCodeRevision(?string $codeRevision): Clients { |
||
4188 | $this->codeRevision = $codeRevision; |
||
4189 | return $this; |
||
4190 | } |
||
4191 | |||
4192 | /** |
||
4193 | * Set the code sous famille. |
||
4194 | * |
||
4195 | * @param string|null $codeSousFamille The code sous famille. |
||
4196 | * @return Clients Returns this Clients. |
||
4197 | */ |
||
4198 | public function setCodeSousFamille(?string $codeSousFamille): Clients { |
||
4199 | $this->codeSousFamille = $codeSousFamille; |
||
4200 | return $this; |
||
4201 | } |
||
4202 | |||
4203 | /** |
||
4204 | * Set the code sous tournee. |
||
4205 | * |
||
4206 | * @param string|null $codeSousTournee The code sous tournee. |
||
4207 | * @return Clients Returns this Clients. |
||
4208 | */ |
||
4209 | public function setCodeSousTournee(?string $codeSousTournee): Clients { |
||
4210 | $this->codeSousTournee = $codeSousTournee; |
||
4211 | return $this; |
||
4212 | } |
||
4213 | |||
4214 | /** |
||
4215 | * Set the code tarif. |
||
4216 | * |
||
4217 | * @param string|null $codeTarif The code tarif. |
||
4218 | * @return Clients Returns this Clients. |
||
4219 | */ |
||
4220 | public function setCodeTarif(?string $codeTarif): Clients { |
||
4221 | $this->codeTarif = $codeTarif; |
||
4222 | return $this; |
||
4223 | } |
||
4224 | |||
4225 | /** |
||
4226 | * Set the code tournee. |
||
4227 | * |
||
4228 | * @param string|null $codeTournee The code tournee. |
||
4229 | * @return Clients Returns this Clients. |
||
4230 | */ |
||
4231 | public function setCodeTournee(?string $codeTournee): Clients { |
||
4232 | $this->codeTournee = $codeTournee; |
||
4233 | return $this; |
||
4234 | } |
||
4235 | |||
4236 | /** |
||
4237 | * Set the code transporteur. |
||
4238 | * |
||
4239 | * @param string|null $codeTransporteur The code transporteur. |
||
4240 | * @return Clients Returns this Clients. |
||
4241 | */ |
||
4242 | public function setCodeTransporteur(?string $codeTransporteur): Clients { |
||
4243 | $this->codeTransporteur = $codeTransporteur; |
||
4244 | return $this; |
||
4245 | } |
||
4246 | |||
4247 | /** |
||
4248 | * Set the code tva. |
||
4249 | * |
||
4250 | * @param string|null $codeTva The code tva. |
||
4251 | * @return Clients Returns this Clients. |
||
4252 | */ |
||
4253 | public function setCodeTva(?string $codeTva): Clients { |
||
4254 | $this->codeTva = $codeTva; |
||
4255 | return $this; |
||
4256 | } |
||
4257 | |||
4258 | /** |
||
4259 | * Set the code ventil compta. |
||
4260 | * |
||
4261 | * @param string|null $codeVentilCompta The code ventil compta. |
||
4262 | * @return Clients Returns this Clients. |
||
4263 | */ |
||
4264 | public function setCodeVentilCompta(?string $codeVentilCompta): Clients { |
||
4265 | $this->codeVentilCompta = $codeVentilCompta; |
||
4266 | return $this; |
||
4267 | } |
||
4268 | |||
4269 | /** |
||
4270 | * Set the coef sur pv. |
||
4271 | * |
||
4272 | * @param float|null $coefSurPv The coef sur pv. |
||
4273 | * @return Clients Returns this Clients. |
||
4274 | */ |
||
4275 | public function setCoefSurPv(?float $coefSurPv): Clients { |
||
4276 | $this->coefSurPv = $coefSurPv; |
||
4277 | return $this; |
||
4278 | } |
||
4279 | |||
4280 | /** |
||
4281 | * Set the coeff pv client. |
||
4282 | * |
||
4283 | * @param float|null $coeffPvClient The coeff pv client. |
||
4284 | * @return Clients Returns this Clients. |
||
4285 | */ |
||
4286 | public function setCoeffPvClient(?float $coeffPvClient): Clients { |
||
4287 | $this->coeffPvClient = $coeffPvClient; |
||
4288 | return $this; |
||
4289 | } |
||
4290 | |||
4291 | /** |
||
4292 | * Set the collectif. |
||
4293 | * |
||
4294 | * @param string|null $collectif The collectif. |
||
4295 | * @return Clients Returns this Clients. |
||
4296 | */ |
||
4297 | public function setCollectif(?string $collectif): Clients { |
||
4298 | $this->collectif = $collectif; |
||
4299 | return $this; |
||
4300 | } |
||
4301 | |||
4302 | /** |
||
4303 | * Set the conjoint. |
||
4304 | * |
||
4305 | * @param string|null $conjoint The conjoint. |
||
4306 | * @return Clients Returns this Clients. |
||
4307 | */ |
||
4308 | public function setConjoint(?string $conjoint): Clients { |
||
4309 | $this->conjoint = $conjoint; |
||
4310 | return $this; |
||
4311 | } |
||
4312 | |||
4313 | /** |
||
4314 | * Set the contact recette impots. |
||
4315 | * |
||
4316 | * @param string|null $contactRecetteImpots The contact recette impots. |
||
4317 | * @return Clients Returns this Clients. |
||
4318 | */ |
||
4319 | public function setContactRecetteImpots(?string $contactRecetteImpots): Clients { |
||
4320 | $this->contactRecetteImpots = $contactRecetteImpots; |
||
4321 | return $this; |
||
4322 | } |
||
4323 | |||
4324 | /** |
||
4325 | * Set the date attrib encours. |
||
4326 | * |
||
4327 | * @param DateTime|null $dateAttribEncours The date attrib encours. |
||
4328 | * @return Clients Returns this Clients. |
||
4329 | */ |
||
4330 | public function setDateAttribEncours(?DateTime $dateAttribEncours): Clients { |
||
4331 | $this->dateAttribEncours = $dateAttribEncours; |
||
4332 | return $this; |
||
4333 | } |
||
4334 | |||
4335 | /** |
||
4336 | * Set the date creation. |
||
4337 | * |
||
4338 | * @param DateTime|null $dateCreation The date creation. |
||
4339 | * @return Clients Returns this Clients. |
||
4340 | */ |
||
4341 | public function setDateCreation(?DateTime $dateCreation): Clients { |
||
4342 | $this->dateCreation = $dateCreation; |
||
4343 | return $this; |
||
4344 | } |
||
4345 | |||
4346 | /** |
||
4347 | * Set the date deb activite. |
||
4348 | * |
||
4349 | * @param DateTime|null $dateDebActivite The date deb activite. |
||
4350 | * @return Clients Returns this Clients. |
||
4351 | */ |
||
4352 | public function setDateDebActivite(?DateTime $dateDebActivite): Clients { |
||
4353 | $this->dateDebActivite = $dateDebActivite; |
||
4354 | return $this; |
||
4355 | } |
||
4356 | |||
4357 | /** |
||
4358 | * Set the date deb prof. |
||
4359 | * |
||
4360 | * @param DateTime|null $dateDebProf The date deb prof. |
||
4361 | * @return Clients Returns this Clients. |
||
4362 | */ |
||
4363 | public function setDateDebProf(?DateTime $dateDebProf): Clients { |
||
4364 | $this->dateDebProf = $dateDebProf; |
||
4365 | return $this; |
||
4366 | } |
||
4367 | |||
4368 | /** |
||
4369 | * Set the date derniere vente. |
||
4370 | * |
||
4371 | * @param DateTime|null $dateDerniereVente The date derniere vente. |
||
4372 | * @return Clients Returns this Clients. |
||
4373 | */ |
||
4374 | public function setDateDerniereVente(?DateTime $dateDerniereVente): Clients { |
||
4375 | $this->dateDerniereVente = $dateDerniereVente; |
||
4376 | return $this; |
||
4377 | } |
||
4378 | |||
4379 | /** |
||
4380 | * Set the date entree. |
||
4381 | * |
||
4382 | * @param DateTime|null $dateEntree The date entree. |
||
4383 | * @return Clients Returns this Clients. |
||
4384 | */ |
||
4385 | public function setDateEntree(?DateTime $dateEntree): Clients { |
||
4386 | $this->dateEntree = $dateEntree; |
||
4387 | return $this; |
||
4388 | } |
||
4389 | |||
4390 | /** |
||
4391 | * Set the date fin activite. |
||
4392 | * |
||
4393 | * @param DateTime|null $dateFinActivite The date fin activite. |
||
4394 | * @return Clients Returns this Clients. |
||
4395 | */ |
||
4396 | public function setDateFinActivite(?DateTime $dateFinActivite): Clients { |
||
4397 | $this->dateFinActivite = $dateFinActivite; |
||
4398 | return $this; |
||
4399 | } |
||
4400 | |||
4401 | /** |
||
4402 | * Set the date modification. |
||
4403 | * |
||
4404 | * @param DateTime|null $dateModification The date modification. |
||
4405 | * @return Clients Returns this Clients. |
||
4406 | */ |
||
4407 | public function setDateModification(?DateTime $dateModification): Clients { |
||
4408 | $this->dateModification = $dateModification; |
||
4409 | return $this; |
||
4410 | } |
||
4411 | |||
4412 | /** |
||
4413 | * Set the date reprise. |
||
4414 | * |
||
4415 | * @param DateTime|null $dateReprise The date reprise. |
||
4416 | * @return Clients Returns this Clients. |
||
4417 | */ |
||
4418 | public function setDateReprise(?DateTime $dateReprise): Clients { |
||
4419 | $this->dateReprise = $dateReprise; |
||
4420 | return $this; |
||
4421 | } |
||
4422 | |||
4423 | /** |
||
4424 | * Set the date sortie. |
||
4425 | * |
||
4426 | * @param DateTime|null $dateSortie The date sortie. |
||
4427 | * @return Clients Returns this Clients. |
||
4428 | */ |
||
4429 | public function setDateSortie(?DateTime $dateSortie): Clients { |
||
4430 | $this->dateSortie = $dateSortie; |
||
4431 | return $this; |
||
4432 | } |
||
4433 | |||
4434 | /** |
||
4435 | * Set the delai tarif. |
||
4436 | * |
||
4437 | * @param int|null $delaiTarif The delai tarif. |
||
4438 | * @return Clients Returns this Clients. |
||
4439 | */ |
||
4440 | public function setDelaiTarif(?int $delaiTarif): Clients { |
||
4441 | $this->delaiTarif = $delaiTarif; |
||
4442 | return $this; |
||
4443 | } |
||
4444 | |||
4445 | /** |
||
4446 | * Set the domiciliation bancaire1. |
||
4447 | * |
||
4448 | * @param string|null $domiciliationBancaire1 The domiciliation bancaire1. |
||
4449 | * @return Clients Returns this Clients. |
||
4450 | */ |
||
4451 | public function setDomiciliationBancaire1(?string $domiciliationBancaire1): Clients { |
||
4452 | $this->domiciliationBancaire1 = $domiciliationBancaire1; |
||
4453 | return $this; |
||
4454 | } |
||
4455 | |||
4456 | /** |
||
4457 | * Set the domiciliation bancaire2. |
||
4458 | * |
||
4459 | * @param string|null $domiciliationBancaire2 The domiciliation bancaire2. |
||
4460 | * @return Clients Returns this Clients. |
||
4461 | */ |
||
4462 | public function setDomiciliationBancaire2(?string $domiciliationBancaire2): Clients { |
||
4463 | $this->domiciliationBancaire2 = $domiciliationBancaire2; |
||
4464 | return $this; |
||
4465 | } |
||
4466 | |||
4467 | /** |
||
4468 | * Set the dossier comptable. |
||
4469 | * |
||
4470 | * @param string|null $dossierComptable The dossier comptable. |
||
4471 | * @return Clients Returns this Clients. |
||
4472 | */ |
||
4473 | public function setDossierComptable(?string $dossierComptable): Clients { |
||
4474 | $this->dossierComptable = $dossierComptable; |
||
4475 | return $this; |
||
4476 | } |
||
4477 | |||
4478 | /** |
||
4479 | * Set the dossier paie. |
||
4480 | * |
||
4481 | * @param string|null $dossierPaie The dossier paie. |
||
4482 | * @return Clients Returns this Clients. |
||
4483 | */ |
||
4484 | public function setDossierPaie(?string $dossierPaie): Clients { |
||
4485 | $this->dossierPaie = $dossierPaie; |
||
4486 | return $this; |
||
4487 | } |
||
4488 | |||
4489 | /** |
||
4490 | * Set the ds code collab. |
||
4491 | * |
||
4492 | * @param string|null $dsCodeCollab The ds code collab. |
||
4493 | * @return Clients Returns this Clients. |
||
4494 | */ |
||
4495 | public function setDsCodeCollab(?string $dsCodeCollab): Clients { |
||
4496 | $this->dsCodeCollab = $dsCodeCollab; |
||
4497 | return $this; |
||
4498 | } |
||
4499 | |||
4500 | /** |
||
4501 | * Set the ds date retour. |
||
4502 | * |
||
4503 | * @param DateTime|null $dsDateRetour The ds date retour. |
||
4504 | * @return Clients Returns this Clients. |
||
4505 | */ |
||
4506 | public function setDsDateRetour(?DateTime $dsDateRetour): Clients { |
||
4507 | $this->dsDateRetour = $dsDateRetour; |
||
4508 | return $this; |
||
4509 | } |
||
4510 | |||
4511 | /** |
||
4512 | * Set the ds date sortie. |
||
4513 | * |
||
4514 | * @param DateTime|null $dsDateSortie The ds date sortie. |
||
4515 | * @return Clients Returns this Clients. |
||
4516 | */ |
||
4517 | public function setDsDateSortie(?DateTime $dsDateSortie): Clients { |
||
4518 | $this->dsDateSortie = $dsDateSortie; |
||
4519 | return $this; |
||
4520 | } |
||
4521 | |||
4522 | /** |
||
4523 | * Set the du client. |
||
4524 | * |
||
4525 | * @param string|null $duClient The du client. |
||
4526 | * @return Clients Returns this Clients. |
||
4527 | */ |
||
4528 | public function setDuClient(?string $duClient): Clients { |
||
4529 | $this->duClient = $duClient; |
||
4530 | return $this; |
||
4531 | } |
||
4532 | |||
4533 | /** |
||
4534 | * Set the duree echeances. |
||
4535 | * |
||
4536 | * @param string|null $dureeEcheances The duree echeances. |
||
4537 | * @return Clients Returns this Clients. |
||
4538 | */ |
||
4539 | public function setDureeEcheances(?string $dureeEcheances): Clients { |
||
4540 | $this->dureeEcheances = $dureeEcheances; |
||
4541 | return $this; |
||
4542 | } |
||
4543 | |||
4544 | /** |
||
4545 | * Set the effectif etp. |
||
4546 | * |
||
4547 | * @param int|null $effectifEtp The effectif etp. |
||
4548 | * @return Clients Returns this Clients. |
||
4549 | */ |
||
4550 | public function setEffectifEtp(?int $effectifEtp): Clients { |
||
4551 | $this->effectifEtp = $effectifEtp; |
||
4552 | return $this; |
||
4553 | } |
||
4554 | |||
4555 | /** |
||
4556 | * Set the election ce. |
||
4557 | * |
||
4558 | * @param DateTime|null $electionCe The election ce. |
||
4559 | * @return Clients Returns this Clients. |
||
4560 | */ |
||
4561 | public function setElectionCe(?DateTime $electionCe): Clients { |
||
4562 | $this->electionCe = $electionCe; |
||
4563 | return $this; |
||
4564 | } |
||
4565 | |||
4566 | /** |
||
4567 | * Set the election delegue personnel. |
||
4568 | * |
||
4569 | * @param DateTime|null $electionDeleguePersonnel The election delegue personnel. |
||
4570 | * @return Clients Returns this Clients. |
||
4571 | */ |
||
4572 | public function setElectionDeleguePersonnel(?DateTime $electionDeleguePersonnel): Clients { |
||
4573 | $this->electionDeleguePersonnel = $electionDeleguePersonnel; |
||
4574 | return $this; |
||
4575 | } |
||
4576 | |||
4577 | /** |
||
4578 | * Set the equip info. |
||
4579 | * |
||
4580 | * @param string|null $equipInfo The equip info. |
||
4581 | * @return Clients Returns this Clients. |
||
4582 | */ |
||
4583 | public function setEquipInfo(?string $equipInfo): Clients { |
||
4584 | $this->equipInfo = $equipInfo; |
||
4585 | return $this; |
||
4586 | } |
||
4587 | |||
4588 | /** |
||
4589 | * Set the etat1. |
||
4590 | * |
||
4591 | * @param string|null $etat1 The etat1. |
||
4592 | * @return Clients Returns this Clients. |
||
4593 | */ |
||
4594 | public function setEtat1(?string $etat1): Clients { |
||
4595 | $this->etat1 = $etat1; |
||
4596 | return $this; |
||
4597 | } |
||
4598 | |||
4599 | /** |
||
4600 | * Set the etat2. |
||
4601 | * |
||
4602 | * @param string|null $etat2 The etat2. |
||
4603 | * @return Clients Returns this Clients. |
||
4604 | */ |
||
4605 | public function setEtat2(?string $etat2): Clients { |
||
4606 | $this->etat2 = $etat2; |
||
4607 | return $this; |
||
4608 | } |
||
4609 | |||
4610 | /** |
||
4611 | * Set the etat3. |
||
4612 | * |
||
4613 | * @param string|null $etat3 The etat3. |
||
4614 | * @return Clients Returns this Clients. |
||
4615 | */ |
||
4616 | public function setEtat3(?string $etat3): Clients { |
||
4617 | $this->etat3 = $etat3; |
||
4618 | return $this; |
||
4619 | } |
||
4620 | |||
4621 | /** |
||
4622 | * Set the etat4. |
||
4623 | * |
||
4624 | * @param string|null $etat4 The etat4. |
||
4625 | * @return Clients Returns this Clients. |
||
4626 | */ |
||
4627 | public function setEtat4(?string $etat4): Clients { |
||
4628 | $this->etat4 = $etat4; |
||
4629 | return $this; |
||
4630 | } |
||
4631 | |||
4632 | /** |
||
4633 | * Set the etat5. |
||
4634 | * |
||
4635 | * @param string|null $etat5 The etat5. |
||
4636 | * @return Clients Returns this Clients. |
||
4637 | */ |
||
4638 | public function setEtat5(?string $etat5): Clients { |
||
4639 | $this->etat5 = $etat5; |
||
4640 | return $this; |
||
4641 | } |
||
4642 | |||
4643 | /** |
||
4644 | * Set the etiquettes. |
||
4645 | * |
||
4646 | * @param bool|null $etiquettes The etiquettes. |
||
4647 | * @return Clients Returns this Clients. |
||
4648 | */ |
||
4649 | public function setEtiquettes(?bool $etiquettes): Clients { |
||
4650 | $this->etiquettes = $etiquettes; |
||
4651 | return $this; |
||
4652 | } |
||
4653 | |||
4654 | /** |
||
4655 | * Set the fact btq. |
||
4656 | * |
||
4657 | * @param string|null $factBtq The fact btq. |
||
4658 | * @return Clients Returns this Clients. |
||
4659 | */ |
||
4660 | public function setFactBtq(?string $factBtq): Clients { |
||
4661 | $this->factBtq = $factBtq; |
||
4662 | return $this; |
||
4663 | } |
||
4664 | |||
4665 | /** |
||
4666 | * Set the fact bureau distributeur. |
||
4667 | * |
||
4668 | * @param string|null $factBureauDistributeur The fact bureau distributeur. |
||
4669 | * @return Clients Returns this Clients. |
||
4670 | */ |
||
4671 | public function setFactBureauDistributeur(?string $factBureauDistributeur): Clients { |
||
4672 | $this->factBureauDistributeur = $factBureauDistributeur; |
||
4673 | return $this; |
||
4674 | } |
||
4675 | |||
4676 | /** |
||
4677 | * Set the fact code officiel commune. |
||
4678 | * |
||
4679 | * @param string|null $factCodeOfficielCommune The fact code officiel commune. |
||
4680 | * @return Clients Returns this Clients. |
||
4681 | */ |
||
4682 | public function setFactCodeOfficielCommune(?string $factCodeOfficielCommune): Clients { |
||
4683 | $this->factCodeOfficielCommune = $factCodeOfficielCommune; |
||
4684 | return $this; |
||
4685 | } |
||
4686 | |||
4687 | /** |
||
4688 | * Set the fact code postal. |
||
4689 | * |
||
4690 | * @param string|null $factCodePostal The fact code postal. |
||
4691 | * @return Clients Returns this Clients. |
||
4692 | */ |
||
4693 | public function setFactCodePostal(?string $factCodePostal): Clients { |
||
4694 | $this->factCodePostal = $factCodePostal; |
||
4695 | return $this; |
||
4696 | } |
||
4697 | |||
4698 | /** |
||
4699 | * Set the fact complement. |
||
4700 | * |
||
4701 | * @param string|null $factComplement The fact complement. |
||
4702 | * @return Clients Returns this Clients. |
||
4703 | */ |
||
4704 | public function setFactComplement(?string $factComplement): Clients { |
||
4705 | $this->factComplement = $factComplement; |
||
4706 | return $this; |
||
4707 | } |
||
4708 | |||
4709 | /** |
||
4710 | * Set the fact nom rs. |
||
4711 | * |
||
4712 | * @param string|null $factNomRs The fact nom rs. |
||
4713 | * @return Clients Returns this Clients. |
||
4714 | */ |
||
4715 | public function setFactNomRs(?string $factNomRs): Clients { |
||
4716 | $this->factNomRs = $factNomRs; |
||
4717 | return $this; |
||
4718 | } |
||
4719 | |||
4720 | /** |
||
4721 | * Set the fact nom ville. |
||
4722 | * |
||
4723 | * @param string|null $factNomVille The fact nom ville. |
||
4724 | * @return Clients Returns this Clients. |
||
4725 | */ |
||
4726 | public function setFactNomVille(?string $factNomVille): Clients { |
||
4727 | $this->factNomVille = $factNomVille; |
||
4728 | return $this; |
||
4729 | } |
||
4730 | |||
4731 | /** |
||
4732 | * Set the fact nom voie. |
||
4733 | * |
||
4734 | * @param string|null $factNomVoie The fact nom voie. |
||
4735 | * @return Clients Returns this Clients. |
||
4736 | */ |
||
4737 | public function setFactNomVoie(?string $factNomVoie): Clients { |
||
4738 | $this->factNomVoie = $factNomVoie; |
||
4739 | return $this; |
||
4740 | } |
||
4741 | |||
4742 | /** |
||
4743 | * Set the fact num voie. |
||
4744 | * |
||
4745 | * @param string|null $factNumVoie The fact num voie. |
||
4746 | * @return Clients Returns this Clients. |
||
4747 | */ |
||
4748 | public function setFactNumVoie(?string $factNumVoie): Clients { |
||
4749 | $this->factNumVoie = $factNumVoie; |
||
4750 | return $this; |
||
4751 | } |
||
4752 | |||
4753 | /** |
||
4754 | * Set the facturation compta. |
||
4755 | * |
||
4756 | * @param DateTime|null $facturationCompta The facturation compta. |
||
4757 | * @return Clients Returns this Clients. |
||
4758 | */ |
||
4759 | public function setFacturationCompta(?DateTime $facturationCompta): Clients { |
||
4760 | $this->facturationCompta = $facturationCompta; |
||
4761 | return $this; |
||
4762 | } |
||
4763 | |||
4764 | /** |
||
4765 | * Set the facturation compta prec. |
||
4766 | * |
||
4767 | * @param DateTime|null $facturationComptaPrec The facturation compta prec. |
||
4768 | * @return Clients Returns this Clients. |
||
4769 | */ |
||
4770 | public function setFacturationComptaPrec(?DateTime $facturationComptaPrec): Clients { |
||
4771 | $this->facturationComptaPrec = $facturationComptaPrec; |
||
4772 | return $this; |
||
4773 | } |
||
4774 | |||
4775 | /** |
||
4776 | * Set the facturation cotisation. |
||
4777 | * |
||
4778 | * @param bool|null $facturationCotisation The facturation cotisation. |
||
4779 | * @return Clients Returns this Clients. |
||
4780 | */ |
||
4781 | public function setFacturationCotisation(?bool $facturationCotisation): Clients { |
||
4782 | $this->facturationCotisation = $facturationCotisation; |
||
4783 | return $this; |
||
4784 | } |
||
4785 | |||
4786 | /** |
||
4787 | * Set the facturation droit fixe. |
||
4788 | * |
||
4789 | * @param bool|null $facturationDroitFixe The facturation droit fixe. |
||
4790 | * @return Clients Returns this Clients. |
||
4791 | */ |
||
4792 | public function setFacturationDroitFixe(?bool $facturationDroitFixe): Clients { |
||
4793 | $this->facturationDroitFixe = $facturationDroitFixe; |
||
4794 | return $this; |
||
4795 | } |
||
4796 | |||
4797 | /** |
||
4798 | * Set the facturation frais fixe. |
||
4799 | * |
||
4800 | * @param bool|null $facturationFraisFixe The facturation frais fixe. |
||
4801 | * @return Clients Returns this Clients. |
||
4802 | */ |
||
4803 | public function setFacturationFraisFixe(?bool $facturationFraisFixe): Clients { |
||
4804 | $this->facturationFraisFixe = $facturationFraisFixe; |
||
4805 | return $this; |
||
4806 | } |
||
4807 | |||
4808 | /** |
||
4809 | * Set the facturation paie. |
||
4810 | * |
||
4811 | * @param DateTime|null $facturationPaie The facturation paie. |
||
4812 | * @return Clients Returns this Clients. |
||
4813 | */ |
||
4814 | public function setFacturationPaie(?DateTime $facturationPaie): Clients { |
||
4815 | $this->facturationPaie = $facturationPaie; |
||
4816 | return $this; |
||
4817 | } |
||
4818 | |||
4819 | /** |
||
4820 | * Set the facturation paie prec. |
||
4821 | * |
||
4822 | * @param DateTime|null $facturationPaiePrec The facturation paie prec. |
||
4823 | * @return Clients Returns this Clients. |
||
4824 | */ |
||
4825 | public function setFacturationPaiePrec(?DateTime $facturationPaiePrec): Clients { |
||
4826 | $this->facturationPaiePrec = $facturationPaiePrec; |
||
4827 | return $this; |
||
4828 | } |
||
4829 | |||
4830 | /** |
||
4831 | * Set the facture euros. |
||
4832 | * |
||
4833 | * @param bool|null $factureEuros The facture euros. |
||
4834 | * @return Clients Returns this Clients. |
||
4835 | */ |
||
4836 | public function setFactureEuros(?bool $factureEuros): Clients { |
||
4837 | $this->factureEuros = $factureEuros; |
||
4838 | return $this; |
||
4839 | } |
||
4840 | |||
4841 | /** |
||
4842 | * Set the facture isolee. |
||
4843 | * |
||
4844 | * @param bool|null $factureIsolee The facture isolee. |
||
4845 | * @return Clients Returns this Clients. |
||
4846 | */ |
||
4847 | public function setFactureIsolee(?bool $factureIsolee): Clients { |
||
4848 | $this->factureIsolee = $factureIsolee; |
||
4849 | return $this; |
||
4850 | } |
||
4851 | |||
4852 | /** |
||
4853 | * Set the facture temps passes. |
||
4854 | * |
||
4855 | * @param bool|null $factureTempsPasses The facture temps passes. |
||
4856 | * @return Clients Returns this Clients. |
||
4857 | */ |
||
4858 | public function setFactureTempsPasses(?bool $factureTempsPasses): Clients { |
||
4859 | $this->factureTempsPasses = $factureTempsPasses; |
||
4860 | return $this; |
||
4861 | } |
||
4862 | |||
4863 | /** |
||
4864 | * Set the factures mail. |
||
4865 | * |
||
4866 | * @param bool|null $facturesMail The factures mail. |
||
4867 | * @return Clients Returns this Clients. |
||
4868 | */ |
||
4869 | public function setFacturesMail(?bool $facturesMail): Clients { |
||
4870 | $this->facturesMail = $facturesMail; |
||
4871 | return $this; |
||
4872 | } |
||
4873 | |||
4874 | /** |
||
4875 | * Set the fortement impose. |
||
4876 | * |
||
4877 | * @param string|null $fortementImpose The fortement impose. |
||
4878 | * @return Clients Returns this Clients. |
||
4879 | */ |
||
4880 | public function setFortementImpose(?string $fortementImpose): Clients { |
||
4881 | $this->fortementImpose = $fortementImpose; |
||
4882 | return $this; |
||
4883 | } |
||
4884 | |||
4885 | /** |
||
4886 | * Set the frais fixes1. |
||
4887 | * |
||
4888 | * @param bool|null $fraisFixes1 The frais fixes1. |
||
4889 | * @return Clients Returns this Clients. |
||
4890 | */ |
||
4891 | public function setFraisFixes1(?bool $fraisFixes1): Clients { |
||
4892 | $this->fraisFixes1 = $fraisFixes1; |
||
4893 | return $this; |
||
4894 | } |
||
4895 | |||
4896 | /** |
||
4897 | * Set the frais fixes2. |
||
4898 | * |
||
4899 | * @param bool|null $fraisFixes2 The frais fixes2. |
||
4900 | * @return Clients Returns this Clients. |
||
4901 | */ |
||
4902 | public function setFraisFixes2(?bool $fraisFixes2): Clients { |
||
4903 | $this->fraisFixes2 = $fraisFixes2; |
||
4904 | return $this; |
||
4905 | } |
||
4906 | |||
4907 | /** |
||
4908 | * Set the franco port1. |
||
4909 | * |
||
4910 | * @param float|null $francoPort1 The franco port1. |
||
4911 | * @return Clients Returns this Clients. |
||
4912 | */ |
||
4913 | public function setFrancoPort1(?float $francoPort1): Clients { |
||
4914 | $this->francoPort1 = $francoPort1; |
||
4915 | return $this; |
||
4916 | } |
||
4917 | |||
4918 | /** |
||
4919 | * Set the franco port2. |
||
4920 | * |
||
4921 | * @param float|null $francoPort2 The franco port2. |
||
4922 | * @return Clients Returns this Clients. |
||
4923 | */ |
||
4924 | public function setFrancoPort2(?float $francoPort2): Clients { |
||
4925 | $this->francoPort2 = $francoPort2; |
||
4926 | return $this; |
||
4927 | } |
||
4928 | |||
4929 | /** |
||
4930 | * Set the heure appel. |
||
4931 | * |
||
4932 | * @param string|null $heureAppel The heure appel. |
||
4933 | * @return Clients Returns this Clients. |
||
4934 | */ |
||
4935 | public function setHeureAppel(?string $heureAppel): Clients { |
||
4936 | $this->heureAppel = $heureAppel; |
||
4937 | return $this; |
||
4938 | } |
||
4939 | |||
4940 | /** |
||
4941 | * Set the identifiant tva. |
||
4942 | * |
||
4943 | * @param string|null $identifiantTva The identifiant tva. |
||
4944 | * @return Clients Returns this Clients. |
||
4945 | */ |
||
4946 | public function setIdentifiantTva(?string $identifiantTva): Clients { |
||
4947 | $this->identifiantTva = $identifiantTva; |
||
4948 | return $this; |
||
4949 | } |
||
4950 | |||
4951 | /** |
||
4952 | * Set the indice factures mail. |
||
4953 | * |
||
4954 | * @param int|null $indiceFacturesMail The indice factures mail. |
||
4955 | * @return Clients Returns this Clients. |
||
4956 | */ |
||
4957 | public function setIndiceFacturesMail(?int $indiceFacturesMail): Clients { |
||
4958 | $this->indiceFacturesMail = $indiceFacturesMail; |
||
4959 | return $this; |
||
4960 | } |
||
4961 | |||
4962 | /** |
||
4963 | * Set the insp. |
||
4964 | * |
||
4965 | * @param string|null $insp The insp. |
||
4966 | * @return Clients Returns this Clients. |
||
4967 | */ |
||
4968 | public function setInsp(?string $insp): Clients { |
||
4969 | $this->insp = $insp; |
||
4970 | return $this; |
||
4971 | } |
||
4972 | |||
4973 | /** |
||
4974 | * Set the interesse gestion. |
||
4975 | * |
||
4976 | * @param string|null $interesseGestion The interesse gestion. |
||
4977 | * @return Clients Returns this Clients. |
||
4978 | */ |
||
4979 | public function setInteresseGestion(?string $interesseGestion): Clients { |
||
4980 | $this->interesseGestion = $interesseGestion; |
||
4981 | return $this; |
||
4982 | } |
||
4983 | |||
4984 | /** |
||
4985 | * Set the mensualisation actif. |
||
4986 | * |
||
4987 | * @param bool|null $mensualisationActif The mensualisation actif. |
||
4988 | * @return Clients Returns this Clients. |
||
4989 | */ |
||
4990 | public function setMensualisationActif(?bool $mensualisationActif): Clients { |
||
4991 | $this->mensualisationActif = $mensualisationActif; |
||
4992 | return $this; |
||
4993 | } |
||
4994 | |||
4995 | /** |
||
4996 | * Set the mensualisation au. |
||
4997 | * |
||
4998 | * @param DateTime|null $mensualisationAu The mensualisation au. |
||
4999 | * @return Clients Returns this Clients. |
||
5000 | */ |
||
5001 | public function setMensualisationAu(?DateTime $mensualisationAu): Clients { |
||
5002 | $this->mensualisationAu = $mensualisationAu; |
||
5003 | return $this; |
||
5004 | } |
||
5005 | |||
5006 | /** |
||
5007 | * Set the mensualisation du. |
||
5008 | * |
||
5009 | * @param DateTime|null $mensualisationDu The mensualisation du. |
||
5010 | * @return Clients Returns this Clients. |
||
5011 | */ |
||
5012 | public function setMensualisationDu(?DateTime $mensualisationDu): Clients { |
||
5013 | $this->mensualisationDu = $mensualisationDu; |
||
5014 | return $this; |
||
5015 | } |
||
5016 | |||
5017 | /** |
||
5018 | * Set the mensualisation frequence. |
||
5019 | * |
||
5020 | * @param string|null $mensualisationFrequence The mensualisation frequence. |
||
5021 | * @return Clients Returns this Clients. |
||
5022 | */ |
||
5023 | public function setMensualisationFrequence(?string $mensualisationFrequence): Clients { |
||
5024 | $this->mensualisationFrequence = $mensualisationFrequence; |
||
5025 | return $this; |
||
5026 | } |
||
5027 | |||
5028 | /** |
||
5029 | * Set the mensualisation montant. |
||
5030 | * |
||
5031 | * @param float|null $mensualisationMontant The mensualisation montant. |
||
5032 | * @return Clients Returns this Clients. |
||
5033 | */ |
||
5034 | public function setMensualisationMontant(?float $mensualisationMontant): Clients { |
||
5035 | $this->mensualisationMontant = $mensualisationMontant; |
||
5036 | return $this; |
||
5037 | } |
||
5038 | |||
5039 | /** |
||
5040 | * Set the mission sur dossier. |
||
5041 | * |
||
5042 | * @param int|null $missionSurDossier The mission sur dossier. |
||
5043 | * @return Clients Returns this Clients. |
||
5044 | */ |
||
5045 | public function setMissionSurDossier(?int $missionSurDossier): Clients { |
||
5046 | $this->missionSurDossier = $missionSurDossier; |
||
5047 | return $this; |
||
5048 | } |
||
5049 | |||
5050 | /** |
||
5051 | * Set the modele bl. |
||
5052 | * |
||
5053 | * @param string|null $modeleBl The modele bl. |
||
5054 | * @return Clients Returns this Clients. |
||
5055 | */ |
||
5056 | public function setModeleBl(?string $modeleBl): Clients { |
||
5057 | $this->modeleBl = $modeleBl; |
||
5058 | return $this; |
||
5059 | } |
||
5060 | |||
5061 | /** |
||
5062 | * Set the modele commande. |
||
5063 | * |
||
5064 | * @param string|null $modeleCommande The modele commande. |
||
5065 | * @return Clients Returns this Clients. |
||
5066 | */ |
||
5067 | public function setModeleCommande(?string $modeleCommande): Clients { |
||
5068 | $this->modeleCommande = $modeleCommande; |
||
5069 | return $this; |
||
5070 | } |
||
5071 | |||
5072 | /** |
||
5073 | * Set the modele facture. |
||
5074 | * |
||
5075 | * @param string|null $modeleFacture The modele facture. |
||
5076 | * @return Clients Returns this Clients. |
||
5077 | */ |
||
5078 | public function setModeleFacture(?string $modeleFacture): Clients { |
||
5079 | $this->modeleFacture = $modeleFacture; |
||
5080 | return $this; |
||
5081 | } |
||
5082 | |||
5083 | /** |
||
5084 | * Set the modele proformas. |
||
5085 | * |
||
5086 | * @param string|null $modeleProformas The modele proformas. |
||
5087 | * @return Clients Returns this Clients. |
||
5088 | */ |
||
5089 | public function setModeleProformas(?string $modeleProformas): Clients { |
||
5090 | $this->modeleProformas = $modeleProformas; |
||
5091 | return $this; |
||
5092 | } |
||
5093 | |||
5094 | /** |
||
5095 | * Set the modele releve. |
||
5096 | * |
||
5097 | * @param string|null $modeleReleve The modele releve. |
||
5098 | * @return Clients Returns this Clients. |
||
5099 | */ |
||
5100 | public function setModeleReleve(?string $modeleReleve): Clients { |
||
5101 | $this->modeleReleve = $modeleReleve; |
||
5102 | return $this; |
||
5103 | } |
||
5104 | |||
5105 | /** |
||
5106 | * Set the mois cloture. |
||
5107 | * |
||
5108 | * @param string|null $moisCloture The mois cloture. |
||
5109 | * @return Clients Returns this Clients. |
||
5110 | */ |
||
5111 | public function setMoisCloture(?string $moisCloture): Clients { |
||
5112 | $this->moisCloture = $moisCloture; |
||
5113 | return $this; |
||
5114 | } |
||
5115 | |||
5116 | /** |
||
5117 | * Set the mois cotisation. |
||
5118 | * |
||
5119 | * @param int|null $moisCotisation The mois cotisation. |
||
5120 | * @return Clients Returns this Clients. |
||
5121 | */ |
||
5122 | public function setMoisCotisation(?int $moisCotisation): Clients { |
||
5123 | $this->moisCotisation = $moisCotisation; |
||
5124 | return $this; |
||
5125 | } |
||
5126 | |||
5127 | /** |
||
5128 | * Set the mois droit fixe. |
||
5129 | * |
||
5130 | * @param int|null $moisDroitFixe The mois droit fixe. |
||
5131 | * @return Clients Returns this Clients. |
||
5132 | */ |
||
5133 | public function setMoisDroitFixe(?int $moisDroitFixe): Clients { |
||
5134 | $this->moisDroitFixe = $moisDroitFixe; |
||
5135 | return $this; |
||
5136 | } |
||
5137 | |||
5138 | /** |
||
5139 | * Set the mt cmd non fact. |
||
5140 | * |
||
5141 | * @param float|null $mtCmdNonFact The mt cmd non fact. |
||
5142 | * @return Clients Returns this Clients. |
||
5143 | */ |
||
5144 | public function setMtCmdNonFact(?float $mtCmdNonFact): Clients { |
||
5145 | $this->mtCmdNonFact = $mtCmdNonFact; |
||
5146 | return $this; |
||
5147 | } |
||
5148 | |||
5149 | /** |
||
5150 | * Set the mt encours. |
||
5151 | * |
||
5152 | * @param float|null $mtEncours The mt encours. |
||
5153 | * @return Clients Returns this Clients. |
||
5154 | */ |
||
5155 | public function setMtEncours(?float $mtEncours): Clients { |
||
5156 | $this->mtEncours = $mtEncours; |
||
5157 | return $this; |
||
5158 | } |
||
5159 | |||
5160 | /** |
||
5161 | * Set the mt encours autorise. |
||
5162 | * |
||
5163 | * @param float|null $mtEncoursAutorise The mt encours autorise. |
||
5164 | * @return Clients Returns this Clients. |
||
5165 | */ |
||
5166 | public function setMtEncoursAutorise(?float $mtEncoursAutorise): Clients { |
||
5167 | $this->mtEncoursAutorise = $mtEncoursAutorise; |
||
5168 | return $this; |
||
5169 | } |
||
5170 | |||
5171 | /** |
||
5172 | * Set the nb appels en cours. |
||
5173 | * |
||
5174 | * @param int|null $nbAppelsEnCours The nb appels en cours. |
||
5175 | * @return Clients Returns this Clients. |
||
5176 | */ |
||
5177 | public function setNbAppelsEnCours(?int $nbAppelsEnCours): Clients { |
||
5178 | $this->nbAppelsEnCours = $nbAppelsEnCours; |
||
5179 | return $this; |
||
5180 | } |
||
5181 | |||
5182 | /** |
||
5183 | * Set the nb bl. |
||
5184 | * |
||
5185 | * @param string|null $nbBl The nb bl. |
||
5186 | * @return Clients Returns this Clients. |
||
5187 | */ |
||
5188 | public function setNbBl(?string $nbBl): Clients { |
||
5189 | $this->nbBl = $nbBl; |
||
5190 | return $this; |
||
5191 | } |
||
5192 | |||
5193 | /** |
||
5194 | * Set the nb bl non chiffres. |
||
5195 | * |
||
5196 | * @param int|null $nbBlNonChiffres The nb bl non chiffres. |
||
5197 | * @return Clients Returns this Clients. |
||
5198 | */ |
||
5199 | public function setNbBlNonChiffres(?int $nbBlNonChiffres): Clients { |
||
5200 | $this->nbBlNonChiffres = $nbBlNonChiffres; |
||
5201 | return $this; |
||
5202 | } |
||
5203 | |||
5204 | /** |
||
5205 | * Set the nb commande. |
||
5206 | * |
||
5207 | * @param string|null $nbCommande The nb commande. |
||
5208 | * @return Clients Returns this Clients. |
||
5209 | */ |
||
5210 | public function setNbCommande(?string $nbCommande): Clients { |
||
5211 | $this->nbCommande = $nbCommande; |
||
5212 | return $this; |
||
5213 | } |
||
5214 | |||
5215 | /** |
||
5216 | * Set the nb devis. |
||
5217 | * |
||
5218 | * @param string|null $nbDevis The nb devis. |
||
5219 | * @return Clients Returns this Clients. |
||
5220 | */ |
||
5221 | public function setNbDevis(?string $nbDevis): Clients { |
||
5222 | $this->nbDevis = $nbDevis; |
||
5223 | return $this; |
||
5224 | } |
||
5225 | |||
5226 | /** |
||
5227 | * Set the nb facture. |
||
5228 | * |
||
5229 | * @param string|null $nbFacture The nb facture. |
||
5230 | * @return Clients Returns this Clients. |
||
5231 | */ |
||
5232 | public function setNbFacture(?string $nbFacture): Clients { |
||
5233 | $this->nbFacture = $nbFacture; |
||
5234 | return $this; |
||
5235 | } |
||
5236 | |||
5237 | /** |
||
5238 | * Set the nb jour interval. |
||
5239 | * |
||
5240 | * @param int|null $nbJourInterval The nb jour interval. |
||
5241 | * @return Clients Returns this Clients. |
||
5242 | */ |
||
5243 | public function setNbJourInterval(?int $nbJourInterval): Clients { |
||
5244 | $this->nbJourInterval = $nbJourInterval; |
||
5245 | return $this; |
||
5246 | } |
||
5247 | |||
5248 | /** |
||
5249 | * Set the nb max bl. |
||
5250 | * |
||
5251 | * @param string|null $nbMaxBl The nb max bl. |
||
5252 | * @return Clients Returns this Clients. |
||
5253 | */ |
||
5254 | public function setNbMaxBl(?string $nbMaxBl): Clients { |
||
5255 | $this->nbMaxBl = $nbMaxBl; |
||
5256 | return $this; |
||
5257 | } |
||
5258 | |||
5259 | /** |
||
5260 | * Set the nb releve. |
||
5261 | * |
||
5262 | * @param string|null $nbReleve The nb releve. |
||
5263 | * @return Clients Returns this Clients. |
||
5264 | */ |
||
5265 | public function setNbReleve(?string $nbReleve): Clients { |
||
5266 | $this->nbReleve = $nbReleve; |
||
5267 | return $this; |
||
5268 | } |
||
5269 | |||
5270 | /** |
||
5271 | * Set the nombre echeances. |
||
5272 | * |
||
5273 | * @param string|null $nombreEcheances The nombre echeances. |
||
5274 | * @return Clients Returns this Clients. |
||
5275 | */ |
||
5276 | public function setNombreEcheances(?string $nombreEcheances): Clients { |
||
5277 | $this->nombreEcheances = $nombreEcheances; |
||
5278 | return $this; |
||
5279 | } |
||
5280 | |||
5281 | /** |
||
5282 | * Set the nombre mois exercice. |
||
5283 | * |
||
5284 | * @param string|null $nombreMoisExercice The nombre mois exercice. |
||
5285 | * @return Clients Returns this Clients. |
||
5286 | */ |
||
5287 | public function setNombreMoisExercice(?string $nombreMoisExercice): Clients { |
||
5288 | $this->nombreMoisExercice = $nombreMoisExercice; |
||
5289 | return $this; |
||
5290 | } |
||
5291 | |||
5292 | /** |
||
5293 | * Set the notoriete. |
||
5294 | * |
||
5295 | * @param string|null $notoriete The notoriete. |
||
5296 | * @return Clients Returns this Clients. |
||
5297 | */ |
||
5298 | public function setNotoriete(?string $notoriete): Clients { |
||
5299 | $this->notoriete = $notoriete; |
||
5300 | return $this; |
||
5301 | } |
||
5302 | |||
5303 | /** |
||
5304 | * Set the num web adherent. |
||
5305 | * |
||
5306 | * @param string|null $numWebAdherent The num web adherent. |
||
5307 | * @return Clients Returns this Clients. |
||
5308 | */ |
||
5309 | public function setNumWebAdherent(?string $numWebAdherent): Clients { |
||
5310 | $this->numWebAdherent = $numWebAdherent; |
||
5311 | return $this; |
||
5312 | } |
||
5313 | |||
5314 | /** |
||
5315 | * Set the numero compte. |
||
5316 | * |
||
5317 | * @param string|null $numeroCompte The numero compte. |
||
5318 | * @return Clients Returns this Clients. |
||
5319 | */ |
||
5320 | public function setNumeroCompte(?string $numeroCompte): Clients { |
||
5321 | $this->numeroCompte = $numeroCompte; |
||
5322 | return $this; |
||
5323 | } |
||
5324 | |||
5325 | /** |
||
5326 | * Set the observation1. |
||
5327 | * |
||
5328 | * @param string|null $observation1 The observation1. |
||
5329 | * @return Clients Returns this Clients. |
||
5330 | */ |
||
5331 | public function setObservation1(?string $observation1): Clients { |
||
5332 | $this->observation1 = $observation1; |
||
5333 | return $this; |
||
5334 | } |
||
5335 | |||
5336 | /** |
||
5337 | * Set the observation2. |
||
5338 | * |
||
5339 | * @param string|null $observation2 The observation2. |
||
5340 | * @return Clients Returns this Clients. |
||
5341 | */ |
||
5342 | public function setObservation2(?string $observation2): Clients { |
||
5343 | $this->observation2 = $observation2; |
||
5344 | return $this; |
||
5345 | } |
||
5346 | |||
5347 | /** |
||
5348 | * Set the observation3. |
||
5349 | * |
||
5350 | * @param string|null $observation3 The observation3. |
||
5351 | * @return Clients Returns this Clients. |
||
5352 | */ |
||
5353 | public function setObservation3(?string $observation3): Clients { |
||
5354 | $this->observation3 = $observation3; |
||
5355 | return $this; |
||
5356 | } |
||
5357 | |||
5358 | /** |
||
5359 | * Set the occasionnel. |
||
5360 | * |
||
5361 | * @param bool|null $occasionnel The occasionnel. |
||
5362 | * @return Clients Returns this Clients. |
||
5363 | */ |
||
5364 | public function setOccasionnel(?bool $occasionnel): Clients { |
||
5365 | $this->occasionnel = $occasionnel; |
||
5366 | return $this; |
||
5367 | } |
||
5368 | |||
5369 | /** |
||
5370 | * Set the organisation adm. |
||
5371 | * |
||
5372 | * @param string|null $organisationAdm The organisation adm. |
||
5373 | * @return Clients Returns this Clients. |
||
5374 | */ |
||
5375 | public function setOrganisationAdm(?string $organisationAdm): Clients { |
||
5376 | $this->organisationAdm = $organisationAdm; |
||
5377 | return $this; |
||
5378 | } |
||
5379 | |||
5380 | /** |
||
5381 | * Set the paiement depart le. |
||
5382 | * |
||
5383 | * @param int|null $paiementDepartLe The paiement depart le. |
||
5384 | * @return Clients Returns this Clients. |
||
5385 | */ |
||
5386 | public function setPaiementDepartLe(?int $paiementDepartLe): Clients { |
||
5387 | $this->paiementDepartLe = $paiementDepartLe; |
||
5388 | return $this; |
||
5389 | } |
||
5390 | |||
5391 | /** |
||
5392 | * Set the paiement le. |
||
5393 | * |
||
5394 | * @param string|null $paiementLe The paiement le. |
||
5395 | * @return Clients Returns this Clients. |
||
5396 | */ |
||
5397 | public function setPaiementLe(?string $paiementLe): Clients { |
||
5398 | $this->paiementLe = $paiementLe; |
||
5399 | return $this; |
||
5400 | } |
||
5401 | |||
5402 | /** |
||
5403 | * Set the paiement nombre de jours. |
||
5404 | * |
||
5405 | * @param int|null $paiementNombreDeJours The paiement nombre de jours. |
||
5406 | * @return Clients Returns this Clients. |
||
5407 | */ |
||
5408 | public function setPaiementNombreDeJours(?int $paiementNombreDeJours): Clients { |
||
5409 | $this->paiementNombreDeJours = $paiementNombreDeJours; |
||
5410 | return $this; |
||
5411 | } |
||
5412 | |||
5413 | /** |
||
5414 | * Set the pas productif. |
||
5415 | * |
||
5416 | * @param bool|null $pasProductif The pas productif. |
||
5417 | * @return Clients Returns this Clients. |
||
5418 | */ |
||
5419 | public function setPasProductif(?bool $pasProductif): Clients { |
||
5420 | $this->pasProductif = $pasProductif; |
||
5421 | return $this; |
||
5422 | } |
||
5423 | |||
5424 | /** |
||
5425 | * Set the pas taches operationnelles. |
||
5426 | * |
||
5427 | * @param bool|null $pasTachesOperationnelles The pas taches operationnelles. |
||
5428 | * @return Clients Returns this Clients. |
||
5429 | */ |
||
5430 | public function setPasTachesOperationnelles(?bool $pasTachesOperationnelles): Clients { |
||
5431 | $this->pasTachesOperationnelles = $pasTachesOperationnelles; |
||
5432 | return $this; |
||
5433 | } |
||
5434 | |||
5435 | /** |
||
5436 | * Set the patrimoine. |
||
5437 | * |
||
5438 | * @param string|null $patrimoine The patrimoine. |
||
5439 | * @return Clients Returns this Clients. |
||
5440 | */ |
||
5441 | public function setPatrimoine(?string $patrimoine): Clients { |
||
5442 | $this->patrimoine = $patrimoine; |
||
5443 | return $this; |
||
5444 | } |
||
5445 | |||
5446 | /** |
||
5447 | * Set the prelevements perso. |
||
5448 | * |
||
5449 | * @param string|null $prelevementsPerso The prelevements perso. |
||
5450 | * @return Clients Returns this Clients. |
||
5451 | */ |
||
5452 | public function setPrelevementsPerso(?string $prelevementsPerso): Clients { |
||
5453 | $this->prelevementsPerso = $prelevementsPerso; |
||
5454 | return $this; |
||
5455 | } |
||
5456 | |||
5457 | /** |
||
5458 | * Set the prescripteur. |
||
5459 | * |
||
5460 | * @param string|null $prescripteur The prescripteur. |
||
5461 | * @return Clients Returns this Clients. |
||
5462 | */ |
||
5463 | public function setPrescripteur(?string $prescripteur): Clients { |
||
5464 | $this->prescripteur = $prescripteur; |
||
5465 | return $this; |
||
5466 | } |
||
5467 | |||
5468 | /** |
||
5469 | * Set the previsionnel. |
||
5470 | * |
||
5471 | * @param string|null $previsionnel The previsionnel. |
||
5472 | * @return Clients Returns this Clients. |
||
5473 | */ |
||
5474 | public function setPrevisionnel(?string $previsionnel): Clients { |
||
5475 | $this->previsionnel = $previsionnel; |
||
5476 | return $this; |
||
5477 | } |
||
5478 | |||
5479 | /** |
||
5480 | * Set the prioritaire. |
||
5481 | * |
||
5482 | * @param bool|null $prioritaire The prioritaire. |
||
5483 | * @return Clients Returns this Clients. |
||
5484 | */ |
||
5485 | public function setPrioritaire(?bool $prioritaire): Clients { |
||
5486 | $this->prioritaire = $prioritaire; |
||
5487 | return $this; |
||
5488 | } |
||
5489 | |||
5490 | /** |
||
5491 | * Set the profil dir anxieux. |
||
5492 | * |
||
5493 | * @param bool|null $profilDirAnxieux The profil dir anxieux. |
||
5494 | * @return Clients Returns this Clients. |
||
5495 | */ |
||
5496 | public function setProfilDirAnxieux(?bool $profilDirAnxieux): Clients { |
||
5497 | $this->profilDirAnxieux = $profilDirAnxieux; |
||
5498 | return $this; |
||
5499 | } |
||
5500 | |||
5501 | /** |
||
5502 | * Set the profil dir commercial. |
||
5503 | * |
||
5504 | * @param bool|null $profilDirCommercial The profil dir commercial. |
||
5505 | * @return Clients Returns this Clients. |
||
5506 | */ |
||
5507 | public function setProfilDirCommercial(?bool $profilDirCommercial): Clients { |
||
5508 | $this->profilDirCommercial = $profilDirCommercial; |
||
5509 | return $this; |
||
5510 | } |
||
5511 | |||
5512 | /** |
||
5513 | * Set the profil dir gestionnaire. |
||
5514 | * |
||
5515 | * @param bool|null $profilDirGestionnaire The profil dir gestionnaire. |
||
5516 | * @return Clients Returns this Clients. |
||
5517 | */ |
||
5518 | public function setProfilDirGestionnaire(?bool $profilDirGestionnaire): Clients { |
||
5519 | $this->profilDirGestionnaire = $profilDirGestionnaire; |
||
5520 | return $this; |
||
5521 | } |
||
5522 | |||
5523 | /** |
||
5524 | * Set the profil dir somnolent. |
||
5525 | * |
||
5526 | * @param bool|null $profilDirSomnolent The profil dir somnolent. |
||
5527 | * @return Clients Returns this Clients. |
||
5528 | */ |
||
5529 | public function setProfilDirSomnolent(?bool $profilDirSomnolent): Clients { |
||
5530 | $this->profilDirSomnolent = $profilDirSomnolent; |
||
5531 | return $this; |
||
5532 | } |
||
5533 | |||
5534 | /** |
||
5535 | * Set the profil dir technicien. |
||
5536 | * |
||
5537 | * @param bool|null $profilDirTechnicien The profil dir technicien. |
||
5538 | * @return Clients Returns this Clients. |
||
5539 | */ |
||
5540 | public function setProfilDirTechnicien(?bool $profilDirTechnicien): Clients { |
||
5541 | $this->profilDirTechnicien = $profilDirTechnicien; |
||
5542 | return $this; |
||
5543 | } |
||
5544 | |||
5545 | /** |
||
5546 | * Set the profil ent. |
||
5547 | * |
||
5548 | * @param string|null $profilEnt The profil ent. |
||
5549 | * @return Clients Returns this Clients. |
||
5550 | */ |
||
5551 | public function setProfilEnt(?string $profilEnt): Clients { |
||
5552 | $this->profilEnt = $profilEnt; |
||
5553 | return $this; |
||
5554 | } |
||
5555 | |||
5556 | /** |
||
5557 | * Set the prospect. |
||
5558 | * |
||
5559 | * @param bool|null $prospect The prospect. |
||
5560 | * @return Clients Returns this Clients. |
||
5561 | */ |
||
5562 | public function setProspect(?bool $prospect): Clients { |
||
5563 | $this->prospect = $prospect; |
||
5564 | return $this; |
||
5565 | } |
||
5566 | |||
5567 | /** |
||
5568 | * Set the qualite paiement. |
||
5569 | * |
||
5570 | * @param string|null $qualitePaiement The qualite paiement. |
||
5571 | * @return Clients Returns this Clients. |
||
5572 | */ |
||
5573 | public function setQualitePaiement(?string $qualitePaiement): Clients { |
||
5574 | $this->qualitePaiement = $qualitePaiement; |
||
5575 | return $this; |
||
5576 | } |
||
5577 | |||
5578 | /** |
||
5579 | * Set the raison fin activite. |
||
5580 | * |
||
5581 | * @param string|null $raisonFinActivite The raison fin activite. |
||
5582 | * @return Clients Returns this Clients. |
||
5583 | */ |
||
5584 | public function setRaisonFinActivite(?string $raisonFinActivite): Clients { |
||
5585 | $this->raisonFinActivite = $raisonFinActivite; |
||
5586 | return $this; |
||
5587 | } |
||
5588 | |||
5589 | /** |
||
5590 | * Set the raison mv paiement. |
||
5591 | * |
||
5592 | * @param string|null $raisonMvPaiement The raison mv paiement. |
||
5593 | * @return Clients Returns this Clients. |
||
5594 | */ |
||
5595 | public function setRaisonMvPaiement(?string $raisonMvPaiement): Clients { |
||
5596 | $this->raisonMvPaiement = $raisonMvPaiement; |
||
5597 | return $this; |
||
5598 | } |
||
5599 | |||
5600 | /** |
||
5601 | * Set the regime. |
||
5602 | * |
||
5603 | * @param string|null $regime The regime. |
||
5604 | * @return Clients Returns this Clients. |
||
5605 | */ |
||
5606 | public function setRegime(?string $regime): Clients { |
||
5607 | $this->regime = $regime; |
||
5608 | return $this; |
||
5609 | } |
||
5610 | |||
5611 | /** |
||
5612 | * Set the regroupement fact. |
||
5613 | * |
||
5614 | * @param string|null $regroupementFact The regroupement fact. |
||
5615 | * @return Clients Returns this Clients. |
||
5616 | */ |
||
5617 | public function setRegroupementFact(?string $regroupementFact): Clients { |
||
5618 | $this->regroupementFact = $regroupementFact; |
||
5619 | return $this; |
||
5620 | } |
||
5621 | |||
5622 | /** |
||
5623 | * Set the relation cabinet. |
||
5624 | * |
||
5625 | * @param string|null $relationCabinet The relation cabinet. |
||
5626 | * @return Clients Returns this Clients. |
||
5627 | */ |
||
5628 | public function setRelationCabinet(?string $relationCabinet): Clients { |
||
5629 | $this->relationCabinet = $relationCabinet; |
||
5630 | return $this; |
||
5631 | } |
||
5632 | |||
5633 | /** |
||
5634 | * Set the releve facture. |
||
5635 | * |
||
5636 | * @param bool|null $releveFacture The releve facture. |
||
5637 | * @return Clients Returns this Clients. |
||
5638 | */ |
||
5639 | public function setReleveFacture(?bool $releveFacture): Clients { |
||
5640 | $this->releveFacture = $releveFacture; |
||
5641 | return $this; |
||
5642 | } |
||
5643 | |||
5644 | /** |
||
5645 | * Set the remise ligne1. |
||
5646 | * |
||
5647 | * @param float|null $remiseLigne1 The remise ligne1. |
||
5648 | * @return Clients Returns this Clients. |
||
5649 | */ |
||
5650 | public function setRemiseLigne1(?float $remiseLigne1): Clients { |
||
5651 | $this->remiseLigne1 = $remiseLigne1; |
||
5652 | return $this; |
||
5653 | } |
||
5654 | |||
5655 | /** |
||
5656 | * Set the remise ligne2. |
||
5657 | * |
||
5658 | * @param float|null $remiseLigne2 The remise ligne2. |
||
5659 | * @return Clients Returns this Clients. |
||
5660 | */ |
||
5661 | public function setRemiseLigne2(?float $remiseLigne2): Clients { |
||
5662 | $this->remiseLigne2 = $remiseLigne2; |
||
5663 | return $this; |
||
5664 | } |
||
5665 | |||
5666 | /** |
||
5667 | * Set the remise ligne3. |
||
5668 | * |
||
5669 | * @param float|null $remiseLigne3 The remise ligne3. |
||
5670 | * @return Clients Returns this Clients. |
||
5671 | */ |
||
5672 | public function setRemiseLigne3(?float $remiseLigne3): Clients { |
||
5673 | $this->remiseLigne3 = $remiseLigne3; |
||
5674 | return $this; |
||
5675 | } |
||
5676 | |||
5677 | /** |
||
5678 | * Set the remise pied. |
||
5679 | * |
||
5680 | * @param float|null $remisePied The remise pied. |
||
5681 | * @return Clients Returns this Clients. |
||
5682 | */ |
||
5683 | public function setRemisePied(?float $remisePied): Clients { |
||
5684 | $this->remisePied = $remisePied; |
||
5685 | return $this; |
||
5686 | } |
||
5687 | |||
5688 | /** |
||
5689 | * Set the remise pied2. |
||
5690 | * |
||
5691 | * @param float|null $remisePied2 The remise pied2. |
||
5692 | * @return Clients Returns this Clients. |
||
5693 | */ |
||
5694 | public function setRemisePied2(?float $remisePied2): Clients { |
||
5695 | $this->remisePied2 = $remisePied2; |
||
5696 | return $this; |
||
5697 | } |
||
5698 | |||
5699 | /** |
||
5700 | * Set the remise pied3. |
||
5701 | * |
||
5702 | * @param float|null $remisePied3 The remise pied3. |
||
5703 | * @return Clients Returns this Clients. |
||
5704 | */ |
||
5705 | public function setRemisePied3(?float $remisePied3): Clients { |
||
5706 | $this->remisePied3 = $remisePied3; |
||
5707 | return $this; |
||
5708 | } |
||
5709 | |||
5710 | /** |
||
5711 | * Set the resultat. |
||
5712 | * |
||
5713 | * @param float|null $resultat The resultat. |
||
5714 | * @return Clients Returns this Clients. |
||
5715 | */ |
||
5716 | public function setResultat(?float $resultat): Clients { |
||
5717 | $this->resultat = $resultat; |
||
5718 | return $this; |
||
5719 | } |
||
5720 | |||
5721 | /** |
||
5722 | * Set the rib. |
||
5723 | * |
||
5724 | * @param string|null $rib The rib. |
||
5725 | * @return Clients Returns this Clients. |
||
5726 | */ |
||
5727 | public function setRib(?string $rib): Clients { |
||
5728 | $this->rib = $rib; |
||
5729 | return $this; |
||
5730 | } |
||
5731 | |||
5732 | /** |
||
5733 | * Set the sante financiere. |
||
5734 | * |
||
5735 | * @param string|null $santeFinanciere The sante financiere. |
||
5736 | * @return Clients Returns this Clients. |
||
5737 | */ |
||
5738 | public function setSanteFinanciere(?string $santeFinanciere): Clients { |
||
5739 | $this->santeFinanciere = $santeFinanciere; |
||
5740 | return $this; |
||
5741 | } |
||
5742 | |||
5743 | /** |
||
5744 | * Set the service cpta. |
||
5745 | * |
||
5746 | * @param bool|null $serviceCpta The service cpta. |
||
5747 | * @return Clients Returns this Clients. |
||
5748 | */ |
||
5749 | public function setServiceCpta(?bool $serviceCpta): Clients { |
||
5750 | $this->serviceCpta = $serviceCpta; |
||
5751 | return $this; |
||
5752 | } |
||
5753 | |||
5754 | /** |
||
5755 | * Set the siege groupe. |
||
5756 | * |
||
5757 | * @param bool|null $siegeGroupe The siege groupe. |
||
5758 | * @return Clients Returns this Clients. |
||
5759 | */ |
||
5760 | public function setSiegeGroupe(?bool $siegeGroupe): Clients { |
||
5761 | $this->siegeGroupe = $siegeGroupe; |
||
5762 | return $this; |
||
5763 | } |
||
5764 | |||
5765 | /** |
||
5766 | * Set the social. |
||
5767 | * |
||
5768 | * @param bool|null $social The social. |
||
5769 | * @return Clients Returns this Clients. |
||
5770 | */ |
||
5771 | public function setSocial(?bool $social): Clients { |
||
5772 | $this->social = $social; |
||
5773 | return $this; |
||
5774 | } |
||
5775 | |||
5776 | /** |
||
5777 | * Set the social btq. |
||
5778 | * |
||
5779 | * @param string|null $socialBtq The social btq. |
||
5780 | * @return Clients Returns this Clients. |
||
5781 | */ |
||
5782 | public function setSocialBtq(?string $socialBtq): Clients { |
||
5783 | $this->socialBtq = $socialBtq; |
||
5784 | return $this; |
||
5785 | } |
||
5786 | |||
5787 | /** |
||
5788 | * Set the social bureau distributeur. |
||
5789 | * |
||
5790 | * @param string|null $socialBureauDistributeur The social bureau distributeur. |
||
5791 | * @return Clients Returns this Clients. |
||
5792 | */ |
||
5793 | public function setSocialBureauDistributeur(?string $socialBureauDistributeur): Clients { |
||
5794 | $this->socialBureauDistributeur = $socialBureauDistributeur; |
||
5795 | return $this; |
||
5796 | } |
||
5797 | |||
5798 | /** |
||
5799 | * Set the social code officiel commune. |
||
5800 | * |
||
5801 | * @param string|null $socialCodeOfficielCommune The social code officiel commune. |
||
5802 | * @return Clients Returns this Clients. |
||
5803 | */ |
||
5804 | public function setSocialCodeOfficielCommune(?string $socialCodeOfficielCommune): Clients { |
||
5805 | $this->socialCodeOfficielCommune = $socialCodeOfficielCommune; |
||
5806 | return $this; |
||
5807 | } |
||
5808 | |||
5809 | /** |
||
5810 | * Set the social code postal. |
||
5811 | * |
||
5812 | * @param string|null $socialCodePostal The social code postal. |
||
5813 | * @return Clients Returns this Clients. |
||
5814 | */ |
||
5815 | public function setSocialCodePostal(?string $socialCodePostal): Clients { |
||
5816 | $this->socialCodePostal = $socialCodePostal; |
||
5817 | return $this; |
||
5818 | } |
||
5819 | |||
5820 | /** |
||
5821 | * Set the social complement. |
||
5822 | * |
||
5823 | * @param string|null $socialComplement The social complement. |
||
5824 | * @return Clients Returns this Clients. |
||
5825 | */ |
||
5826 | public function setSocialComplement(?string $socialComplement): Clients { |
||
5827 | $this->socialComplement = $socialComplement; |
||
5828 | return $this; |
||
5829 | } |
||
5830 | |||
5831 | /** |
||
5832 | * Set the social nom rs. |
||
5833 | * |
||
5834 | * @param string|null $socialNomRs The social nom rs. |
||
5835 | * @return Clients Returns this Clients. |
||
5836 | */ |
||
5837 | public function setSocialNomRs(?string $socialNomRs): Clients { |
||
5838 | $this->socialNomRs = $socialNomRs; |
||
5839 | return $this; |
||
5840 | } |
||
5841 | |||
5842 | /** |
||
5843 | * Set the social nom ville. |
||
5844 | * |
||
5845 | * @param string|null $socialNomVille The social nom ville. |
||
5846 | * @return Clients Returns this Clients. |
||
5847 | */ |
||
5848 | public function setSocialNomVille(?string $socialNomVille): Clients { |
||
5849 | $this->socialNomVille = $socialNomVille; |
||
5850 | return $this; |
||
5851 | } |
||
5852 | |||
5853 | /** |
||
5854 | * Set the social nom voie. |
||
5855 | * |
||
5856 | * @param string|null $socialNomVoie The social nom voie. |
||
5857 | * @return Clients Returns this Clients. |
||
5858 | */ |
||
5859 | public function setSocialNomVoie(?string $socialNomVoie): Clients { |
||
5860 | $this->socialNomVoie = $socialNomVoie; |
||
5861 | return $this; |
||
5862 | } |
||
5863 | |||
5864 | /** |
||
5865 | * Set the social num voie. |
||
5866 | * |
||
5867 | * @param string|null $socialNumVoie The social num voie. |
||
5868 | * @return Clients Returns this Clients. |
||
5869 | */ |
||
5870 | public function setSocialNumVoie(?string $socialNumVoie): Clients { |
||
5871 | $this->socialNumVoie = $socialNumVoie; |
||
5872 | return $this; |
||
5873 | } |
||
5874 | |||
5875 | /** |
||
5876 | * Set the soumis escompte. |
||
5877 | * |
||
5878 | * @param bool|null $soumisEscompte The soumis escompte. |
||
5879 | * @return Clients Returns this Clients. |
||
5880 | */ |
||
5881 | public function setSoumisEscompte(?bool $soumisEscompte): Clients { |
||
5882 | $this->soumisEscompte = $soumisEscompte; |
||
5883 | return $this; |
||
5884 | } |
||
5885 | |||
5886 | /** |
||
5887 | * Set the soumis port1. |
||
5888 | * |
||
5889 | * @param string|null $soumisPort1 The soumis port1. |
||
5890 | * @return Clients Returns this Clients. |
||
5891 | */ |
||
5892 | public function setSoumisPort1(?string $soumisPort1): Clients { |
||
5893 | $this->soumisPort1 = $soumisPort1; |
||
5894 | return $this; |
||
5895 | } |
||
5896 | |||
5897 | /** |
||
5898 | * Set the soumis port2. |
||
5899 | * |
||
5900 | * @param string|null $soumisPort2 The soumis port2. |
||
5901 | * @return Clients Returns this Clients. |
||
5902 | */ |
||
5903 | public function setSoumisPort2(?string $soumisPort2): Clients { |
||
5904 | $this->soumisPort2 = $soumisPort2; |
||
5905 | return $this; |
||
5906 | } |
||
5907 | |||
5908 | /** |
||
5909 | * Set the soumis taxe1. |
||
5910 | * |
||
5911 | * @param bool|null $soumisTaxe1 The soumis taxe1. |
||
5912 | * @return Clients Returns this Clients. |
||
5913 | */ |
||
5914 | public function setSoumisTaxe1(?bool $soumisTaxe1): Clients { |
||
5915 | $this->soumisTaxe1 = $soumisTaxe1; |
||
5916 | return $this; |
||
5917 | } |
||
5918 | |||
5919 | /** |
||
5920 | * Set the soumis taxe2. |
||
5921 | * |
||
5922 | * @param bool|null $soumisTaxe2 The soumis taxe2. |
||
5923 | * @return Clients Returns this Clients. |
||
5924 | */ |
||
5925 | public function setSoumisTaxe2(?bool $soumisTaxe2): Clients { |
||
5926 | $this->soumisTaxe2 = $soumisTaxe2; |
||
5927 | return $this; |
||
5928 | } |
||
5929 | |||
5930 | /** |
||
5931 | * Set the soumis taxe3. |
||
5932 | * |
||
5933 | * @param bool|null $soumisTaxe3 The soumis taxe3. |
||
5934 | * @return Clients Returns this Clients. |
||
5935 | */ |
||
5936 | public function setSoumisTaxe3(?bool $soumisTaxe3): Clients { |
||
5937 | $this->soumisTaxe3 = $soumisTaxe3; |
||
5938 | return $this; |
||
5939 | } |
||
5940 | |||
5941 | /** |
||
5942 | * Set the soumis taxe4. |
||
5943 | * |
||
5944 | * @param bool|null $soumisTaxe4 The soumis taxe4. |
||
5945 | * @return Clients Returns this Clients. |
||
5946 | */ |
||
5947 | public function setSoumisTaxe4(?bool $soumisTaxe4): Clients { |
||
5948 | $this->soumisTaxe4 = $soumisTaxe4; |
||
5949 | return $this; |
||
5950 | } |
||
5951 | |||
5952 | /** |
||
5953 | * Set the soumis taxe5. |
||
5954 | * |
||
5955 | * @param bool|null $soumisTaxe5 The soumis taxe5. |
||
5956 | * @return Clients Returns this Clients. |
||
5957 | */ |
||
5958 | public function setSoumisTaxe5(?bool $soumisTaxe5): Clients { |
||
5959 | $this->soumisTaxe5 = $soumisTaxe5; |
||
5960 | return $this; |
||
5961 | } |
||
5962 | |||
5963 | /** |
||
5964 | * Set the soumis tva. |
||
5965 | * |
||
5966 | * @param bool|null $soumisTva The soumis tva. |
||
5967 | * @return Clients Returns this Clients. |
||
5968 | */ |
||
5969 | public function setSoumisTva(?bool $soumisTva): Clients { |
||
5970 | $this->soumisTva = $soumisTva; |
||
5971 | return $this; |
||
5972 | } |
||
5973 | |||
5974 | /** |
||
5975 | * Set the tableau de bord. |
||
5976 | * |
||
5977 | * @param string|null $tableauDeBord The tableau de bord. |
||
5978 | * @return Clients Returns this Clients. |
||
5979 | */ |
||
5980 | public function setTableauDeBord(?string $tableauDeBord): Clients { |
||
5981 | $this->tableauDeBord = $tableauDeBord; |
||
5982 | return $this; |
||
5983 | } |
||
5984 | |||
5985 | /** |
||
5986 | * Set the toutes activites. |
||
5987 | * |
||
5988 | * @param string|null $toutesActivites The toutes activites. |
||
5989 | * @return Clients Returns this Clients. |
||
5990 | */ |
||
5991 | public function setToutesActivites(?string $toutesActivites): Clients { |
||
5992 | $this->toutesActivites = $toutesActivites; |
||
5993 | return $this; |
||
5994 | } |
||
5995 | |||
5996 | /** |
||
5997 | * Set the transporteur. |
||
5998 | * |
||
5999 | * @param string|null $transporteur The transporteur. |
||
6000 | * @return Clients Returns this Clients. |
||
6001 | */ |
||
6002 | public function setTransporteur(?string $transporteur): Clients { |
||
6003 | $this->transporteur = $transporteur; |
||
6004 | return $this; |
||
6005 | } |
||
6006 | |||
6007 | /** |
||
6008 | * Set the tresorerie. |
||
6009 | * |
||
6010 | * @param string|null $tresorerie The tresorerie. |
||
6011 | * @return Clients Returns this Clients. |
||
6012 | */ |
||
6013 | public function setTresorerie(?string $tresorerie): Clients { |
||
6014 | $this->tresorerie = $tresorerie; |
||
6015 | return $this; |
||
6016 | } |
||
6017 | |||
6018 | /** |
||
6019 | * Set the tva regime. |
||
6020 | * |
||
6021 | * @param string|null $tvaRegime The tva regime. |
||
6022 | * @return Clients Returns this Clients. |
||
6023 | */ |
||
6024 | public function setTvaRegime(?string $tvaRegime): Clients { |
||
6025 | $this->tvaRegime = $tvaRegime; |
||
6026 | return $this; |
||
6027 | } |
||
6028 | |||
6029 | /** |
||
6030 | * Set the tx escompte vente. |
||
6031 | * |
||
6032 | * @param float|null $txEscompteVente The tx escompte vente. |
||
6033 | * @return Clients Returns this Clients. |
||
6034 | */ |
||
6035 | public function setTxEscompteVente(?float $txEscompteVente): Clients { |
||
6036 | $this->txEscompteVente = $txEscompteVente; |
||
6037 | return $this; |
||
6038 | } |
||
6039 | |||
6040 | /** |
||
6041 | * Set the type client. |
||
6042 | * |
||
6043 | * @param string|null $typeClient The type client. |
||
6044 | * @return Clients Returns this Clients. |
||
6045 | */ |
||
6046 | public function setTypeClient(?string $typeClient): Clients { |
||
6047 | $this->typeClient = $typeClient; |
||
6048 | return $this; |
||
6049 | } |
||
6050 | |||
6051 | /** |
||
6052 | * Set the type edit bl. |
||
6053 | * |
||
6054 | * @param string|null $typeEditBl The type edit bl. |
||
6055 | * @return Clients Returns this Clients. |
||
6056 | */ |
||
6057 | public function setTypeEditBl(?string $typeEditBl): Clients { |
||
6058 | $this->typeEditBl = $typeEditBl; |
||
6059 | return $this; |
||
6060 | } |
||
6061 | |||
6062 | /** |
||
6063 | * Set the type facture. |
||
6064 | * |
||
6065 | * @param int|null $typeFacture The type facture. |
||
6066 | * @return Clients Returns this Clients. |
||
6067 | */ |
||
6068 | public function setTypeFacture(?int $typeFacture): Clients { |
||
6069 | $this->typeFacture = $typeFacture; |
||
6070 | return $this; |
||
6071 | } |
||
6072 | |||
6073 | /** |
||
6074 | * Set the type gestion etebac. |
||
6075 | * |
||
6076 | * @param string|null $typeGestionEtebac The type gestion etebac. |
||
6077 | * @return Clients Returns this Clients. |
||
6078 | */ |
||
6079 | public function setTypeGestionEtebac(?string $typeGestionEtebac): Clients { |
||
6080 | $this->typeGestionEtebac = $typeGestionEtebac; |
||
6081 | return $this; |
||
6082 | } |
||
6083 | |||
6084 | /** |
||
6085 | * Set the use adresse fact. |
||
6086 | * |
||
6087 | * @param bool|null $useAdresseFact The use adresse fact. |
||
6088 | * @return Clients Returns this Clients. |
||
6089 | */ |
||
6090 | public function setUseAdresseFact(?bool $useAdresseFact): Clients { |
||
6091 | $this->useAdresseFact = $useAdresseFact; |
||
6092 | return $this; |
||
6093 | } |
||
6094 | |||
6095 | /** |
||
6096 | * Set the use corres sociale. |
||
6097 | * |
||
6098 | * @param bool|null $useCorresSociale The use corres sociale. |
||
6099 | * @return Clients Returns this Clients. |
||
6100 | */ |
||
6101 | public function setUseCorresSociale(?bool $useCorresSociale): Clients { |
||
6102 | $this->useCorresSociale = $useCorresSociale; |
||
6103 | return $this; |
||
6104 | } |
||
6105 | } |
||
6106 |