Complex classes like Clients2 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 Clients2, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
22 | class Clients2 { |
||
23 | |||
24 | /** |
||
25 | * Allotissement. |
||
26 | * |
||
27 | * @var bool|null |
||
28 | */ |
||
29 | private $allotissement; |
||
30 | |||
31 | /** |
||
32 | * Bl mail. |
||
33 | * |
||
34 | * @var bool|null |
||
35 | */ |
||
36 | private $blMail; |
||
37 | |||
38 | /** |
||
39 | * Cdes mail. |
||
40 | * |
||
41 | * @var bool|null |
||
42 | */ |
||
43 | private $cdesMail; |
||
44 | |||
45 | /** |
||
46 | * Code activite cga. |
||
47 | * |
||
48 | * @var string|null |
||
49 | */ |
||
50 | private $codeActiviteCga; |
||
51 | |||
52 | /** |
||
53 | * Code client. |
||
54 | * |
||
55 | * @var string|null |
||
56 | */ |
||
57 | private $codeClient; |
||
58 | |||
59 | /** |
||
60 | * Code transporteur1. |
||
61 | * |
||
62 | * @var string|null |
||
63 | */ |
||
64 | private $codeTransporteur1; |
||
65 | |||
66 | /** |
||
67 | * Code transporteur2. |
||
68 | * |
||
69 | * @var string|null |
||
70 | */ |
||
71 | private $codeTransporteur2; |
||
72 | |||
73 | /** |
||
74 | * Code transporteur3. |
||
75 | * |
||
76 | * @var string|null |
||
77 | */ |
||
78 | private $codeTransporteur3; |
||
79 | |||
80 | /** |
||
81 | * Code transporteur4. |
||
82 | * |
||
83 | * @var string|null |
||
84 | */ |
||
85 | private $codeTransporteur4; |
||
86 | |||
87 | /** |
||
88 | * Code transporteur5. |
||
89 | * |
||
90 | * @var string|null |
||
91 | */ |
||
92 | private $codeTransporteur5; |
||
93 | |||
94 | /** |
||
95 | * Date deb exe publication. |
||
96 | * |
||
97 | * @var DateTime|null |
||
98 | */ |
||
99 | private $dateDebExePublication; |
||
100 | |||
101 | /** |
||
102 | * Delai livraison. |
||
103 | * |
||
104 | * @var int|null |
||
105 | */ |
||
106 | private $delaiLivraison; |
||
107 | |||
108 | /** |
||
109 | * Devis mail. |
||
110 | * |
||
111 | * @var bool|null |
||
112 | */ |
||
113 | private $devisMail; |
||
114 | |||
115 | /** |
||
116 | * Ean client. |
||
117 | * |
||
118 | * @var string|null |
||
119 | */ |
||
120 | private $eanClient; |
||
121 | |||
122 | /** |
||
123 | * Ean facture papier. |
||
124 | * |
||
125 | * @var string|null |
||
126 | */ |
||
127 | private $eanFacturePapier; |
||
128 | |||
129 | /** |
||
130 | * Ean plateforme. |
||
131 | * |
||
132 | * @var string|null |
||
133 | */ |
||
134 | private $eanPlateforme; |
||
135 | |||
136 | /** |
||
137 | * Echeance fin decade. |
||
138 | * |
||
139 | * @var bool|null |
||
140 | */ |
||
141 | private $echeanceFinDecade; |
||
142 | |||
143 | /** |
||
144 | * Echeance fin quinzaine. |
||
145 | * |
||
146 | * @var bool|null |
||
147 | */ |
||
148 | private $echeanceFinQuinzaine; |
||
149 | |||
150 | /** |
||
151 | * Edi export bl. |
||
152 | * |
||
153 | * @var bool|null |
||
154 | */ |
||
155 | private $ediExportBl; |
||
156 | |||
157 | /** |
||
158 | * Edi export fac. |
||
159 | * |
||
160 | * @var bool|null |
||
161 | */ |
||
162 | private $ediExportFac; |
||
163 | |||
164 | /** |
||
165 | * Fact complement suite. |
||
166 | * |
||
167 | * @var string|null |
||
168 | */ |
||
169 | private $factComplementSuite; |
||
170 | |||
171 | /** |
||
172 | * Fact zip code. |
||
173 | * |
||
174 | * @var string|null |
||
175 | */ |
||
176 | private $factZipCode; |
||
177 | |||
178 | /** |
||
179 | * Ind mail publication. |
||
180 | * |
||
181 | * @var int|null |
||
182 | */ |
||
183 | private $indMailPublication; |
||
184 | |||
185 | /** |
||
186 | * Indice bl mail. |
||
187 | * |
||
188 | * @var int|null |
||
189 | */ |
||
190 | private $indiceBlMail; |
||
191 | |||
192 | /** |
||
193 | * Indice cdes mail. |
||
194 | * |
||
195 | * @var int|null |
||
196 | */ |
||
197 | private $indiceCdesMail; |
||
198 | |||
199 | /** |
||
200 | * Indice devis mail. |
||
201 | * |
||
202 | * @var int|null |
||
203 | */ |
||
204 | private $indiceDevisMail; |
||
205 | |||
206 | /** |
||
207 | * Indice releves mail. |
||
208 | * |
||
209 | * @var int|null |
||
210 | */ |
||
211 | private $indiceRelevesMail; |
||
212 | |||
213 | /** |
||
214 | * Lettre de mission date signature. |
||
215 | * |
||
216 | * @var DateTime|null |
||
217 | */ |
||
218 | private $lettreDeMissionDateSignature; |
||
219 | |||
220 | /** |
||
221 | * localisation archives. |
||
222 | * |
||
223 | * @var string|null |
||
224 | */ |
||
225 | private $localisationArchives; |
||
226 | |||
227 | /** |
||
228 | * Modele facture manuelle spe. |
||
229 | * |
||
230 | * @var string|null |
||
231 | */ |
||
232 | private $modeleFactureManuelleSpe; |
||
233 | |||
234 | /** |
||
235 | * Montant depassement autorise. |
||
236 | * |
||
237 | * @var float|null |
||
238 | */ |
||
239 | private $montantDepassementAutorise; |
||
240 | |||
241 | /** |
||
242 | * Motif entree. |
||
243 | * |
||
244 | * @var string|null |
||
245 | */ |
||
246 | private $motifEntree; |
||
247 | |||
248 | /** |
||
249 | * Motif sortie. |
||
250 | * |
||
251 | * @var string|null |
||
252 | */ |
||
253 | private $motifSortie; |
||
254 | |||
255 | /** |
||
256 | * Mt transport1. |
||
257 | * |
||
258 | * @var float|null |
||
259 | */ |
||
260 | private $mtTransport1; |
||
261 | |||
262 | /** |
||
263 | * Mt transport2. |
||
264 | * |
||
265 | * @var float|null |
||
266 | */ |
||
267 | private $mtTransport2; |
||
268 | |||
269 | /** |
||
270 | * Mt transport3. |
||
271 | * |
||
272 | * @var float|null |
||
273 | */ |
||
274 | private $mtTransport3; |
||
275 | |||
276 | /** |
||
277 | * Mt transport4. |
||
278 | * |
||
279 | * @var float|null |
||
280 | */ |
||
281 | private $mtTransport4; |
||
282 | |||
283 | /** |
||
284 | * Mt transport5. |
||
285 | * |
||
286 | * @var float|null |
||
287 | */ |
||
288 | private $mtTransport5; |
||
289 | |||
290 | /** |
||
291 | * Non concerne is. |
||
292 | * |
||
293 | * @var bool|null |
||
294 | */ |
||
295 | private $nonConcerneIs; |
||
296 | |||
297 | /** |
||
298 | * Non concerne tp. |
||
299 | * |
||
300 | * @var bool|null |
||
301 | */ |
||
302 | private $nonConcerneTp; |
||
303 | |||
304 | /** |
||
305 | * Non facturable. |
||
306 | * |
||
307 | * @var bool|null |
||
308 | */ |
||
309 | private $nonFacturable; |
||
310 | |||
311 | /** |
||
312 | * Pme tarif ou rem spe. |
||
313 | * |
||
314 | * @var bool|null |
||
315 | */ |
||
316 | private $pmeTarifOuRemSpe; |
||
317 | |||
318 | /** |
||
319 | * Prevenir mail publier. |
||
320 | * |
||
321 | * @var bool|null |
||
322 | */ |
||
323 | private $prevenirMailPublier; |
||
324 | |||
325 | /** |
||
326 | * Releves mail. |
||
327 | * |
||
328 | * @var bool|null |
||
329 | */ |
||
330 | private $relevesMail; |
||
331 | |||
332 | /** |
||
333 | * Social complement suite. |
||
334 | * |
||
335 | * @var string|null |
||
336 | */ |
||
337 | private $socialComplementSuite; |
||
338 | |||
339 | /** |
||
340 | * Social zip code. |
||
341 | * |
||
342 | * @var string|null |
||
343 | */ |
||
344 | private $socialZipCode; |
||
345 | |||
346 | /** |
||
347 | * Trs art pied. |
||
348 | * |
||
349 | * @var string|null |
||
350 | */ |
||
351 | private $trsArtPied; |
||
352 | |||
353 | /** |
||
354 | * Trs art pied2. |
||
355 | * |
||
356 | * @var string|null |
||
357 | */ |
||
358 | private $trsArtPied2; |
||
359 | |||
360 | /** |
||
361 | * Trs categ march. |
||
362 | * |
||
363 | * @var string|null |
||
364 | */ |
||
365 | private $trsCategMarch; |
||
366 | |||
367 | /** |
||
368 | * Trs centre ana. |
||
369 | * |
||
370 | * @var string|null |
||
371 | */ |
||
372 | private $trsCentreAna; |
||
373 | |||
374 | /** |
||
375 | * Trs code tarif1. |
||
376 | * |
||
377 | * @var string|null |
||
378 | */ |
||
379 | private $trsCodeTarif1; |
||
380 | |||
381 | /** |
||
382 | * Trs code tarif1 sens. |
||
383 | * |
||
384 | * @var string|null |
||
385 | */ |
||
386 | private $trsCodeTarif1Sens; |
||
387 | |||
388 | /** |
||
389 | * Trs code tarif2. |
||
390 | * |
||
391 | * @var string|null |
||
392 | */ |
||
393 | private $trsCodeTarif2; |
||
394 | |||
395 | /** |
||
396 | * Trs code tarif2 sens. |
||
397 | * |
||
398 | * @var string|null |
||
399 | */ |
||
400 | private $trsCodeTarif2Sens; |
||
401 | |||
402 | /** |
||
403 | * Trs code tarif3. |
||
404 | * |
||
405 | * @var string|null |
||
406 | */ |
||
407 | private $trsCodeTarif3; |
||
408 | |||
409 | /** |
||
410 | * Trs code tarif3 sens. |
||
411 | * |
||
412 | * @var string|null |
||
413 | */ |
||
414 | private $trsCodeTarif3Sens; |
||
415 | |||
416 | /** |
||
417 | * Trs code tarif4. |
||
418 | * |
||
419 | * @var string|null |
||
420 | */ |
||
421 | private $trsCodeTarif4; |
||
422 | |||
423 | /** |
||
424 | * Trs code tarif4 sens. |
||
425 | * |
||
426 | * @var string|null |
||
427 | */ |
||
428 | private $trsCodeTarif4Sens; |
||
429 | |||
430 | /** |
||
431 | * Trs code tarif5. |
||
432 | * |
||
433 | * @var string|null |
||
434 | */ |
||
435 | private $trsCodeTarif5; |
||
436 | |||
437 | /** |
||
438 | * Trs code tarif5 sens. |
||
439 | * |
||
440 | * @var string|null |
||
441 | */ |
||
442 | private $trsCodeTarif5Sens; |
||
443 | |||
444 | /** |
||
445 | * Trs code tarif6. |
||
446 | * |
||
447 | * @var string|null |
||
448 | */ |
||
449 | private $trsCodeTarif6; |
||
450 | |||
451 | /** |
||
452 | * Trs code tarif6 sens. |
||
453 | * |
||
454 | * @var string|null |
||
455 | */ |
||
456 | private $trsCodeTarif6Sens; |
||
457 | |||
458 | /** |
||
459 | * Trs code tarif def. |
||
460 | * |
||
461 | * @var int|null |
||
462 | */ |
||
463 | private $trsCodeTarifDef; |
||
464 | |||
465 | /** |
||
466 | * Trs comment1. |
||
467 | * |
||
468 | * @var string|null |
||
469 | */ |
||
470 | private $trsComment1; |
||
471 | |||
472 | /** |
||
473 | * Trs comment2. |
||
474 | * |
||
475 | * @var string|null |
||
476 | */ |
||
477 | private $trsComment2; |
||
478 | |||
479 | /** |
||
480 | * Trs comment3. |
||
481 | * |
||
482 | * @var string|null |
||
483 | */ |
||
484 | private $trsComment3; |
||
485 | |||
486 | /** |
||
487 | * Trs comment4. |
||
488 | * |
||
489 | * @var string|null |
||
490 | */ |
||
491 | private $trsComment4; |
||
492 | |||
493 | /** |
||
494 | * Trs comment5. |
||
495 | * |
||
496 | * @var string|null |
||
497 | */ |
||
498 | private $trsComment5; |
||
499 | |||
500 | /** |
||
501 | * Trs comment6. |
||
502 | * |
||
503 | * @var string|null |
||
504 | */ |
||
505 | private $trsComment6; |
||
506 | |||
507 | /** |
||
508 | * Trs comment7. |
||
509 | * |
||
510 | * @var string|null |
||
511 | */ |
||
512 | private $trsComment7; |
||
513 | |||
514 | /** |
||
515 | * Trs comment8. |
||
516 | * |
||
517 | * @var string|null |
||
518 | */ |
||
519 | private $trsComment8; |
||
520 | |||
521 | /** |
||
522 | * Trs comment9. |
||
523 | * |
||
524 | * @var string|null |
||
525 | */ |
||
526 | private $trsComment9; |
||
527 | |||
528 | /** |
||
529 | * Trs consignes1. |
||
530 | * |
||
531 | * @var string|null |
||
532 | */ |
||
533 | private $trsConsignes1; |
||
534 | |||
535 | /** |
||
536 | * Trs consignes2. |
||
537 | * |
||
538 | * @var string|null |
||
539 | */ |
||
540 | private $trsConsignes2; |
||
541 | |||
542 | /** |
||
543 | * Trs consignes3. |
||
544 | * |
||
545 | * @var string|null |
||
546 | */ |
||
547 | private $trsConsignes3; |
||
548 | |||
549 | /** |
||
550 | * Trs gestion palettes. |
||
551 | * |
||
552 | * @var bool|null |
||
553 | */ |
||
554 | private $trsGestionPalettes; |
||
555 | |||
556 | /** |
||
557 | * Trs marchandise sensible. |
||
558 | * |
||
559 | * @var bool|null |
||
560 | */ |
||
561 | private $trsMarchandiseSensible; |
||
562 | |||
563 | /** |
||
564 | * Trs modele facture spe. |
||
565 | * |
||
566 | * @var string|null |
||
567 | */ |
||
568 | private $trsModeleFactureSpe; |
||
569 | |||
570 | /** |
||
571 | * Trs poids mini pal. |
||
572 | * |
||
573 | * @var float|null |
||
574 | */ |
||
575 | private $trsPoidsMiniPal; |
||
576 | |||
577 | /** |
||
578 | * Trs port du auto. |
||
579 | * |
||
580 | * @var bool|null |
||
581 | */ |
||
582 | private $trsPortDuAuto; |
||
583 | |||
584 | /** |
||
585 | * Trs suivi ca mens. |
||
586 | * |
||
587 | * @var bool|null |
||
588 | */ |
||
589 | private $trsSuiviCaMens; |
||
590 | |||
591 | /** |
||
592 | * Trs suivi dt enl. |
||
593 | * |
||
594 | * @var bool|null |
||
595 | */ |
||
596 | private $trsSuiviDtEnl; |
||
597 | |||
598 | /** |
||
599 | * Trs suivi dt liv. |
||
600 | * |
||
601 | * @var bool|null |
||
602 | */ |
||
603 | private $trsSuiviDtLiv; |
||
604 | |||
605 | /** |
||
606 | * Trs suivi dt liv fax. |
||
607 | * |
||
608 | * @var string|null |
||
609 | */ |
||
610 | private $trsSuiviDtLivFax; |
||
611 | |||
612 | /** |
||
613 | * Trs suivi dt liv mail. |
||
614 | * |
||
615 | * @var string|null |
||
616 | */ |
||
617 | private $trsSuiviDtLivMail; |
||
618 | |||
619 | /** |
||
620 | * Trs type client. |
||
621 | * |
||
622 | * @var string|null |
||
623 | */ |
||
624 | private $trsTypeClient; |
||
625 | |||
626 | /** |
||
627 | * Trs type facturation. |
||
628 | * |
||
629 | * @var string|null |
||
630 | */ |
||
631 | private $trsTypeFacturation; |
||
632 | |||
633 | /** |
||
634 | * Trs type travail. |
||
635 | * |
||
636 | * @var string|null |
||
637 | */ |
||
638 | private $trsTypeTravail; |
||
639 | |||
640 | /** |
||
641 | * Type transport1. |
||
642 | * |
||
643 | * @var string|null |
||
644 | */ |
||
645 | private $typeTransport1; |
||
646 | |||
647 | /** |
||
648 | * Type transport2. |
||
649 | * |
||
650 | * @var string|null |
||
651 | */ |
||
652 | private $typeTransport2; |
||
653 | |||
654 | /** |
||
655 | * Type transport3. |
||
656 | * |
||
657 | * @var string|null |
||
658 | */ |
||
659 | private $typeTransport3; |
||
660 | |||
661 | /** |
||
662 | * Type transport4. |
||
663 | * |
||
664 | * @var string|null |
||
665 | */ |
||
666 | private $typeTransport4; |
||
667 | |||
668 | /** |
||
669 | * Type transport5. |
||
670 | * |
||
671 | * @var string|null |
||
672 | */ |
||
673 | private $typeTransport5; |
||
674 | |||
675 | /** |
||
676 | * Constructor. |
||
677 | */ |
||
678 | public function __construct() { |
||
679 | // NOTHING TO DO |
||
680 | } |
||
681 | |||
682 | /** |
||
683 | * Get the allotissement. |
||
684 | * |
||
685 | * @return bool|null Returns the allotissement. |
||
686 | */ |
||
687 | public function getAllotissement(): ?bool { |
||
688 | return $this->allotissement; |
||
689 | } |
||
690 | |||
691 | /** |
||
692 | * Get the bl mail. |
||
693 | * |
||
694 | * @return bool|null Returns the bl mail. |
||
695 | */ |
||
696 | public function getBlMail(): ?bool { |
||
697 | return $this->blMail; |
||
698 | } |
||
699 | |||
700 | /** |
||
701 | * Get the cdes mail. |
||
702 | * |
||
703 | * @return bool|null Returns the cdes mail. |
||
704 | */ |
||
705 | public function getCdesMail(): ?bool { |
||
706 | return $this->cdesMail; |
||
707 | } |
||
708 | |||
709 | /** |
||
710 | * Get the code activite cga. |
||
711 | * |
||
712 | * @return string|null Returns the code activite cga. |
||
713 | */ |
||
714 | public function getCodeActiviteCga(): ?string { |
||
715 | return $this->codeActiviteCga; |
||
716 | } |
||
717 | |||
718 | /** |
||
719 | * Get the code client. |
||
720 | * |
||
721 | * @return string|null Returns the code client. |
||
722 | */ |
||
723 | public function getCodeClient(): ?string { |
||
724 | return $this->codeClient; |
||
725 | } |
||
726 | |||
727 | /** |
||
728 | * Get the code transporteur1. |
||
729 | * |
||
730 | * @return string|null Returns the code transporteur1. |
||
731 | */ |
||
732 | public function getCodeTransporteur1(): ?string { |
||
733 | return $this->codeTransporteur1; |
||
734 | } |
||
735 | |||
736 | /** |
||
737 | * Get the code transporteur2. |
||
738 | * |
||
739 | * @return string|null Returns the code transporteur2. |
||
740 | */ |
||
741 | public function getCodeTransporteur2(): ?string { |
||
742 | return $this->codeTransporteur2; |
||
743 | } |
||
744 | |||
745 | /** |
||
746 | * Get the code transporteur3. |
||
747 | * |
||
748 | * @return string|null Returns the code transporteur3. |
||
749 | */ |
||
750 | public function getCodeTransporteur3(): ?string { |
||
751 | return $this->codeTransporteur3; |
||
752 | } |
||
753 | |||
754 | /** |
||
755 | * Get the code transporteur4. |
||
756 | * |
||
757 | * @return string|null Returns the code transporteur4. |
||
758 | */ |
||
759 | public function getCodeTransporteur4(): ?string { |
||
760 | return $this->codeTransporteur4; |
||
761 | } |
||
762 | |||
763 | /** |
||
764 | * Get the code transporteur5. |
||
765 | * |
||
766 | * @return string|null Returns the code transporteur5. |
||
767 | */ |
||
768 | public function getCodeTransporteur5(): ?string { |
||
769 | return $this->codeTransporteur5; |
||
770 | } |
||
771 | |||
772 | /** |
||
773 | * Get the date deb exe publication. |
||
774 | * |
||
775 | * @return DateTime|null Returns the date deb exe publication. |
||
776 | */ |
||
777 | public function getDateDebExePublication(): ?DateTime { |
||
778 | return $this->dateDebExePublication; |
||
779 | } |
||
780 | |||
781 | /** |
||
782 | * Get the delai livraison. |
||
783 | * |
||
784 | * @return int|null Returns the delai livraison. |
||
785 | */ |
||
786 | public function getDelaiLivraison(): ?int { |
||
787 | return $this->delaiLivraison; |
||
788 | } |
||
789 | |||
790 | /** |
||
791 | * Get the devis mail. |
||
792 | * |
||
793 | * @return bool|null Returns the devis mail. |
||
794 | */ |
||
795 | public function getDevisMail(): ?bool { |
||
796 | return $this->devisMail; |
||
797 | } |
||
798 | |||
799 | /** |
||
800 | * Get the ean client. |
||
801 | * |
||
802 | * @return string|null Returns the ean client. |
||
803 | */ |
||
804 | public function getEanClient(): ?string { |
||
805 | return $this->eanClient; |
||
806 | } |
||
807 | |||
808 | /** |
||
809 | * Get the ean facture papier. |
||
810 | * |
||
811 | * @return string|null Returns the ean facture papier. |
||
812 | */ |
||
813 | public function getEanFacturePapier(): ?string { |
||
814 | return $this->eanFacturePapier; |
||
815 | } |
||
816 | |||
817 | /** |
||
818 | * Get the ean plateforme. |
||
819 | * |
||
820 | * @return string|null Returns the ean plateforme. |
||
821 | */ |
||
822 | public function getEanPlateforme(): ?string { |
||
823 | return $this->eanPlateforme; |
||
824 | } |
||
825 | |||
826 | /** |
||
827 | * Get the echeance fin decade. |
||
828 | * |
||
829 | * @return bool|null Returns the echeance fin decade. |
||
830 | */ |
||
831 | public function getEcheanceFinDecade(): ?bool { |
||
832 | return $this->echeanceFinDecade; |
||
833 | } |
||
834 | |||
835 | /** |
||
836 | * Get the echeance fin quinzaine. |
||
837 | * |
||
838 | * @return bool|null Returns the echeance fin quinzaine. |
||
839 | */ |
||
840 | public function getEcheanceFinQuinzaine(): ?bool { |
||
841 | return $this->echeanceFinQuinzaine; |
||
842 | } |
||
843 | |||
844 | /** |
||
845 | * Get the edi export bl. |
||
846 | * |
||
847 | * @return bool|null Returns the edi export bl. |
||
848 | */ |
||
849 | public function getEdiExportBl(): ?bool { |
||
850 | return $this->ediExportBl; |
||
851 | } |
||
852 | |||
853 | /** |
||
854 | * Get the edi export fac. |
||
855 | * |
||
856 | * @return bool|null Returns the edi export fac. |
||
857 | */ |
||
858 | public function getEdiExportFac(): ?bool { |
||
859 | return $this->ediExportFac; |
||
860 | } |
||
861 | |||
862 | /** |
||
863 | * Get the fact complement suite. |
||
864 | * |
||
865 | * @return string|null Returns the fact complement suite. |
||
866 | */ |
||
867 | public function getFactComplementSuite(): ?string { |
||
868 | return $this->factComplementSuite; |
||
869 | } |
||
870 | |||
871 | /** |
||
872 | * Get the fact zip code. |
||
873 | * |
||
874 | * @return string|null Returns the fact zip code. |
||
875 | */ |
||
876 | public function getFactZipCode(): ?string { |
||
877 | return $this->factZipCode; |
||
878 | } |
||
879 | |||
880 | /** |
||
881 | * Get the ind mail publication. |
||
882 | * |
||
883 | * @return int|null Returns the ind mail publication. |
||
884 | */ |
||
885 | public function getIndMailPublication(): ?int { |
||
886 | return $this->indMailPublication; |
||
887 | } |
||
888 | |||
889 | /** |
||
890 | * Get the indice bl mail. |
||
891 | * |
||
892 | * @return int|null Returns the indice bl mail. |
||
893 | */ |
||
894 | public function getIndiceBlMail(): ?int { |
||
895 | return $this->indiceBlMail; |
||
896 | } |
||
897 | |||
898 | /** |
||
899 | * Get the indice cdes mail. |
||
900 | * |
||
901 | * @return int|null Returns the indice cdes mail. |
||
902 | */ |
||
903 | public function getIndiceCdesMail(): ?int { |
||
904 | return $this->indiceCdesMail; |
||
905 | } |
||
906 | |||
907 | /** |
||
908 | * Get the indice devis mail. |
||
909 | * |
||
910 | * @return int|null Returns the indice devis mail. |
||
911 | */ |
||
912 | public function getIndiceDevisMail(): ?int { |
||
913 | return $this->indiceDevisMail; |
||
914 | } |
||
915 | |||
916 | /** |
||
917 | * Get the indice releves mail. |
||
918 | * |
||
919 | * @return int|null Returns the indice releves mail. |
||
920 | */ |
||
921 | public function getIndiceRelevesMail(): ?int { |
||
922 | return $this->indiceRelevesMail; |
||
923 | } |
||
924 | |||
925 | /** |
||
926 | * Get the lettre de mission date signature. |
||
927 | * |
||
928 | * @return DateTime|null Returns the lettre de mission date signature. |
||
929 | */ |
||
930 | public function getLettreDeMissionDateSignature(): ?DateTime { |
||
931 | return $this->lettreDeMissionDateSignature; |
||
932 | } |
||
933 | |||
934 | /** |
||
935 | * Get the modele facture manuelle spe. |
||
936 | * |
||
937 | * @return string|null Returns the modele facture manuelle spe. |
||
938 | */ |
||
939 | public function getModeleFactureManuelleSpe(): ?string { |
||
940 | return $this->modeleFactureManuelleSpe; |
||
941 | } |
||
942 | |||
943 | /** |
||
944 | * Get the montant depassement autorise. |
||
945 | * |
||
946 | * @return float|null Returns the montant depassement autorise. |
||
947 | */ |
||
948 | public function getMontantDepassementAutorise(): ?float { |
||
949 | return $this->montantDepassementAutorise; |
||
950 | } |
||
951 | |||
952 | /** |
||
953 | * Get the motif entree. |
||
954 | * |
||
955 | * @return string|null Returns the motif entree. |
||
956 | */ |
||
957 | public function getMotifEntree(): ?string { |
||
958 | return $this->motifEntree; |
||
959 | } |
||
960 | |||
961 | /** |
||
962 | * Get the motif sortie. |
||
963 | * |
||
964 | * @return string|null Returns the motif sortie. |
||
965 | */ |
||
966 | public function getMotifSortie(): ?string { |
||
967 | return $this->motifSortie; |
||
968 | } |
||
969 | |||
970 | /** |
||
971 | * Get the mt transport1. |
||
972 | * |
||
973 | * @return float|null Returns the mt transport1. |
||
974 | */ |
||
975 | public function getMtTransport1(): ?float { |
||
976 | return $this->mtTransport1; |
||
977 | } |
||
978 | |||
979 | /** |
||
980 | * Get the mt transport2. |
||
981 | * |
||
982 | * @return float|null Returns the mt transport2. |
||
983 | */ |
||
984 | public function getMtTransport2(): ?float { |
||
985 | return $this->mtTransport2; |
||
986 | } |
||
987 | |||
988 | /** |
||
989 | * Get the mt transport3. |
||
990 | * |
||
991 | * @return float|null Returns the mt transport3. |
||
992 | */ |
||
993 | public function getMtTransport3(): ?float { |
||
994 | return $this->mtTransport3; |
||
995 | } |
||
996 | |||
997 | /** |
||
998 | * Get the mt transport4. |
||
999 | * |
||
1000 | * @return float|null Returns the mt transport4. |
||
1001 | */ |
||
1002 | public function getMtTransport4(): ?float { |
||
1003 | return $this->mtTransport4; |
||
1004 | } |
||
1005 | |||
1006 | /** |
||
1007 | * Get the mt transport5. |
||
1008 | * |
||
1009 | * @return float|null Returns the mt transport5. |
||
1010 | */ |
||
1011 | public function getMtTransport5(): ?float { |
||
1012 | return $this->mtTransport5; |
||
1013 | } |
||
1014 | |||
1015 | /** |
||
1016 | * Get the non concerne is. |
||
1017 | * |
||
1018 | * @return bool|null Returns the non concerne is. |
||
1019 | */ |
||
1020 | public function getNonConcerneIs(): ?bool { |
||
1021 | return $this->nonConcerneIs; |
||
1022 | } |
||
1023 | |||
1024 | /** |
||
1025 | * Get the non concerne tp. |
||
1026 | * |
||
1027 | * @return bool|null Returns the non concerne tp. |
||
1028 | */ |
||
1029 | public function getNonConcerneTp(): ?bool { |
||
1030 | return $this->nonConcerneTp; |
||
1031 | } |
||
1032 | |||
1033 | /** |
||
1034 | * Get the non facturable. |
||
1035 | * |
||
1036 | * @return bool|null Returns the non facturable. |
||
1037 | */ |
||
1038 | public function getNonFacturable(): ?bool { |
||
1039 | return $this->nonFacturable; |
||
1040 | } |
||
1041 | |||
1042 | /** |
||
1043 | * Get the pme tarif ou rem spe. |
||
1044 | * |
||
1045 | * @return bool|null Returns the pme tarif ou rem spe. |
||
1046 | */ |
||
1047 | public function getPmeTarifOuRemSpe(): ?bool { |
||
1048 | return $this->pmeTarifOuRemSpe; |
||
1049 | } |
||
1050 | |||
1051 | /** |
||
1052 | * Get the prevenir mail publier. |
||
1053 | * |
||
1054 | * @return bool|null Returns the prevenir mail publier. |
||
1055 | */ |
||
1056 | public function getPrevenirMailPublier(): ?bool { |
||
1057 | return $this->prevenirMailPublier; |
||
1058 | } |
||
1059 | |||
1060 | /** |
||
1061 | * Get the releves mail. |
||
1062 | * |
||
1063 | * @return bool|null Returns the releves mail. |
||
1064 | */ |
||
1065 | public function getRelevesMail(): ?bool { |
||
1066 | return $this->relevesMail; |
||
1067 | } |
||
1068 | |||
1069 | /** |
||
1070 | * Get the social complement suite. |
||
1071 | * |
||
1072 | * @return string|null Returns the social complement suite. |
||
1073 | */ |
||
1074 | public function getSocialComplementSuite(): ?string { |
||
1075 | return $this->socialComplementSuite; |
||
1076 | } |
||
1077 | |||
1078 | /** |
||
1079 | * Get the social zip code. |
||
1080 | * |
||
1081 | * @return string|null Returns the social zip code. |
||
1082 | */ |
||
1083 | public function getSocialZipCode(): ?string { |
||
1084 | return $this->socialZipCode; |
||
1085 | } |
||
1086 | |||
1087 | /** |
||
1088 | * Get the trs art pied. |
||
1089 | * |
||
1090 | * @return string|null Returns the trs art pied. |
||
1091 | */ |
||
1092 | public function getTrsArtPied(): ?string { |
||
1093 | return $this->trsArtPied; |
||
1094 | } |
||
1095 | |||
1096 | /** |
||
1097 | * Get the trs art pied2. |
||
1098 | * |
||
1099 | * @return string|null Returns the trs art pied2. |
||
1100 | */ |
||
1101 | public function getTrsArtPied2(): ?string { |
||
1102 | return $this->trsArtPied2; |
||
1103 | } |
||
1104 | |||
1105 | /** |
||
1106 | * Get the trs categ march. |
||
1107 | * |
||
1108 | * @return string|null Returns the trs categ march. |
||
1109 | */ |
||
1110 | public function getTrsCategMarch(): ?string { |
||
1111 | return $this->trsCategMarch; |
||
1112 | } |
||
1113 | |||
1114 | /** |
||
1115 | * Get the trs centre ana. |
||
1116 | * |
||
1117 | * @return string|null Returns the trs centre ana. |
||
1118 | */ |
||
1119 | public function getTrsCentreAna(): ?string { |
||
1120 | return $this->trsCentreAna; |
||
1121 | } |
||
1122 | |||
1123 | /** |
||
1124 | * Get the trs code tarif1. |
||
1125 | * |
||
1126 | * @return string|null Returns the trs code tarif1. |
||
1127 | */ |
||
1128 | public function getTrsCodeTarif1(): ?string { |
||
1129 | return $this->trsCodeTarif1; |
||
1130 | } |
||
1131 | |||
1132 | /** |
||
1133 | * Get the trs code tarif1 sens. |
||
1134 | * |
||
1135 | * @return string|null Returns the trs code tarif1 sens. |
||
1136 | */ |
||
1137 | public function getTrsCodeTarif1Sens(): ?string { |
||
1138 | return $this->trsCodeTarif1Sens; |
||
1139 | } |
||
1140 | |||
1141 | /** |
||
1142 | * Get the trs code tarif2. |
||
1143 | * |
||
1144 | * @return string|null Returns the trs code tarif2. |
||
1145 | */ |
||
1146 | public function getTrsCodeTarif2(): ?string { |
||
1147 | return $this->trsCodeTarif2; |
||
1148 | } |
||
1149 | |||
1150 | /** |
||
1151 | * Get the trs code tarif2 sens. |
||
1152 | * |
||
1153 | * @return string|null Returns the trs code tarif2 sens. |
||
1154 | */ |
||
1155 | public function getTrsCodeTarif2Sens(): ?string { |
||
1156 | return $this->trsCodeTarif2Sens; |
||
1157 | } |
||
1158 | |||
1159 | /** |
||
1160 | * Get the trs code tarif3. |
||
1161 | * |
||
1162 | * @return string|null Returns the trs code tarif3. |
||
1163 | */ |
||
1164 | public function getTrsCodeTarif3(): ?string { |
||
1165 | return $this->trsCodeTarif3; |
||
1166 | } |
||
1167 | |||
1168 | /** |
||
1169 | * Get the trs code tarif3 sens. |
||
1170 | * |
||
1171 | * @return string|null Returns the trs code tarif3 sens. |
||
1172 | */ |
||
1173 | public function getTrsCodeTarif3Sens(): ?string { |
||
1174 | return $this->trsCodeTarif3Sens; |
||
1175 | } |
||
1176 | |||
1177 | /** |
||
1178 | * Get the trs code tarif4. |
||
1179 | * |
||
1180 | * @return string|null Returns the trs code tarif4. |
||
1181 | */ |
||
1182 | public function getTrsCodeTarif4(): ?string { |
||
1183 | return $this->trsCodeTarif4; |
||
1184 | } |
||
1185 | |||
1186 | /** |
||
1187 | * Get the trs code tarif4 sens. |
||
1188 | * |
||
1189 | * @return string|null Returns the trs code tarif4 sens. |
||
1190 | */ |
||
1191 | public function getTrsCodeTarif4Sens(): ?string { |
||
1192 | return $this->trsCodeTarif4Sens; |
||
1193 | } |
||
1194 | |||
1195 | /** |
||
1196 | * Get the trs code tarif5. |
||
1197 | * |
||
1198 | * @return string|null Returns the trs code tarif5. |
||
1199 | */ |
||
1200 | public function getTrsCodeTarif5(): ?string { |
||
1201 | return $this->trsCodeTarif5; |
||
1202 | } |
||
1203 | |||
1204 | /** |
||
1205 | * Get the trs code tarif5 sens. |
||
1206 | * |
||
1207 | * @return string|null Returns the trs code tarif5 sens. |
||
1208 | */ |
||
1209 | public function getTrsCodeTarif5Sens(): ?string { |
||
1210 | return $this->trsCodeTarif5Sens; |
||
1211 | } |
||
1212 | |||
1213 | /** |
||
1214 | * Get the trs code tarif6. |
||
1215 | * |
||
1216 | * @return string|null Returns the trs code tarif6. |
||
1217 | */ |
||
1218 | public function getTrsCodeTarif6(): ?string { |
||
1219 | return $this->trsCodeTarif6; |
||
1220 | } |
||
1221 | |||
1222 | /** |
||
1223 | * Get the trs code tarif6 sens. |
||
1224 | * |
||
1225 | * @return string|null Returns the trs code tarif6 sens. |
||
1226 | */ |
||
1227 | public function getTrsCodeTarif6Sens(): ?string { |
||
1228 | return $this->trsCodeTarif6Sens; |
||
1229 | } |
||
1230 | |||
1231 | /** |
||
1232 | * Get the trs code tarif def. |
||
1233 | * |
||
1234 | * @return int|null Returns the trs code tarif def. |
||
1235 | */ |
||
1236 | public function getTrsCodeTarifDef(): ?int { |
||
1237 | return $this->trsCodeTarifDef; |
||
1238 | } |
||
1239 | |||
1240 | /** |
||
1241 | * Get the trs comment1. |
||
1242 | * |
||
1243 | * @return string|null Returns the trs comment1. |
||
1244 | */ |
||
1245 | public function getTrsComment1(): ?string { |
||
1246 | return $this->trsComment1; |
||
1247 | } |
||
1248 | |||
1249 | /** |
||
1250 | * Get the trs comment2. |
||
1251 | * |
||
1252 | * @return string|null Returns the trs comment2. |
||
1253 | */ |
||
1254 | public function getTrsComment2(): ?string { |
||
1255 | return $this->trsComment2; |
||
1256 | } |
||
1257 | |||
1258 | /** |
||
1259 | * Get the trs comment3. |
||
1260 | * |
||
1261 | * @return string|null Returns the trs comment3. |
||
1262 | */ |
||
1263 | public function getTrsComment3(): ?string { |
||
1264 | return $this->trsComment3; |
||
1265 | } |
||
1266 | |||
1267 | /** |
||
1268 | * Get the trs comment4. |
||
1269 | * |
||
1270 | * @return string|null Returns the trs comment4. |
||
1271 | */ |
||
1272 | public function getTrsComment4(): ?string { |
||
1273 | return $this->trsComment4; |
||
1274 | } |
||
1275 | |||
1276 | /** |
||
1277 | * Get the trs comment5. |
||
1278 | * |
||
1279 | * @return string|null Returns the trs comment5. |
||
1280 | */ |
||
1281 | public function getTrsComment5(): ?string { |
||
1282 | return $this->trsComment5; |
||
1283 | } |
||
1284 | |||
1285 | /** |
||
1286 | * Get the trs comment6. |
||
1287 | * |
||
1288 | * @return string|null Returns the trs comment6. |
||
1289 | */ |
||
1290 | public function getTrsComment6(): ?string { |
||
1291 | return $this->trsComment6; |
||
1292 | } |
||
1293 | |||
1294 | /** |
||
1295 | * Get the trs comment7. |
||
1296 | * |
||
1297 | * @return string|null Returns the trs comment7. |
||
1298 | */ |
||
1299 | public function getTrsComment7(): ?string { |
||
1300 | return $this->trsComment7; |
||
1301 | } |
||
1302 | |||
1303 | /** |
||
1304 | * Get the trs comment8. |
||
1305 | * |
||
1306 | * @return string|null Returns the trs comment8. |
||
1307 | */ |
||
1308 | public function getTrsComment8(): ?string { |
||
1309 | return $this->trsComment8; |
||
1310 | } |
||
1311 | |||
1312 | /** |
||
1313 | * Get the trs comment9. |
||
1314 | * |
||
1315 | * @return string|null Returns the trs comment9. |
||
1316 | */ |
||
1317 | public function getTrsComment9(): ?string { |
||
1318 | return $this->trsComment9; |
||
1319 | } |
||
1320 | |||
1321 | /** |
||
1322 | * Get the trs consignes1. |
||
1323 | * |
||
1324 | * @return string|null Returns the trs consignes1. |
||
1325 | */ |
||
1326 | public function getTrsConsignes1(): ?string { |
||
1327 | return $this->trsConsignes1; |
||
1328 | } |
||
1329 | |||
1330 | /** |
||
1331 | * Get the trs consignes2. |
||
1332 | * |
||
1333 | * @return string|null Returns the trs consignes2. |
||
1334 | */ |
||
1335 | public function getTrsConsignes2(): ?string { |
||
1336 | return $this->trsConsignes2; |
||
1337 | } |
||
1338 | |||
1339 | /** |
||
1340 | * Get the trs consignes3. |
||
1341 | * |
||
1342 | * @return string|null Returns the trs consignes3. |
||
1343 | */ |
||
1344 | public function getTrsConsignes3(): ?string { |
||
1345 | return $this->trsConsignes3; |
||
1346 | } |
||
1347 | |||
1348 | /** |
||
1349 | * Get the trs gestion palettes. |
||
1350 | * |
||
1351 | * @return bool|null Returns the trs gestion palettes. |
||
1352 | */ |
||
1353 | public function getTrsGestionPalettes(): ?bool { |
||
1354 | return $this->trsGestionPalettes; |
||
1355 | } |
||
1356 | |||
1357 | /** |
||
1358 | * Get the trs marchandise sensible. |
||
1359 | * |
||
1360 | * @return bool|null Returns the trs marchandise sensible. |
||
1361 | */ |
||
1362 | public function getTrsMarchandiseSensible(): ?bool { |
||
1363 | return $this->trsMarchandiseSensible; |
||
1364 | } |
||
1365 | |||
1366 | /** |
||
1367 | * Get the trs modele facture spe. |
||
1368 | * |
||
1369 | * @return string|null Returns the trs modele facture spe. |
||
1370 | */ |
||
1371 | public function getTrsModeleFactureSpe(): ?string { |
||
1372 | return $this->trsModeleFactureSpe; |
||
1373 | } |
||
1374 | |||
1375 | /** |
||
1376 | * Get the trs poids mini pal. |
||
1377 | * |
||
1378 | * @return float|null Returns the trs poids mini pal. |
||
1379 | */ |
||
1380 | public function getTrsPoidsMiniPal(): ?float { |
||
1381 | return $this->trsPoidsMiniPal; |
||
1382 | } |
||
1383 | |||
1384 | /** |
||
1385 | * Get the trs port du auto. |
||
1386 | * |
||
1387 | * @return bool|null Returns the trs port du auto. |
||
1388 | */ |
||
1389 | public function getTrsPortDuAuto(): ?bool { |
||
1390 | return $this->trsPortDuAuto; |
||
1391 | } |
||
1392 | |||
1393 | /** |
||
1394 | * Get the trs suivi ca mens. |
||
1395 | * |
||
1396 | * @return bool|null Returns the trs suivi ca mens. |
||
1397 | */ |
||
1398 | public function getTrsSuiviCaMens(): ?bool { |
||
1399 | return $this->trsSuiviCaMens; |
||
1400 | } |
||
1401 | |||
1402 | /** |
||
1403 | * Get the trs suivi dt enl. |
||
1404 | * |
||
1405 | * @return bool|null Returns the trs suivi dt enl. |
||
1406 | */ |
||
1407 | public function getTrsSuiviDtEnl(): ?bool { |
||
1408 | return $this->trsSuiviDtEnl; |
||
1409 | } |
||
1410 | |||
1411 | /** |
||
1412 | * Get the trs suivi dt liv. |
||
1413 | * |
||
1414 | * @return bool|null Returns the trs suivi dt liv. |
||
1415 | */ |
||
1416 | public function getTrsSuiviDtLiv(): ?bool { |
||
1417 | return $this->trsSuiviDtLiv; |
||
1418 | } |
||
1419 | |||
1420 | /** |
||
1421 | * Get the trs suivi dt liv fax. |
||
1422 | * |
||
1423 | * @return string|null Returns the trs suivi dt liv fax. |
||
1424 | */ |
||
1425 | public function getTrsSuiviDtLivFax(): ?string { |
||
1426 | return $this->trsSuiviDtLivFax; |
||
1427 | } |
||
1428 | |||
1429 | /** |
||
1430 | * Get the trs suivi dt liv mail. |
||
1431 | * |
||
1432 | * @return string|null Returns the trs suivi dt liv mail. |
||
1433 | */ |
||
1434 | public function getTrsSuiviDtLivMail(): ?string { |
||
1435 | return $this->trsSuiviDtLivMail; |
||
1436 | } |
||
1437 | |||
1438 | /** |
||
1439 | * Get the trs type client. |
||
1440 | * |
||
1441 | * @return string|null Returns the trs type client. |
||
1442 | */ |
||
1443 | public function getTrsTypeClient(): ?string { |
||
1444 | return $this->trsTypeClient; |
||
1445 | } |
||
1446 | |||
1447 | /** |
||
1448 | * Get the trs type facturation. |
||
1449 | * |
||
1450 | * @return string|null Returns the trs type facturation. |
||
1451 | */ |
||
1452 | public function getTrsTypeFacturation(): ?string { |
||
1453 | return $this->trsTypeFacturation; |
||
1454 | } |
||
1455 | |||
1456 | /** |
||
1457 | * Get the trs type travail. |
||
1458 | * |
||
1459 | * @return string|null Returns the trs type travail. |
||
1460 | */ |
||
1461 | public function getTrsTypeTravail(): ?string { |
||
1462 | return $this->trsTypeTravail; |
||
1463 | } |
||
1464 | |||
1465 | /** |
||
1466 | * Get the type transport1. |
||
1467 | * |
||
1468 | * @return string|null Returns the type transport1. |
||
1469 | */ |
||
1470 | public function getTypeTransport1(): ?string { |
||
1471 | return $this->typeTransport1; |
||
1472 | } |
||
1473 | |||
1474 | /** |
||
1475 | * Get the type transport2. |
||
1476 | * |
||
1477 | * @return string|null Returns the type transport2. |
||
1478 | */ |
||
1479 | public function getTypeTransport2(): ?string { |
||
1480 | return $this->typeTransport2; |
||
1481 | } |
||
1482 | |||
1483 | /** |
||
1484 | * Get the type transport3. |
||
1485 | * |
||
1486 | * @return string|null Returns the type transport3. |
||
1487 | */ |
||
1488 | public function getTypeTransport3(): ?string { |
||
1489 | return $this->typeTransport3; |
||
1490 | } |
||
1491 | |||
1492 | /** |
||
1493 | * Get the type transport4. |
||
1494 | * |
||
1495 | * @return string|null Returns the type transport4. |
||
1496 | */ |
||
1497 | public function getTypeTransport4(): ?string { |
||
1498 | return $this->typeTransport4; |
||
1499 | } |
||
1500 | |||
1501 | /** |
||
1502 | * Get the type transport5. |
||
1503 | * |
||
1504 | * @return string|null Returns the type transport5. |
||
1505 | */ |
||
1506 | public function getTypeTransport5(): ?string { |
||
1507 | return $this->typeTransport5; |
||
1508 | } |
||
1509 | |||
1510 | /** |
||
1511 | * Get the localisation archives. |
||
1512 | * |
||
1513 | * @return string|null Returns the localisation archives. |
||
1514 | */ |
||
1515 | public function getlocalisationArchives(): ?string { |
||
1516 | return $this->localisationArchives; |
||
1517 | } |
||
1518 | |||
1519 | /** |
||
1520 | * Set the allotissement. |
||
1521 | * |
||
1522 | * @param bool|null $allotissement The allotissement. |
||
1523 | * @return Clients2 Returns this Clients2. |
||
1524 | */ |
||
1525 | public function setAllotissement(?bool $allotissement): Clients2 { |
||
1526 | $this->allotissement = $allotissement; |
||
1527 | return $this; |
||
1528 | } |
||
1529 | |||
1530 | /** |
||
1531 | * Set the bl mail. |
||
1532 | * |
||
1533 | * @param bool|null $blMail The bl mail. |
||
1534 | * @return Clients2 Returns this Clients2. |
||
1535 | */ |
||
1536 | public function setBlMail(?bool $blMail): Clients2 { |
||
1537 | $this->blMail = $blMail; |
||
1538 | return $this; |
||
1539 | } |
||
1540 | |||
1541 | /** |
||
1542 | * Set the cdes mail. |
||
1543 | * |
||
1544 | * @param bool|null $cdesMail The cdes mail. |
||
1545 | * @return Clients2 Returns this Clients2. |
||
1546 | */ |
||
1547 | public function setCdesMail(?bool $cdesMail): Clients2 { |
||
1548 | $this->cdesMail = $cdesMail; |
||
1549 | return $this; |
||
1550 | } |
||
1551 | |||
1552 | /** |
||
1553 | * Set the code activite cga. |
||
1554 | * |
||
1555 | * @param string|null $codeActiviteCga The code activite cga. |
||
1556 | * @return Clients2 Returns this Clients2. |
||
1557 | */ |
||
1558 | public function setCodeActiviteCga(?string $codeActiviteCga): Clients2 { |
||
1559 | $this->codeActiviteCga = $codeActiviteCga; |
||
1560 | return $this; |
||
1561 | } |
||
1562 | |||
1563 | /** |
||
1564 | * Set the code client. |
||
1565 | * |
||
1566 | * @param string|null $codeClient The code client. |
||
1567 | * @return Clients2 Returns this Clients2. |
||
1568 | */ |
||
1569 | public function setCodeClient(?string $codeClient): Clients2 { |
||
1570 | $this->codeClient = $codeClient; |
||
1571 | return $this; |
||
1572 | } |
||
1573 | |||
1574 | /** |
||
1575 | * Set the code transporteur1. |
||
1576 | * |
||
1577 | * @param string|null $codeTransporteur1 The code transporteur1. |
||
1578 | * @return Clients2 Returns this Clients2. |
||
1579 | */ |
||
1580 | public function setCodeTransporteur1(?string $codeTransporteur1): Clients2 { |
||
1581 | $this->codeTransporteur1 = $codeTransporteur1; |
||
1582 | return $this; |
||
1583 | } |
||
1584 | |||
1585 | /** |
||
1586 | * Set the code transporteur2. |
||
1587 | * |
||
1588 | * @param string|null $codeTransporteur2 The code transporteur2. |
||
1589 | * @return Clients2 Returns this Clients2. |
||
1590 | */ |
||
1591 | public function setCodeTransporteur2(?string $codeTransporteur2): Clients2 { |
||
1592 | $this->codeTransporteur2 = $codeTransporteur2; |
||
1593 | return $this; |
||
1594 | } |
||
1595 | |||
1596 | /** |
||
1597 | * Set the code transporteur3. |
||
1598 | * |
||
1599 | * @param string|null $codeTransporteur3 The code transporteur3. |
||
1600 | * @return Clients2 Returns this Clients2. |
||
1601 | */ |
||
1602 | public function setCodeTransporteur3(?string $codeTransporteur3): Clients2 { |
||
1603 | $this->codeTransporteur3 = $codeTransporteur3; |
||
1604 | return $this; |
||
1605 | } |
||
1606 | |||
1607 | /** |
||
1608 | * Set the code transporteur4. |
||
1609 | * |
||
1610 | * @param string|null $codeTransporteur4 The code transporteur4. |
||
1611 | * @return Clients2 Returns this Clients2. |
||
1612 | */ |
||
1613 | public function setCodeTransporteur4(?string $codeTransporteur4): Clients2 { |
||
1614 | $this->codeTransporteur4 = $codeTransporteur4; |
||
1615 | return $this; |
||
1616 | } |
||
1617 | |||
1618 | /** |
||
1619 | * Set the code transporteur5. |
||
1620 | * |
||
1621 | * @param string|null $codeTransporteur5 The code transporteur5. |
||
1622 | * @return Clients2 Returns this Clients2. |
||
1623 | */ |
||
1624 | public function setCodeTransporteur5(?string $codeTransporteur5): Clients2 { |
||
1625 | $this->codeTransporteur5 = $codeTransporteur5; |
||
1626 | return $this; |
||
1627 | } |
||
1628 | |||
1629 | /** |
||
1630 | * Set the date deb exe publication. |
||
1631 | * |
||
1632 | * @param DateTime|null $dateDebExePublication The date deb exe publication. |
||
1633 | * @return Clients2 Returns this Clients2. |
||
1634 | */ |
||
1635 | public function setDateDebExePublication(?DateTime $dateDebExePublication): Clients2 { |
||
1636 | $this->dateDebExePublication = $dateDebExePublication; |
||
1637 | return $this; |
||
1638 | } |
||
1639 | |||
1640 | /** |
||
1641 | * Set the delai livraison. |
||
1642 | * |
||
1643 | * @param int|null $delaiLivraison The delai livraison. |
||
1644 | * @return Clients2 Returns this Clients2. |
||
1645 | */ |
||
1646 | public function setDelaiLivraison(?int $delaiLivraison): Clients2 { |
||
1647 | $this->delaiLivraison = $delaiLivraison; |
||
1648 | return $this; |
||
1649 | } |
||
1650 | |||
1651 | /** |
||
1652 | * Set the devis mail. |
||
1653 | * |
||
1654 | * @param bool|null $devisMail The devis mail. |
||
1655 | * @return Clients2 Returns this Clients2. |
||
1656 | */ |
||
1657 | public function setDevisMail(?bool $devisMail): Clients2 { |
||
1658 | $this->devisMail = $devisMail; |
||
1659 | return $this; |
||
1660 | } |
||
1661 | |||
1662 | /** |
||
1663 | * Set the ean client. |
||
1664 | * |
||
1665 | * @param string|null $eanClient The ean client. |
||
1666 | * @return Clients2 Returns this Clients2. |
||
1667 | */ |
||
1668 | public function setEanClient(?string $eanClient): Clients2 { |
||
1669 | $this->eanClient = $eanClient; |
||
1670 | return $this; |
||
1671 | } |
||
1672 | |||
1673 | /** |
||
1674 | * Set the ean facture papier. |
||
1675 | * |
||
1676 | * @param string|null $eanFacturePapier The ean facture papier. |
||
1677 | * @return Clients2 Returns this Clients2. |
||
1678 | */ |
||
1679 | public function setEanFacturePapier(?string $eanFacturePapier): Clients2 { |
||
1680 | $this->eanFacturePapier = $eanFacturePapier; |
||
1681 | return $this; |
||
1682 | } |
||
1683 | |||
1684 | /** |
||
1685 | * Set the ean plateforme. |
||
1686 | * |
||
1687 | * @param string|null $eanPlateforme The ean plateforme. |
||
1688 | * @return Clients2 Returns this Clients2. |
||
1689 | */ |
||
1690 | public function setEanPlateforme(?string $eanPlateforme): Clients2 { |
||
1691 | $this->eanPlateforme = $eanPlateforme; |
||
1692 | return $this; |
||
1693 | } |
||
1694 | |||
1695 | /** |
||
1696 | * Set the echeance fin decade. |
||
1697 | * |
||
1698 | * @param bool|null $echeanceFinDecade The echeance fin decade. |
||
1699 | * @return Clients2 Returns this Clients2. |
||
1700 | */ |
||
1701 | public function setEcheanceFinDecade(?bool $echeanceFinDecade): Clients2 { |
||
1702 | $this->echeanceFinDecade = $echeanceFinDecade; |
||
1703 | return $this; |
||
1704 | } |
||
1705 | |||
1706 | /** |
||
1707 | * Set the echeance fin quinzaine. |
||
1708 | * |
||
1709 | * @param bool|null $echeanceFinQuinzaine The echeance fin quinzaine. |
||
1710 | * @return Clients2 Returns this Clients2. |
||
1711 | */ |
||
1712 | public function setEcheanceFinQuinzaine(?bool $echeanceFinQuinzaine): Clients2 { |
||
1713 | $this->echeanceFinQuinzaine = $echeanceFinQuinzaine; |
||
1714 | return $this; |
||
1715 | } |
||
1716 | |||
1717 | /** |
||
1718 | * Set the edi export bl. |
||
1719 | * |
||
1720 | * @param bool|null $ediExportBl The edi export bl. |
||
1721 | * @return Clients2 Returns this Clients2. |
||
1722 | */ |
||
1723 | public function setEdiExportBl(?bool $ediExportBl): Clients2 { |
||
1724 | $this->ediExportBl = $ediExportBl; |
||
1725 | return $this; |
||
1726 | } |
||
1727 | |||
1728 | /** |
||
1729 | * Set the edi export fac. |
||
1730 | * |
||
1731 | * @param bool|null $ediExportFac The edi export fac. |
||
1732 | * @return Clients2 Returns this Clients2. |
||
1733 | */ |
||
1734 | public function setEdiExportFac(?bool $ediExportFac): Clients2 { |
||
1735 | $this->ediExportFac = $ediExportFac; |
||
1736 | return $this; |
||
1737 | } |
||
1738 | |||
1739 | /** |
||
1740 | * Set the fact complement suite. |
||
1741 | * |
||
1742 | * @param string|null $factComplementSuite The fact complement suite. |
||
1743 | * @return Clients2 Returns this Clients2. |
||
1744 | */ |
||
1745 | public function setFactComplementSuite(?string $factComplementSuite): Clients2 { |
||
1746 | $this->factComplementSuite = $factComplementSuite; |
||
1747 | return $this; |
||
1748 | } |
||
1749 | |||
1750 | /** |
||
1751 | * Set the fact zip code. |
||
1752 | * |
||
1753 | * @param string|null $factZipCode The fact zip code. |
||
1754 | * @return Clients2 Returns this Clients2. |
||
1755 | */ |
||
1756 | public function setFactZipCode(?string $factZipCode): Clients2 { |
||
1757 | $this->factZipCode = $factZipCode; |
||
1758 | return $this; |
||
1759 | } |
||
1760 | |||
1761 | /** |
||
1762 | * Set the ind mail publication. |
||
1763 | * |
||
1764 | * @param int|null $indMailPublication The ind mail publication. |
||
1765 | * @return Clients2 Returns this Clients2. |
||
1766 | */ |
||
1767 | public function setIndMailPublication(?int $indMailPublication): Clients2 { |
||
1768 | $this->indMailPublication = $indMailPublication; |
||
1769 | return $this; |
||
1770 | } |
||
1771 | |||
1772 | /** |
||
1773 | * Set the indice bl mail. |
||
1774 | * |
||
1775 | * @param int|null $indiceBlMail The indice bl mail. |
||
1776 | * @return Clients2 Returns this Clients2. |
||
1777 | */ |
||
1778 | public function setIndiceBlMail(?int $indiceBlMail): Clients2 { |
||
1779 | $this->indiceBlMail = $indiceBlMail; |
||
1780 | return $this; |
||
1781 | } |
||
1782 | |||
1783 | /** |
||
1784 | * Set the indice cdes mail. |
||
1785 | * |
||
1786 | * @param int|null $indiceCdesMail The indice cdes mail. |
||
1787 | * @return Clients2 Returns this Clients2. |
||
1788 | */ |
||
1789 | public function setIndiceCdesMail(?int $indiceCdesMail): Clients2 { |
||
1790 | $this->indiceCdesMail = $indiceCdesMail; |
||
1791 | return $this; |
||
1792 | } |
||
1793 | |||
1794 | /** |
||
1795 | * Set the indice devis mail. |
||
1796 | * |
||
1797 | * @param int|null $indiceDevisMail The indice devis mail. |
||
1798 | * @return Clients2 Returns this Clients2. |
||
1799 | */ |
||
1800 | public function setIndiceDevisMail(?int $indiceDevisMail): Clients2 { |
||
1801 | $this->indiceDevisMail = $indiceDevisMail; |
||
1802 | return $this; |
||
1803 | } |
||
1804 | |||
1805 | /** |
||
1806 | * Set the indice releves mail. |
||
1807 | * |
||
1808 | * @param int|null $indiceRelevesMail The indice releves mail. |
||
1809 | * @return Clients2 Returns this Clients2. |
||
1810 | */ |
||
1811 | public function setIndiceRelevesMail(?int $indiceRelevesMail): Clients2 { |
||
1812 | $this->indiceRelevesMail = $indiceRelevesMail; |
||
1813 | return $this; |
||
1814 | } |
||
1815 | |||
1816 | /** |
||
1817 | * Set the lettre de mission date signature. |
||
1818 | * |
||
1819 | * @param DateTime|null $lettreDeMissionDateSignature The lettre de mission date signature. |
||
1820 | * @return Clients2 Returns this Clients2. |
||
1821 | */ |
||
1822 | public function setLettreDeMissionDateSignature(?DateTime $lettreDeMissionDateSignature): Clients2 { |
||
1823 | $this->lettreDeMissionDateSignature = $lettreDeMissionDateSignature; |
||
1824 | return $this; |
||
1825 | } |
||
1826 | |||
1827 | /** |
||
1828 | * Set the modele facture manuelle spe. |
||
1829 | * |
||
1830 | * @param string|null $modeleFactureManuelleSpe The modele facture manuelle spe. |
||
1831 | * @return Clients2 Returns this Clients2. |
||
1832 | */ |
||
1833 | public function setModeleFactureManuelleSpe(?string $modeleFactureManuelleSpe): Clients2 { |
||
1834 | $this->modeleFactureManuelleSpe = $modeleFactureManuelleSpe; |
||
1835 | return $this; |
||
1836 | } |
||
1837 | |||
1838 | /** |
||
1839 | * Set the montant depassement autorise. |
||
1840 | * |
||
1841 | * @param float|null $montantDepassementAutorise The montant depassement autorise. |
||
1842 | * @return Clients2 Returns this Clients2. |
||
1843 | */ |
||
1844 | public function setMontantDepassementAutorise(?float $montantDepassementAutorise): Clients2 { |
||
1845 | $this->montantDepassementAutorise = $montantDepassementAutorise; |
||
1846 | return $this; |
||
1847 | } |
||
1848 | |||
1849 | /** |
||
1850 | * Set the motif entree. |
||
1851 | * |
||
1852 | * @param string|null $motifEntree The motif entree. |
||
1853 | * @return Clients2 Returns this Clients2. |
||
1854 | */ |
||
1855 | public function setMotifEntree(?string $motifEntree): Clients2 { |
||
1856 | $this->motifEntree = $motifEntree; |
||
1857 | return $this; |
||
1858 | } |
||
1859 | |||
1860 | /** |
||
1861 | * Set the motif sortie. |
||
1862 | * |
||
1863 | * @param string|null $motifSortie The motif sortie. |
||
1864 | * @return Clients2 Returns this Clients2. |
||
1865 | */ |
||
1866 | public function setMotifSortie(?string $motifSortie): Clients2 { |
||
1867 | $this->motifSortie = $motifSortie; |
||
1868 | return $this; |
||
1869 | } |
||
1870 | |||
1871 | /** |
||
1872 | * Set the mt transport1. |
||
1873 | * |
||
1874 | * @param float|null $mtTransport1 The mt transport1. |
||
1875 | * @return Clients2 Returns this Clients2. |
||
1876 | */ |
||
1877 | public function setMtTransport1(?float $mtTransport1): Clients2 { |
||
1878 | $this->mtTransport1 = $mtTransport1; |
||
1879 | return $this; |
||
1880 | } |
||
1881 | |||
1882 | /** |
||
1883 | * Set the mt transport2. |
||
1884 | * |
||
1885 | * @param float|null $mtTransport2 The mt transport2. |
||
1886 | * @return Clients2 Returns this Clients2. |
||
1887 | */ |
||
1888 | public function setMtTransport2(?float $mtTransport2): Clients2 { |
||
1889 | $this->mtTransport2 = $mtTransport2; |
||
1890 | return $this; |
||
1891 | } |
||
1892 | |||
1893 | /** |
||
1894 | * Set the mt transport3. |
||
1895 | * |
||
1896 | * @param float|null $mtTransport3 The mt transport3. |
||
1897 | * @return Clients2 Returns this Clients2. |
||
1898 | */ |
||
1899 | public function setMtTransport3(?float $mtTransport3): Clients2 { |
||
1900 | $this->mtTransport3 = $mtTransport3; |
||
1901 | return $this; |
||
1902 | } |
||
1903 | |||
1904 | /** |
||
1905 | * Set the mt transport4. |
||
1906 | * |
||
1907 | * @param float|null $mtTransport4 The mt transport4. |
||
1908 | * @return Clients2 Returns this Clients2. |
||
1909 | */ |
||
1910 | public function setMtTransport4(?float $mtTransport4): Clients2 { |
||
1911 | $this->mtTransport4 = $mtTransport4; |
||
1912 | return $this; |
||
1913 | } |
||
1914 | |||
1915 | /** |
||
1916 | * Set the mt transport5. |
||
1917 | * |
||
1918 | * @param float|null $mtTransport5 The mt transport5. |
||
1919 | * @return Clients2 Returns this Clients2. |
||
1920 | */ |
||
1921 | public function setMtTransport5(?float $mtTransport5): Clients2 { |
||
1922 | $this->mtTransport5 = $mtTransport5; |
||
1923 | return $this; |
||
1924 | } |
||
1925 | |||
1926 | /** |
||
1927 | * Set the non concerne is. |
||
1928 | * |
||
1929 | * @param bool|null $nonConcerneIs The non concerne is. |
||
1930 | * @return Clients2 Returns this Clients2. |
||
1931 | */ |
||
1932 | public function setNonConcerneIs(?bool $nonConcerneIs): Clients2 { |
||
1933 | $this->nonConcerneIs = $nonConcerneIs; |
||
1934 | return $this; |
||
1935 | } |
||
1936 | |||
1937 | /** |
||
1938 | * Set the non concerne tp. |
||
1939 | * |
||
1940 | * @param bool|null $nonConcerneTp The non concerne tp. |
||
1941 | * @return Clients2 Returns this Clients2. |
||
1942 | */ |
||
1943 | public function setNonConcerneTp(?bool $nonConcerneTp): Clients2 { |
||
1944 | $this->nonConcerneTp = $nonConcerneTp; |
||
1945 | return $this; |
||
1946 | } |
||
1947 | |||
1948 | /** |
||
1949 | * Set the non facturable. |
||
1950 | * |
||
1951 | * @param bool|null $nonFacturable The non facturable. |
||
1952 | * @return Clients2 Returns this Clients2. |
||
1953 | */ |
||
1954 | public function setNonFacturable(?bool $nonFacturable): Clients2 { |
||
1955 | $this->nonFacturable = $nonFacturable; |
||
1956 | return $this; |
||
1957 | } |
||
1958 | |||
1959 | /** |
||
1960 | * Set the pme tarif ou rem spe. |
||
1961 | * |
||
1962 | * @param bool|null $pmeTarifOuRemSpe The pme tarif ou rem spe. |
||
1963 | * @return Clients2 Returns this Clients2. |
||
1964 | */ |
||
1965 | public function setPmeTarifOuRemSpe(?bool $pmeTarifOuRemSpe): Clients2 { |
||
1966 | $this->pmeTarifOuRemSpe = $pmeTarifOuRemSpe; |
||
1967 | return $this; |
||
1968 | } |
||
1969 | |||
1970 | /** |
||
1971 | * Set the prevenir mail publier. |
||
1972 | * |
||
1973 | * @param bool|null $prevenirMailPublier The prevenir mail publier. |
||
1974 | * @return Clients2 Returns this Clients2. |
||
1975 | */ |
||
1976 | public function setPrevenirMailPublier(?bool $prevenirMailPublier): Clients2 { |
||
1977 | $this->prevenirMailPublier = $prevenirMailPublier; |
||
1978 | return $this; |
||
1979 | } |
||
1980 | |||
1981 | /** |
||
1982 | * Set the releves mail. |
||
1983 | * |
||
1984 | * @param bool|null $relevesMail The releves mail. |
||
1985 | * @return Clients2 Returns this Clients2. |
||
1986 | */ |
||
1987 | public function setRelevesMail(?bool $relevesMail): Clients2 { |
||
1988 | $this->relevesMail = $relevesMail; |
||
1989 | return $this; |
||
1990 | } |
||
1991 | |||
1992 | /** |
||
1993 | * Set the social complement suite. |
||
1994 | * |
||
1995 | * @param string|null $socialComplementSuite The social complement suite. |
||
1996 | * @return Clients2 Returns this Clients2. |
||
1997 | */ |
||
1998 | public function setSocialComplementSuite(?string $socialComplementSuite): Clients2 { |
||
1999 | $this->socialComplementSuite = $socialComplementSuite; |
||
2000 | return $this; |
||
2001 | } |
||
2002 | |||
2003 | /** |
||
2004 | * Set the social zip code. |
||
2005 | * |
||
2006 | * @param string|null $socialZipCode The social zip code. |
||
2007 | * @return Clients2 Returns this Clients2. |
||
2008 | */ |
||
2009 | public function setSocialZipCode(?string $socialZipCode): Clients2 { |
||
2010 | $this->socialZipCode = $socialZipCode; |
||
2011 | return $this; |
||
2012 | } |
||
2013 | |||
2014 | /** |
||
2015 | * Set the trs art pied. |
||
2016 | * |
||
2017 | * @param string|null $trsArtPied The trs art pied. |
||
2018 | * @return Clients2 Returns this Clients2. |
||
2019 | */ |
||
2020 | public function setTrsArtPied(?string $trsArtPied): Clients2 { |
||
2021 | $this->trsArtPied = $trsArtPied; |
||
2022 | return $this; |
||
2023 | } |
||
2024 | |||
2025 | /** |
||
2026 | * Set the trs art pied2. |
||
2027 | * |
||
2028 | * @param string|null $trsArtPied2 The trs art pied2. |
||
2029 | * @return Clients2 Returns this Clients2. |
||
2030 | */ |
||
2031 | public function setTrsArtPied2(?string $trsArtPied2): Clients2 { |
||
2032 | $this->trsArtPied2 = $trsArtPied2; |
||
2033 | return $this; |
||
2034 | } |
||
2035 | |||
2036 | /** |
||
2037 | * Set the trs categ march. |
||
2038 | * |
||
2039 | * @param string|null $trsCategMarch The trs categ march. |
||
2040 | * @return Clients2 Returns this Clients2. |
||
2041 | */ |
||
2042 | public function setTrsCategMarch(?string $trsCategMarch): Clients2 { |
||
2043 | $this->trsCategMarch = $trsCategMarch; |
||
2044 | return $this; |
||
2045 | } |
||
2046 | |||
2047 | /** |
||
2048 | * Set the trs centre ana. |
||
2049 | * |
||
2050 | * @param string|null $trsCentreAna The trs centre ana. |
||
2051 | * @return Clients2 Returns this Clients2. |
||
2052 | */ |
||
2053 | public function setTrsCentreAna(?string $trsCentreAna): Clients2 { |
||
2054 | $this->trsCentreAna = $trsCentreAna; |
||
2055 | return $this; |
||
2056 | } |
||
2057 | |||
2058 | /** |
||
2059 | * Set the trs code tarif1. |
||
2060 | * |
||
2061 | * @param string|null $trsCodeTarif1 The trs code tarif1. |
||
2062 | * @return Clients2 Returns this Clients2. |
||
2063 | */ |
||
2064 | public function setTrsCodeTarif1(?string $trsCodeTarif1): Clients2 { |
||
2065 | $this->trsCodeTarif1 = $trsCodeTarif1; |
||
2066 | return $this; |
||
2067 | } |
||
2068 | |||
2069 | /** |
||
2070 | * Set the trs code tarif1 sens. |
||
2071 | * |
||
2072 | * @param string|null $trsCodeTarif1Sens The trs code tarif1 sens. |
||
2073 | * @return Clients2 Returns this Clients2. |
||
2074 | */ |
||
2075 | public function setTrsCodeTarif1Sens(?string $trsCodeTarif1Sens): Clients2 { |
||
2076 | $this->trsCodeTarif1Sens = $trsCodeTarif1Sens; |
||
2077 | return $this; |
||
2078 | } |
||
2079 | |||
2080 | /** |
||
2081 | * Set the trs code tarif2. |
||
2082 | * |
||
2083 | * @param string|null $trsCodeTarif2 The trs code tarif2. |
||
2084 | * @return Clients2 Returns this Clients2. |
||
2085 | */ |
||
2086 | public function setTrsCodeTarif2(?string $trsCodeTarif2): Clients2 { |
||
2087 | $this->trsCodeTarif2 = $trsCodeTarif2; |
||
2088 | return $this; |
||
2089 | } |
||
2090 | |||
2091 | /** |
||
2092 | * Set the trs code tarif2 sens. |
||
2093 | * |
||
2094 | * @param string|null $trsCodeTarif2Sens The trs code tarif2 sens. |
||
2095 | * @return Clients2 Returns this Clients2. |
||
2096 | */ |
||
2097 | public function setTrsCodeTarif2Sens(?string $trsCodeTarif2Sens): Clients2 { |
||
2098 | $this->trsCodeTarif2Sens = $trsCodeTarif2Sens; |
||
2099 | return $this; |
||
2100 | } |
||
2101 | |||
2102 | /** |
||
2103 | * Set the trs code tarif3. |
||
2104 | * |
||
2105 | * @param string|null $trsCodeTarif3 The trs code tarif3. |
||
2106 | * @return Clients2 Returns this Clients2. |
||
2107 | */ |
||
2108 | public function setTrsCodeTarif3(?string $trsCodeTarif3): Clients2 { |
||
2109 | $this->trsCodeTarif3 = $trsCodeTarif3; |
||
2110 | return $this; |
||
2111 | } |
||
2112 | |||
2113 | /** |
||
2114 | * Set the trs code tarif3 sens. |
||
2115 | * |
||
2116 | * @param string|null $trsCodeTarif3Sens The trs code tarif3 sens. |
||
2117 | * @return Clients2 Returns this Clients2. |
||
2118 | */ |
||
2119 | public function setTrsCodeTarif3Sens(?string $trsCodeTarif3Sens): Clients2 { |
||
2120 | $this->trsCodeTarif3Sens = $trsCodeTarif3Sens; |
||
2121 | return $this; |
||
2122 | } |
||
2123 | |||
2124 | /** |
||
2125 | * Set the trs code tarif4. |
||
2126 | * |
||
2127 | * @param string|null $trsCodeTarif4 The trs code tarif4. |
||
2128 | * @return Clients2 Returns this Clients2. |
||
2129 | */ |
||
2130 | public function setTrsCodeTarif4(?string $trsCodeTarif4): Clients2 { |
||
2131 | $this->trsCodeTarif4 = $trsCodeTarif4; |
||
2132 | return $this; |
||
2133 | } |
||
2134 | |||
2135 | /** |
||
2136 | * Set the trs code tarif4 sens. |
||
2137 | * |
||
2138 | * @param string|null $trsCodeTarif4Sens The trs code tarif4 sens. |
||
2139 | * @return Clients2 Returns this Clients2. |
||
2140 | */ |
||
2141 | public function setTrsCodeTarif4Sens(?string $trsCodeTarif4Sens): Clients2 { |
||
2142 | $this->trsCodeTarif4Sens = $trsCodeTarif4Sens; |
||
2143 | return $this; |
||
2144 | } |
||
2145 | |||
2146 | /** |
||
2147 | * Set the trs code tarif5. |
||
2148 | * |
||
2149 | * @param string|null $trsCodeTarif5 The trs code tarif5. |
||
2150 | * @return Clients2 Returns this Clients2. |
||
2151 | */ |
||
2152 | public function setTrsCodeTarif5(?string $trsCodeTarif5): Clients2 { |
||
2153 | $this->trsCodeTarif5 = $trsCodeTarif5; |
||
2154 | return $this; |
||
2155 | } |
||
2156 | |||
2157 | /** |
||
2158 | * Set the trs code tarif5 sens. |
||
2159 | * |
||
2160 | * @param string|null $trsCodeTarif5Sens The trs code tarif5 sens. |
||
2161 | * @return Clients2 Returns this Clients2. |
||
2162 | */ |
||
2163 | public function setTrsCodeTarif5Sens(?string $trsCodeTarif5Sens): Clients2 { |
||
2164 | $this->trsCodeTarif5Sens = $trsCodeTarif5Sens; |
||
2165 | return $this; |
||
2166 | } |
||
2167 | |||
2168 | /** |
||
2169 | * Set the trs code tarif6. |
||
2170 | * |
||
2171 | * @param string|null $trsCodeTarif6 The trs code tarif6. |
||
2172 | * @return Clients2 Returns this Clients2. |
||
2173 | */ |
||
2174 | public function setTrsCodeTarif6(?string $trsCodeTarif6): Clients2 { |
||
2175 | $this->trsCodeTarif6 = $trsCodeTarif6; |
||
2176 | return $this; |
||
2177 | } |
||
2178 | |||
2179 | /** |
||
2180 | * Set the trs code tarif6 sens. |
||
2181 | * |
||
2182 | * @param string|null $trsCodeTarif6Sens The trs code tarif6 sens. |
||
2183 | * @return Clients2 Returns this Clients2. |
||
2184 | */ |
||
2185 | public function setTrsCodeTarif6Sens(?string $trsCodeTarif6Sens): Clients2 { |
||
2186 | $this->trsCodeTarif6Sens = $trsCodeTarif6Sens; |
||
2187 | return $this; |
||
2188 | } |
||
2189 | |||
2190 | /** |
||
2191 | * Set the trs code tarif def. |
||
2192 | * |
||
2193 | * @param int|null $trsCodeTarifDef The trs code tarif def. |
||
2194 | * @return Clients2 Returns this Clients2. |
||
2195 | */ |
||
2196 | public function setTrsCodeTarifDef(?int $trsCodeTarifDef): Clients2 { |
||
2197 | $this->trsCodeTarifDef = $trsCodeTarifDef; |
||
2198 | return $this; |
||
2199 | } |
||
2200 | |||
2201 | /** |
||
2202 | * Set the trs comment1. |
||
2203 | * |
||
2204 | * @param string|null $trsComment1 The trs comment1. |
||
2205 | * @return Clients2 Returns this Clients2. |
||
2206 | */ |
||
2207 | public function setTrsComment1(?string $trsComment1): Clients2 { |
||
2208 | $this->trsComment1 = $trsComment1; |
||
2209 | return $this; |
||
2210 | } |
||
2211 | |||
2212 | /** |
||
2213 | * Set the trs comment2. |
||
2214 | * |
||
2215 | * @param string|null $trsComment2 The trs comment2. |
||
2216 | * @return Clients2 Returns this Clients2. |
||
2217 | */ |
||
2218 | public function setTrsComment2(?string $trsComment2): Clients2 { |
||
2219 | $this->trsComment2 = $trsComment2; |
||
2220 | return $this; |
||
2221 | } |
||
2222 | |||
2223 | /** |
||
2224 | * Set the trs comment3. |
||
2225 | * |
||
2226 | * @param string|null $trsComment3 The trs comment3. |
||
2227 | * @return Clients2 Returns this Clients2. |
||
2228 | */ |
||
2229 | public function setTrsComment3(?string $trsComment3): Clients2 { |
||
2230 | $this->trsComment3 = $trsComment3; |
||
2231 | return $this; |
||
2232 | } |
||
2233 | |||
2234 | /** |
||
2235 | * Set the trs comment4. |
||
2236 | * |
||
2237 | * @param string|null $trsComment4 The trs comment4. |
||
2238 | * @return Clients2 Returns this Clients2. |
||
2239 | */ |
||
2240 | public function setTrsComment4(?string $trsComment4): Clients2 { |
||
2241 | $this->trsComment4 = $trsComment4; |
||
2242 | return $this; |
||
2243 | } |
||
2244 | |||
2245 | /** |
||
2246 | * Set the trs comment5. |
||
2247 | * |
||
2248 | * @param string|null $trsComment5 The trs comment5. |
||
2249 | * @return Clients2 Returns this Clients2. |
||
2250 | */ |
||
2251 | public function setTrsComment5(?string $trsComment5): Clients2 { |
||
2252 | $this->trsComment5 = $trsComment5; |
||
2253 | return $this; |
||
2254 | } |
||
2255 | |||
2256 | /** |
||
2257 | * Set the trs comment6. |
||
2258 | * |
||
2259 | * @param string|null $trsComment6 The trs comment6. |
||
2260 | * @return Clients2 Returns this Clients2. |
||
2261 | */ |
||
2262 | public function setTrsComment6(?string $trsComment6): Clients2 { |
||
2263 | $this->trsComment6 = $trsComment6; |
||
2264 | return $this; |
||
2265 | } |
||
2266 | |||
2267 | /** |
||
2268 | * Set the trs comment7. |
||
2269 | * |
||
2270 | * @param string|null $trsComment7 The trs comment7. |
||
2271 | * @return Clients2 Returns this Clients2. |
||
2272 | */ |
||
2273 | public function setTrsComment7(?string $trsComment7): Clients2 { |
||
2274 | $this->trsComment7 = $trsComment7; |
||
2275 | return $this; |
||
2276 | } |
||
2277 | |||
2278 | /** |
||
2279 | * Set the trs comment8. |
||
2280 | * |
||
2281 | * @param string|null $trsComment8 The trs comment8. |
||
2282 | * @return Clients2 Returns this Clients2. |
||
2283 | */ |
||
2284 | public function setTrsComment8(?string $trsComment8): Clients2 { |
||
2285 | $this->trsComment8 = $trsComment8; |
||
2286 | return $this; |
||
2287 | } |
||
2288 | |||
2289 | /** |
||
2290 | * Set the trs comment9. |
||
2291 | * |
||
2292 | * @param string|null $trsComment9 The trs comment9. |
||
2293 | * @return Clients2 Returns this Clients2. |
||
2294 | */ |
||
2295 | public function setTrsComment9(?string $trsComment9): Clients2 { |
||
2296 | $this->trsComment9 = $trsComment9; |
||
2297 | return $this; |
||
2298 | } |
||
2299 | |||
2300 | /** |
||
2301 | * Set the trs consignes1. |
||
2302 | * |
||
2303 | * @param string|null $trsConsignes1 The trs consignes1. |
||
2304 | * @return Clients2 Returns this Clients2. |
||
2305 | */ |
||
2306 | public function setTrsConsignes1(?string $trsConsignes1): Clients2 { |
||
2307 | $this->trsConsignes1 = $trsConsignes1; |
||
2308 | return $this; |
||
2309 | } |
||
2310 | |||
2311 | /** |
||
2312 | * Set the trs consignes2. |
||
2313 | * |
||
2314 | * @param string|null $trsConsignes2 The trs consignes2. |
||
2315 | * @return Clients2 Returns this Clients2. |
||
2316 | */ |
||
2317 | public function setTrsConsignes2(?string $trsConsignes2): Clients2 { |
||
2318 | $this->trsConsignes2 = $trsConsignes2; |
||
2319 | return $this; |
||
2320 | } |
||
2321 | |||
2322 | /** |
||
2323 | * Set the trs consignes3. |
||
2324 | * |
||
2325 | * @param string|null $trsConsignes3 The trs consignes3. |
||
2326 | * @return Clients2 Returns this Clients2. |
||
2327 | */ |
||
2328 | public function setTrsConsignes3(?string $trsConsignes3): Clients2 { |
||
2329 | $this->trsConsignes3 = $trsConsignes3; |
||
2330 | return $this; |
||
2331 | } |
||
2332 | |||
2333 | /** |
||
2334 | * Set the trs gestion palettes. |
||
2335 | * |
||
2336 | * @param bool|null $trsGestionPalettes The trs gestion palettes. |
||
2337 | * @return Clients2 Returns this Clients2. |
||
2338 | */ |
||
2339 | public function setTrsGestionPalettes(?bool $trsGestionPalettes): Clients2 { |
||
2340 | $this->trsGestionPalettes = $trsGestionPalettes; |
||
2341 | return $this; |
||
2342 | } |
||
2343 | |||
2344 | /** |
||
2345 | * Set the trs marchandise sensible. |
||
2346 | * |
||
2347 | * @param bool|null $trsMarchandiseSensible The trs marchandise sensible. |
||
2348 | * @return Clients2 Returns this Clients2. |
||
2349 | */ |
||
2350 | public function setTrsMarchandiseSensible(?bool $trsMarchandiseSensible): Clients2 { |
||
2351 | $this->trsMarchandiseSensible = $trsMarchandiseSensible; |
||
2352 | return $this; |
||
2353 | } |
||
2354 | |||
2355 | /** |
||
2356 | * Set the trs modele facture spe. |
||
2357 | * |
||
2358 | * @param string|null $trsModeleFactureSpe The trs modele facture spe. |
||
2359 | * @return Clients2 Returns this Clients2. |
||
2360 | */ |
||
2361 | public function setTrsModeleFactureSpe(?string $trsModeleFactureSpe): Clients2 { |
||
2362 | $this->trsModeleFactureSpe = $trsModeleFactureSpe; |
||
2363 | return $this; |
||
2364 | } |
||
2365 | |||
2366 | /** |
||
2367 | * Set the trs poids mini pal. |
||
2368 | * |
||
2369 | * @param float|null $trsPoidsMiniPal The trs poids mini pal. |
||
2370 | * @return Clients2 Returns this Clients2. |
||
2371 | */ |
||
2372 | public function setTrsPoidsMiniPal(?float $trsPoidsMiniPal): Clients2 { |
||
2373 | $this->trsPoidsMiniPal = $trsPoidsMiniPal; |
||
2374 | return $this; |
||
2375 | } |
||
2376 | |||
2377 | /** |
||
2378 | * Set the trs port du auto. |
||
2379 | * |
||
2380 | * @param bool|null $trsPortDuAuto The trs port du auto. |
||
2381 | * @return Clients2 Returns this Clients2. |
||
2382 | */ |
||
2383 | public function setTrsPortDuAuto(?bool $trsPortDuAuto): Clients2 { |
||
2384 | $this->trsPortDuAuto = $trsPortDuAuto; |
||
2385 | return $this; |
||
2386 | } |
||
2387 | |||
2388 | /** |
||
2389 | * Set the trs suivi ca mens. |
||
2390 | * |
||
2391 | * @param bool|null $trsSuiviCaMens The trs suivi ca mens. |
||
2392 | * @return Clients2 Returns this Clients2. |
||
2393 | */ |
||
2394 | public function setTrsSuiviCaMens(?bool $trsSuiviCaMens): Clients2 { |
||
2395 | $this->trsSuiviCaMens = $trsSuiviCaMens; |
||
2396 | return $this; |
||
2397 | } |
||
2398 | |||
2399 | /** |
||
2400 | * Set the trs suivi dt enl. |
||
2401 | * |
||
2402 | * @param bool|null $trsSuiviDtEnl The trs suivi dt enl. |
||
2403 | * @return Clients2 Returns this Clients2. |
||
2404 | */ |
||
2405 | public function setTrsSuiviDtEnl(?bool $trsSuiviDtEnl): Clients2 { |
||
2406 | $this->trsSuiviDtEnl = $trsSuiviDtEnl; |
||
2407 | return $this; |
||
2408 | } |
||
2409 | |||
2410 | /** |
||
2411 | * Set the trs suivi dt liv. |
||
2412 | * |
||
2413 | * @param bool|null $trsSuiviDtLiv The trs suivi dt liv. |
||
2414 | * @return Clients2 Returns this Clients2. |
||
2415 | */ |
||
2416 | public function setTrsSuiviDtLiv(?bool $trsSuiviDtLiv): Clients2 { |
||
2417 | $this->trsSuiviDtLiv = $trsSuiviDtLiv; |
||
2418 | return $this; |
||
2419 | } |
||
2420 | |||
2421 | /** |
||
2422 | * Set the trs suivi dt liv fax. |
||
2423 | * |
||
2424 | * @param string|null $trsSuiviDtLivFax The trs suivi dt liv fax. |
||
2425 | * @return Clients2 Returns this Clients2. |
||
2426 | */ |
||
2427 | public function setTrsSuiviDtLivFax(?string $trsSuiviDtLivFax): Clients2 { |
||
2428 | $this->trsSuiviDtLivFax = $trsSuiviDtLivFax; |
||
2429 | return $this; |
||
2430 | } |
||
2431 | |||
2432 | /** |
||
2433 | * Set the trs suivi dt liv mail. |
||
2434 | * |
||
2435 | * @param string|null $trsSuiviDtLivMail The trs suivi dt liv mail. |
||
2436 | * @return Clients2 Returns this Clients2. |
||
2437 | */ |
||
2438 | public function setTrsSuiviDtLivMail(?string $trsSuiviDtLivMail): Clients2 { |
||
2439 | $this->trsSuiviDtLivMail = $trsSuiviDtLivMail; |
||
2440 | return $this; |
||
2441 | } |
||
2442 | |||
2443 | /** |
||
2444 | * Set the trs type client. |
||
2445 | * |
||
2446 | * @param string|null $trsTypeClient The trs type client. |
||
2447 | * @return Clients2 Returns this Clients2. |
||
2448 | */ |
||
2449 | public function setTrsTypeClient(?string $trsTypeClient): Clients2 { |
||
2450 | $this->trsTypeClient = $trsTypeClient; |
||
2451 | return $this; |
||
2452 | } |
||
2453 | |||
2454 | /** |
||
2455 | * Set the trs type facturation. |
||
2456 | * |
||
2457 | * @param string|null $trsTypeFacturation The trs type facturation. |
||
2458 | * @return Clients2 Returns this Clients2. |
||
2459 | */ |
||
2460 | public function setTrsTypeFacturation(?string $trsTypeFacturation): Clients2 { |
||
2461 | $this->trsTypeFacturation = $trsTypeFacturation; |
||
2462 | return $this; |
||
2463 | } |
||
2464 | |||
2465 | /** |
||
2466 | * Set the trs type travail. |
||
2467 | * |
||
2468 | * @param string|null $trsTypeTravail The trs type travail. |
||
2469 | * @return Clients2 Returns this Clients2. |
||
2470 | */ |
||
2471 | public function setTrsTypeTravail(?string $trsTypeTravail): Clients2 { |
||
2472 | $this->trsTypeTravail = $trsTypeTravail; |
||
2473 | return $this; |
||
2474 | } |
||
2475 | |||
2476 | /** |
||
2477 | * Set the type transport1. |
||
2478 | * |
||
2479 | * @param string|null $typeTransport1 The type transport1. |
||
2480 | * @return Clients2 Returns this Clients2. |
||
2481 | */ |
||
2482 | public function setTypeTransport1(?string $typeTransport1): Clients2 { |
||
2483 | $this->typeTransport1 = $typeTransport1; |
||
2484 | return $this; |
||
2485 | } |
||
2486 | |||
2487 | /** |
||
2488 | * Set the type transport2. |
||
2489 | * |
||
2490 | * @param string|null $typeTransport2 The type transport2. |
||
2491 | * @return Clients2 Returns this Clients2. |
||
2492 | */ |
||
2493 | public function setTypeTransport2(?string $typeTransport2): Clients2 { |
||
2494 | $this->typeTransport2 = $typeTransport2; |
||
2495 | return $this; |
||
2496 | } |
||
2497 | |||
2498 | /** |
||
2499 | * Set the type transport3. |
||
2500 | * |
||
2501 | * @param string|null $typeTransport3 The type transport3. |
||
2502 | * @return Clients2 Returns this Clients2. |
||
2503 | */ |
||
2504 | public function setTypeTransport3(?string $typeTransport3): Clients2 { |
||
2505 | $this->typeTransport3 = $typeTransport3; |
||
2506 | return $this; |
||
2507 | } |
||
2508 | |||
2509 | /** |
||
2510 | * Set the type transport4. |
||
2511 | * |
||
2512 | * @param string|null $typeTransport4 The type transport4. |
||
2513 | * @return Clients2 Returns this Clients2. |
||
2514 | */ |
||
2515 | public function setTypeTransport4(?string $typeTransport4): Clients2 { |
||
2516 | $this->typeTransport4 = $typeTransport4; |
||
2517 | return $this; |
||
2518 | } |
||
2519 | |||
2520 | /** |
||
2521 | * Set the type transport5. |
||
2522 | * |
||
2523 | * @param string|null $typeTransport5 The type transport5. |
||
2524 | * @return Clients2 Returns this Clients2. |
||
2525 | */ |
||
2526 | public function setTypeTransport5(?string $typeTransport5): Clients2 { |
||
2527 | $this->typeTransport5 = $typeTransport5; |
||
2528 | return $this; |
||
2529 | } |
||
2530 | |||
2531 | /** |
||
2532 | * Set the localisation archives. |
||
2533 | * |
||
2534 | * @param string|null $localisationArchives The localisation archives. |
||
2535 | * @return Clients2 Returns this Clients2. |
||
2536 | */ |
||
2537 | public function setlocalisationArchives(?string $localisationArchives): Clients2 { |
||
2538 | $this->localisationArchives = $localisationArchives; |
||
2539 | return $this; |
||
2540 | } |
||
2541 | } |
||
2542 |