Complex classes like Fournisseurs often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Fournisseurs, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
22 | class Fournisseurs { |
||
23 | |||
24 | /** |
||
25 | * Ape. |
||
26 | * |
||
27 | * @var string|null |
||
28 | */ |
||
29 | private $ape; |
||
30 | |||
31 | /** |
||
32 | * Btq. |
||
33 | * |
||
34 | * @var string|null |
||
35 | */ |
||
36 | private $btq; |
||
37 | |||
38 | /** |
||
39 | * Bureau distributeur. |
||
40 | * |
||
41 | * @var string|null |
||
42 | */ |
||
43 | private $bureauDistributeur; |
||
44 | |||
45 | /** |
||
46 | * Code. |
||
47 | * |
||
48 | * @var string|null |
||
49 | */ |
||
50 | private $code; |
||
51 | |||
52 | /** |
||
53 | * Code devise. |
||
54 | * |
||
55 | * @var string|null |
||
56 | */ |
||
57 | private $codeDevise; |
||
58 | |||
59 | /** |
||
60 | * Code famille. |
||
61 | * |
||
62 | * @var string|null |
||
63 | */ |
||
64 | private $codeFamille; |
||
65 | |||
66 | /** |
||
67 | * Code imputation analytique. |
||
68 | * |
||
69 | * @var string|null |
||
70 | */ |
||
71 | private $codeImputationAnalytique; |
||
72 | |||
73 | /** |
||
74 | * Code langue designation article. |
||
75 | * |
||
76 | * @var string|null |
||
77 | */ |
||
78 | private $codeLangueDesignationArticle; |
||
79 | |||
80 | /** |
||
81 | * Code officiel commune. |
||
82 | * |
||
83 | * @var string|null |
||
84 | */ |
||
85 | private $codeOfficielCommune; |
||
86 | |||
87 | /** |
||
88 | * Code pays. |
||
89 | * |
||
90 | * @var string|null |
||
91 | */ |
||
92 | private $codePays; |
||
93 | |||
94 | /** |
||
95 | * Code postal. |
||
96 | * |
||
97 | * @var string|null |
||
98 | */ |
||
99 | private $codePostal; |
||
100 | |||
101 | /** |
||
102 | * Code reglement. |
||
103 | * |
||
104 | * @var string|null |
||
105 | */ |
||
106 | private $codeReglement; |
||
107 | |||
108 | /** |
||
109 | * Code sous famille. |
||
110 | * |
||
111 | * @var string|null |
||
112 | */ |
||
113 | private $codeSousFamille; |
||
114 | |||
115 | /** |
||
116 | * Code tva. |
||
117 | * |
||
118 | * @var string|null |
||
119 | */ |
||
120 | private $codeTva; |
||
121 | |||
122 | /** |
||
123 | * Code tva1. |
||
124 | * |
||
125 | * @var string|null |
||
126 | */ |
||
127 | private $codeTva1; |
||
128 | |||
129 | /** |
||
130 | * Code tva2. |
||
131 | * |
||
132 | * @var string|null |
||
133 | */ |
||
134 | private $codeTva2; |
||
135 | |||
136 | /** |
||
137 | * Code ventil compta. |
||
138 | * |
||
139 | * @var string|null |
||
140 | */ |
||
141 | private $codeVentilCompta; |
||
142 | |||
143 | /** |
||
144 | * Collectif. |
||
145 | * |
||
146 | * @var string|null |
||
147 | */ |
||
148 | private $collectif; |
||
149 | |||
150 | /** |
||
151 | * Commentaires. |
||
152 | * |
||
153 | * @var string|null |
||
154 | */ |
||
155 | private $commentaires; |
||
156 | |||
157 | /** |
||
158 | * Complement. |
||
159 | * |
||
160 | * @var string|null |
||
161 | */ |
||
162 | private $complement; |
||
163 | |||
164 | /** |
||
165 | * Date creation. |
||
166 | * |
||
167 | * @var DateTime|null |
||
168 | */ |
||
169 | private $dateCreation; |
||
170 | |||
171 | /** |
||
172 | * Date modification. |
||
173 | * |
||
174 | * @var DateTime|null |
||
175 | */ |
||
176 | private $dateModification; |
||
177 | |||
178 | /** |
||
179 | * Delai le. |
||
180 | * |
||
181 | * @var int|null |
||
182 | */ |
||
183 | private $delaiLe; |
||
184 | |||
185 | /** |
||
186 | * Delai nombre. |
||
187 | * |
||
188 | * @var int|null |
||
189 | */ |
||
190 | private $delaiNombre; |
||
191 | |||
192 | /** |
||
193 | * Delai type. |
||
194 | * |
||
195 | * @var int|null |
||
196 | */ |
||
197 | private $delaiType; |
||
198 | |||
199 | /** |
||
200 | * Domiciliation bancaire1. |
||
201 | * |
||
202 | * @var string|null |
||
203 | */ |
||
204 | private $domiciliationBancaire1; |
||
205 | |||
206 | /** |
||
207 | * Domiciliation bancaire2. |
||
208 | * |
||
209 | * @var string|null |
||
210 | */ |
||
211 | private $domiciliationBancaire2; |
||
212 | |||
213 | /** |
||
214 | * Email. |
||
215 | * |
||
216 | * @var string|null |
||
217 | */ |
||
218 | private $email; |
||
219 | |||
220 | /** |
||
221 | * Facture euros. |
||
222 | * |
||
223 | * @var bool|null |
||
224 | */ |
||
225 | private $factureEuros; |
||
226 | |||
227 | /** |
||
228 | * Fax. |
||
229 | * |
||
230 | * @var string|null |
||
231 | */ |
||
232 | private $fax; |
||
233 | |||
234 | /** |
||
235 | * Frais fixes1. |
||
236 | * |
||
237 | * @var float|null |
||
238 | */ |
||
239 | private $fraisFixes1; |
||
240 | |||
241 | /** |
||
242 | * Frais fixes2. |
||
243 | * |
||
244 | * @var float|null |
||
245 | */ |
||
246 | private $fraisFixes2; |
||
247 | |||
248 | /** |
||
249 | * Frais fixes3. |
||
250 | * |
||
251 | * @var float|null |
||
252 | */ |
||
253 | private $fraisFixes3; |
||
254 | |||
255 | /** |
||
256 | * Ident tva. |
||
257 | * |
||
258 | * @var string|null |
||
259 | */ |
||
260 | private $identTva; |
||
261 | |||
262 | /** |
||
263 | * Montant acompte. |
||
264 | * |
||
265 | * @var float|null |
||
266 | */ |
||
267 | private $montantAcompte; |
||
268 | |||
269 | /** |
||
270 | * Nb colis. |
||
271 | * |
||
272 | * @var int|null |
||
273 | */ |
||
274 | private $nbColis; |
||
275 | |||
276 | /** |
||
277 | * Nom. |
||
278 | * |
||
279 | * @var string|null |
||
280 | */ |
||
281 | private $nom; |
||
282 | |||
283 | /** |
||
284 | * Nom responsable. |
||
285 | * |
||
286 | * @var string|null |
||
287 | */ |
||
288 | private $nomResponsable; |
||
289 | |||
290 | /** |
||
291 | * Nom suite. |
||
292 | * |
||
293 | * @var string|null |
||
294 | */ |
||
295 | private $nomSuite; |
||
296 | |||
297 | /** |
||
298 | * Nom ville. |
||
299 | * |
||
300 | * @var string|null |
||
301 | */ |
||
302 | private $nomVille; |
||
303 | |||
304 | /** |
||
305 | * Nom voie. |
||
306 | * |
||
307 | * @var string|null |
||
308 | */ |
||
309 | private $nomVoie; |
||
310 | |||
311 | /** |
||
312 | * Nombre echeances. |
||
313 | * |
||
314 | * @var int|null |
||
315 | */ |
||
316 | private $nombreEcheances; |
||
317 | |||
318 | /** |
||
319 | * Num voie. |
||
320 | * |
||
321 | * @var string|null |
||
322 | */ |
||
323 | private $numVoie; |
||
324 | |||
325 | /** |
||
326 | * Numero compte. |
||
327 | * |
||
328 | * @var string|null |
||
329 | */ |
||
330 | private $numeroCompte; |
||
331 | |||
332 | /** |
||
333 | * Paiement depart le. |
||
334 | * |
||
335 | * @var int|null |
||
336 | */ |
||
337 | private $paiementDepartLe; |
||
338 | |||
339 | /** |
||
340 | * Paiement le. |
||
341 | * |
||
342 | * @var int|null |
||
343 | */ |
||
344 | private $paiementLe; |
||
345 | |||
346 | /** |
||
347 | * Paiement nombre de jours. |
||
348 | * |
||
349 | * @var int|null |
||
350 | */ |
||
351 | private $paiementNombreDeJours; |
||
352 | |||
353 | /** |
||
354 | * Poids. |
||
355 | * |
||
356 | * @var float|null |
||
357 | */ |
||
358 | private $poids; |
||
359 | |||
360 | /** |
||
361 | * Portable1. |
||
362 | * |
||
363 | * @var string|null |
||
364 | */ |
||
365 | private $portable1; |
||
366 | |||
367 | /** |
||
368 | * Portable2. |
||
369 | * |
||
370 | * @var string|null |
||
371 | */ |
||
372 | private $portable2; |
||
373 | |||
374 | /** |
||
375 | * Rib. |
||
376 | * |
||
377 | * @var string|null |
||
378 | */ |
||
379 | private $rib; |
||
380 | |||
381 | /** |
||
382 | * Rc. |
||
383 | * |
||
384 | * @var string|null |
||
385 | */ |
||
386 | private $rc; |
||
387 | |||
388 | /** |
||
389 | * Reference client. |
||
390 | * |
||
391 | * @var string|null |
||
392 | */ |
||
393 | private $referenceClient; |
||
394 | |||
395 | /** |
||
396 | * Remise ligne1. |
||
397 | * |
||
398 | * @var float|null |
||
399 | */ |
||
400 | private $remiseLigne1; |
||
401 | |||
402 | /** |
||
403 | * Remise ligne2. |
||
404 | * |
||
405 | * @var float|null |
||
406 | */ |
||
407 | private $remiseLigne2; |
||
408 | |||
409 | /** |
||
410 | * Remise ligne3. |
||
411 | * |
||
412 | * @var float|null |
||
413 | */ |
||
414 | private $remiseLigne3; |
||
415 | |||
416 | /** |
||
417 | * Remise pied. |
||
418 | * |
||
419 | * @var float|null |
||
420 | */ |
||
421 | private $remisePied; |
||
422 | |||
423 | /** |
||
424 | * Remise pied2. |
||
425 | * |
||
426 | * @var float|null |
||
427 | */ |
||
428 | private $remisePied2; |
||
429 | |||
430 | /** |
||
431 | * Remise pied3. |
||
432 | * |
||
433 | * @var float|null |
||
434 | */ |
||
435 | private $remisePied3; |
||
436 | |||
437 | /** |
||
438 | * Siret. |
||
439 | * |
||
440 | * @var string|null |
||
441 | */ |
||
442 | private $siret; |
||
443 | |||
444 | /** |
||
445 | * Soumis taxe1. |
||
446 | * |
||
447 | * @var bool|null |
||
448 | */ |
||
449 | private $soumisTaxe1; |
||
450 | |||
451 | /** |
||
452 | * Soumis taxe2. |
||
453 | * |
||
454 | * @var bool|null |
||
455 | */ |
||
456 | private $soumisTaxe2; |
||
457 | |||
458 | /** |
||
459 | * Soumis taxe3. |
||
460 | * |
||
461 | * @var bool|null |
||
462 | */ |
||
463 | private $soumisTaxe3; |
||
464 | |||
465 | /** |
||
466 | * Tva cle. |
||
467 | * |
||
468 | * @var string|null |
||
469 | */ |
||
470 | private $tvaCle; |
||
471 | |||
472 | /** |
||
473 | * Tva code dossier. |
||
474 | * |
||
475 | * @var string|null |
||
476 | */ |
||
477 | private $tvaCodeDossier; |
||
478 | |||
479 | /** |
||
480 | * Tva code recette. |
||
481 | * |
||
482 | * @var string|null |
||
483 | */ |
||
484 | private $tvaCodeRecette; |
||
485 | |||
486 | /** |
||
487 | * Tva regime. |
||
488 | * |
||
489 | * @var int|null |
||
490 | */ |
||
491 | private $tvaRegime; |
||
492 | |||
493 | /** |
||
494 | * Tel1. |
||
495 | * |
||
496 | * @var string|null |
||
497 | */ |
||
498 | private $tel1; |
||
499 | |||
500 | /** |
||
501 | * Tel2. |
||
502 | * |
||
503 | * @var string|null |
||
504 | */ |
||
505 | private $tel2; |
||
506 | |||
507 | /** |
||
508 | * Tel voiture. |
||
509 | * |
||
510 | * @var string|null |
||
511 | */ |
||
512 | private $telVoiture; |
||
513 | |||
514 | /** |
||
515 | * Telex. |
||
516 | * |
||
517 | * @var string|null |
||
518 | */ |
||
519 | private $telex; |
||
520 | |||
521 | /** |
||
522 | * Transporteur. |
||
523 | * |
||
524 | * @var string|null |
||
525 | */ |
||
526 | private $transporteur; |
||
527 | |||
528 | /** |
||
529 | * Tx escompte achat. |
||
530 | * |
||
531 | * @var float|null |
||
532 | */ |
||
533 | private $txEscompteAchat; |
||
534 | |||
535 | |||
536 | /** |
||
537 | * Constructor. |
||
538 | */ |
||
539 | public function __construct() { |
||
542 | |||
543 | /** |
||
544 | * Get the ape. |
||
545 | * |
||
546 | * @return string|null Returns the ape. |
||
547 | */ |
||
548 | public function getApe(): ?string{ |
||
551 | |||
552 | /** |
||
553 | * Get the btq. |
||
554 | * |
||
555 | * @return string|null Returns the btq. |
||
556 | */ |
||
557 | public function getBtq(): ?string{ |
||
560 | |||
561 | /** |
||
562 | * Get the bureau distributeur. |
||
563 | * |
||
564 | * @return string|null Returns the bureau distributeur. |
||
565 | */ |
||
566 | public function getBureauDistributeur(): ?string{ |
||
569 | |||
570 | /** |
||
571 | * Get the code. |
||
572 | * |
||
573 | * @return string|null Returns the code. |
||
574 | */ |
||
575 | public function getCode(): ?string{ |
||
578 | |||
579 | /** |
||
580 | * Get the code devise. |
||
581 | * |
||
582 | * @return string|null Returns the code devise. |
||
583 | */ |
||
584 | public function getCodeDevise(): ?string{ |
||
587 | |||
588 | /** |
||
589 | * Get the code famille. |
||
590 | * |
||
591 | * @return string|null Returns the code famille. |
||
592 | */ |
||
593 | public function getCodeFamille(): ?string{ |
||
596 | |||
597 | /** |
||
598 | * Get the code imputation analytique. |
||
599 | * |
||
600 | * @return string|null Returns the code imputation analytique. |
||
601 | */ |
||
602 | public function getCodeImputationAnalytique(): ?string{ |
||
605 | |||
606 | /** |
||
607 | * Get the code langue designation article. |
||
608 | * |
||
609 | * @return string|null Returns the code langue designation article. |
||
610 | */ |
||
611 | public function getCodeLangueDesignationArticle(): ?string{ |
||
614 | |||
615 | /** |
||
616 | * Get the code officiel commune. |
||
617 | * |
||
618 | * @return string|null Returns the code officiel commune. |
||
619 | */ |
||
620 | public function getCodeOfficielCommune(): ?string{ |
||
623 | |||
624 | /** |
||
625 | * Get the code pays. |
||
626 | * |
||
627 | * @return string|null Returns the code pays. |
||
628 | */ |
||
629 | public function getCodePays(): ?string{ |
||
632 | |||
633 | /** |
||
634 | * Get the code postal. |
||
635 | * |
||
636 | * @return string|null Returns the code postal. |
||
637 | */ |
||
638 | public function getCodePostal(): ?string{ |
||
641 | |||
642 | /** |
||
643 | * Get the code reglement. |
||
644 | * |
||
645 | * @return string|null Returns the code reglement. |
||
646 | */ |
||
647 | public function getCodeReglement(): ?string{ |
||
650 | |||
651 | /** |
||
652 | * Get the code sous famille. |
||
653 | * |
||
654 | * @return string|null Returns the code sous famille. |
||
655 | */ |
||
656 | public function getCodeSousFamille(): ?string{ |
||
659 | |||
660 | /** |
||
661 | * Get the code tva. |
||
662 | * |
||
663 | * @return string|null Returns the code tva. |
||
664 | */ |
||
665 | public function getCodeTva(): ?string{ |
||
668 | |||
669 | /** |
||
670 | * Get the code tva1. |
||
671 | * |
||
672 | * @return string|null Returns the code tva1. |
||
673 | */ |
||
674 | public function getCodeTva1(): ?string{ |
||
677 | |||
678 | /** |
||
679 | * Get the code tva2. |
||
680 | * |
||
681 | * @return string|null Returns the code tva2. |
||
682 | */ |
||
683 | public function getCodeTva2(): ?string{ |
||
686 | |||
687 | /** |
||
688 | * Get the code ventil compta. |
||
689 | * |
||
690 | * @return string|null Returns the code ventil compta. |
||
691 | */ |
||
692 | public function getCodeVentilCompta(): ?string{ |
||
695 | |||
696 | /** |
||
697 | * Get the collectif. |
||
698 | * |
||
699 | * @return string|null Returns the collectif. |
||
700 | */ |
||
701 | public function getCollectif(): ?string{ |
||
704 | |||
705 | /** |
||
706 | * Get the commentaires. |
||
707 | * |
||
708 | * @return string|null Returns the commentaires. |
||
709 | */ |
||
710 | public function getCommentaires(): ?string{ |
||
713 | |||
714 | /** |
||
715 | * Get the complement. |
||
716 | * |
||
717 | * @return string|null Returns the complement. |
||
718 | */ |
||
719 | public function getComplement(): ?string{ |
||
722 | |||
723 | /** |
||
724 | * Get the date creation. |
||
725 | * |
||
726 | * @return DateTime|null Returns the date creation. |
||
727 | */ |
||
728 | public function getDateCreation(): ?DateTime{ |
||
731 | |||
732 | /** |
||
733 | * Get the date modification. |
||
734 | * |
||
735 | * @return DateTime|null Returns the date modification. |
||
736 | */ |
||
737 | public function getDateModification(): ?DateTime{ |
||
740 | |||
741 | /** |
||
742 | * Get the delai le. |
||
743 | * |
||
744 | * @return int|null Returns the delai le. |
||
745 | */ |
||
746 | public function getDelaiLe(): ?int{ |
||
749 | |||
750 | /** |
||
751 | * Get the delai nombre. |
||
752 | * |
||
753 | * @return int|null Returns the delai nombre. |
||
754 | */ |
||
755 | public function getDelaiNombre(): ?int{ |
||
758 | |||
759 | /** |
||
760 | * Get the delai type. |
||
761 | * |
||
762 | * @return int|null Returns the delai type. |
||
763 | */ |
||
764 | public function getDelaiType(): ?int{ |
||
767 | |||
768 | /** |
||
769 | * Get the domiciliation bancaire1. |
||
770 | * |
||
771 | * @return string|null Returns the domiciliation bancaire1. |
||
772 | */ |
||
773 | public function getDomiciliationBancaire1(): ?string{ |
||
776 | |||
777 | /** |
||
778 | * Get the domiciliation bancaire2. |
||
779 | * |
||
780 | * @return string|null Returns the domiciliation bancaire2. |
||
781 | */ |
||
782 | public function getDomiciliationBancaire2(): ?string{ |
||
785 | |||
786 | /** |
||
787 | * Get the email. |
||
788 | * |
||
789 | * @return string|null Returns the email. |
||
790 | */ |
||
791 | public function getEmail(): ?string{ |
||
794 | |||
795 | /** |
||
796 | * Get the facture euros. |
||
797 | * |
||
798 | * @return bool|null Returns the facture euros. |
||
799 | */ |
||
800 | public function getFactureEuros(): ?bool{ |
||
803 | |||
804 | /** |
||
805 | * Get the fax. |
||
806 | * |
||
807 | * @return string|null Returns the fax. |
||
808 | */ |
||
809 | public function getFax(): ?string{ |
||
812 | |||
813 | /** |
||
814 | * Get the frais fixes1. |
||
815 | * |
||
816 | * @return float|null Returns the frais fixes1. |
||
817 | */ |
||
818 | public function getFraisFixes1(): ?float{ |
||
821 | |||
822 | /** |
||
823 | * Get the frais fixes2. |
||
824 | * |
||
825 | * @return float|null Returns the frais fixes2. |
||
826 | */ |
||
827 | public function getFraisFixes2(): ?float{ |
||
830 | |||
831 | /** |
||
832 | * Get the frais fixes3. |
||
833 | * |
||
834 | * @return float|null Returns the frais fixes3. |
||
835 | */ |
||
836 | public function getFraisFixes3(): ?float{ |
||
839 | |||
840 | /** |
||
841 | * Get the ident tva. |
||
842 | * |
||
843 | * @return string|null Returns the ident tva. |
||
844 | */ |
||
845 | public function getIdentTva(): ?string{ |
||
848 | |||
849 | /** |
||
850 | * Get the montant acompte. |
||
851 | * |
||
852 | * @return float|null Returns the montant acompte. |
||
853 | */ |
||
854 | public function getMontantAcompte(): ?float{ |
||
857 | |||
858 | /** |
||
859 | * Get the nb colis. |
||
860 | * |
||
861 | * @return int|null Returns the nb colis. |
||
862 | */ |
||
863 | public function getNbColis(): ?int{ |
||
866 | |||
867 | /** |
||
868 | * Get the nom. |
||
869 | * |
||
870 | * @return string|null Returns the nom. |
||
871 | */ |
||
872 | public function getNom(): ?string{ |
||
875 | |||
876 | /** |
||
877 | * Get the nom responsable. |
||
878 | * |
||
879 | * @return string|null Returns the nom responsable. |
||
880 | */ |
||
881 | public function getNomResponsable(): ?string{ |
||
884 | |||
885 | /** |
||
886 | * Get the nom suite. |
||
887 | * |
||
888 | * @return string|null Returns the nom suite. |
||
889 | */ |
||
890 | public function getNomSuite(): ?string{ |
||
893 | |||
894 | /** |
||
895 | * Get the nom ville. |
||
896 | * |
||
897 | * @return string|null Returns the nom ville. |
||
898 | */ |
||
899 | public function getNomVille(): ?string{ |
||
902 | |||
903 | /** |
||
904 | * Get the nom voie. |
||
905 | * |
||
906 | * @return string|null Returns the nom voie. |
||
907 | */ |
||
908 | public function getNomVoie(): ?string{ |
||
911 | |||
912 | /** |
||
913 | * Get the nombre echeances. |
||
914 | * |
||
915 | * @return int|null Returns the nombre echeances. |
||
916 | */ |
||
917 | public function getNombreEcheances(): ?int{ |
||
920 | |||
921 | /** |
||
922 | * Get the num voie. |
||
923 | * |
||
924 | * @return string|null Returns the num voie. |
||
925 | */ |
||
926 | public function getNumVoie(): ?string{ |
||
929 | |||
930 | /** |
||
931 | * Get the numero compte. |
||
932 | * |
||
933 | * @return string|null Returns the numero compte. |
||
934 | */ |
||
935 | public function getNumeroCompte(): ?string{ |
||
938 | |||
939 | /** |
||
940 | * Get the paiement depart le. |
||
941 | * |
||
942 | * @return int|null Returns the paiement depart le. |
||
943 | */ |
||
944 | public function getPaiementDepartLe(): ?int{ |
||
947 | |||
948 | /** |
||
949 | * Get the paiement le. |
||
950 | * |
||
951 | * @return int|null Returns the paiement le. |
||
952 | */ |
||
953 | public function getPaiementLe(): ?int{ |
||
956 | |||
957 | /** |
||
958 | * Get the paiement nombre de jours. |
||
959 | * |
||
960 | * @return int|null Returns the paiement nombre de jours. |
||
961 | */ |
||
962 | public function getPaiementNombreDeJours(): ?int{ |
||
965 | |||
966 | /** |
||
967 | * Get the poids. |
||
968 | * |
||
969 | * @return float|null Returns the poids. |
||
970 | */ |
||
971 | public function getPoids(): ?float{ |
||
974 | |||
975 | /** |
||
976 | * Get the portable1. |
||
977 | * |
||
978 | * @return string|null Returns the portable1. |
||
979 | */ |
||
980 | public function getPortable1(): ?string{ |
||
983 | |||
984 | /** |
||
985 | * Get the portable2. |
||
986 | * |
||
987 | * @return string|null Returns the portable2. |
||
988 | */ |
||
989 | public function getPortable2(): ?string{ |
||
992 | |||
993 | /** |
||
994 | * Get the rib. |
||
995 | * |
||
996 | * @return string|null Returns the rib. |
||
997 | */ |
||
998 | public function getRib(): ?string{ |
||
1001 | |||
1002 | /** |
||
1003 | * Get the rc. |
||
1004 | * |
||
1005 | * @return string|null Returns the rc. |
||
1006 | */ |
||
1007 | public function getRc(): ?string{ |
||
1010 | |||
1011 | /** |
||
1012 | * Get the reference client. |
||
1013 | * |
||
1014 | * @return string|null Returns the reference client. |
||
1015 | */ |
||
1016 | public function getReferenceClient(): ?string{ |
||
1019 | |||
1020 | /** |
||
1021 | * Get the remise ligne1. |
||
1022 | * |
||
1023 | * @return float|null Returns the remise ligne1. |
||
1024 | */ |
||
1025 | public function getRemiseLigne1(): ?float{ |
||
1028 | |||
1029 | /** |
||
1030 | * Get the remise ligne2. |
||
1031 | * |
||
1032 | * @return float|null Returns the remise ligne2. |
||
1033 | */ |
||
1034 | public function getRemiseLigne2(): ?float{ |
||
1037 | |||
1038 | /** |
||
1039 | * Get the remise ligne3. |
||
1040 | * |
||
1041 | * @return float|null Returns the remise ligne3. |
||
1042 | */ |
||
1043 | public function getRemiseLigne3(): ?float{ |
||
1046 | |||
1047 | /** |
||
1048 | * Get the remise pied. |
||
1049 | * |
||
1050 | * @return float|null Returns the remise pied. |
||
1051 | */ |
||
1052 | public function getRemisePied(): ?float{ |
||
1055 | |||
1056 | /** |
||
1057 | * Get the remise pied2. |
||
1058 | * |
||
1059 | * @return float|null Returns the remise pied2. |
||
1060 | */ |
||
1061 | public function getRemisePied2(): ?float{ |
||
1064 | |||
1065 | /** |
||
1066 | * Get the remise pied3. |
||
1067 | * |
||
1068 | * @return float|null Returns the remise pied3. |
||
1069 | */ |
||
1070 | public function getRemisePied3(): ?float{ |
||
1073 | |||
1074 | /** |
||
1075 | * Get the siret. |
||
1076 | * |
||
1077 | * @return string|null Returns the siret. |
||
1078 | */ |
||
1079 | public function getSiret(): ?string{ |
||
1082 | |||
1083 | /** |
||
1084 | * Get the soumis taxe1. |
||
1085 | * |
||
1086 | * @return bool|null Returns the soumis taxe1. |
||
1087 | */ |
||
1088 | public function getSoumisTaxe1(): ?bool{ |
||
1091 | |||
1092 | /** |
||
1093 | * Get the soumis taxe2. |
||
1094 | * |
||
1095 | * @return bool|null Returns the soumis taxe2. |
||
1096 | */ |
||
1097 | public function getSoumisTaxe2(): ?bool{ |
||
1100 | |||
1101 | /** |
||
1102 | * Get the soumis taxe3. |
||
1103 | * |
||
1104 | * @return bool|null Returns the soumis taxe3. |
||
1105 | */ |
||
1106 | public function getSoumisTaxe3(): ?bool{ |
||
1109 | |||
1110 | /** |
||
1111 | * Get the tva cle. |
||
1112 | * |
||
1113 | * @return string|null Returns the tva cle. |
||
1114 | */ |
||
1115 | public function getTvaCle(): ?string{ |
||
1118 | |||
1119 | /** |
||
1120 | * Get the tva code dossier. |
||
1121 | * |
||
1122 | * @return string|null Returns the tva code dossier. |
||
1123 | */ |
||
1124 | public function getTvaCodeDossier(): ?string{ |
||
1127 | |||
1128 | /** |
||
1129 | * Get the tva code recette. |
||
1130 | * |
||
1131 | * @return string|null Returns the tva code recette. |
||
1132 | */ |
||
1133 | public function getTvaCodeRecette(): ?string{ |
||
1136 | |||
1137 | /** |
||
1138 | * Get the tva regime. |
||
1139 | * |
||
1140 | * @return int|null Returns the tva regime. |
||
1141 | */ |
||
1142 | public function getTvaRegime(): ?int{ |
||
1145 | |||
1146 | /** |
||
1147 | * Get the tel1. |
||
1148 | * |
||
1149 | * @return string|null Returns the tel1. |
||
1150 | */ |
||
1151 | public function getTel1(): ?string{ |
||
1154 | |||
1155 | /** |
||
1156 | * Get the tel2. |
||
1157 | * |
||
1158 | * @return string|null Returns the tel2. |
||
1159 | */ |
||
1160 | public function getTel2(): ?string{ |
||
1163 | |||
1164 | /** |
||
1165 | * Get the tel voiture. |
||
1166 | * |
||
1167 | * @return string|null Returns the tel voiture. |
||
1168 | */ |
||
1169 | public function getTelVoiture(): ?string{ |
||
1172 | |||
1173 | /** |
||
1174 | * Get the telex. |
||
1175 | * |
||
1176 | * @return string|null Returns the telex. |
||
1177 | */ |
||
1178 | public function getTelex(): ?string{ |
||
1181 | |||
1182 | /** |
||
1183 | * Get the transporteur. |
||
1184 | * |
||
1185 | * @return string|null Returns the transporteur. |
||
1186 | */ |
||
1187 | public function getTransporteur(): ?string{ |
||
1190 | |||
1191 | /** |
||
1192 | * Get the tx escompte achat. |
||
1193 | * |
||
1194 | * @return float|null Returns the tx escompte achat. |
||
1195 | */ |
||
1196 | public function getTxEscompteAchat(): ?float{ |
||
1199 | |||
1200 | /** |
||
1201 | * Set the ape. |
||
1202 | * |
||
1203 | * @param string|null $ape The ape. |
||
1204 | * @return Fournisseurs Returns this Fournisseurs. |
||
1205 | */ |
||
1206 | public function setApe(?string $ape): Fournisseurs { |
||
1210 | |||
1211 | /** |
||
1212 | * Set the btq. |
||
1213 | * |
||
1214 | * @param string|null $btq The btq. |
||
1215 | * @return Fournisseurs Returns this Fournisseurs. |
||
1216 | */ |
||
1217 | public function setBtq(?string $btq): Fournisseurs { |
||
1221 | |||
1222 | /** |
||
1223 | * Set the bureau distributeur. |
||
1224 | * |
||
1225 | * @param string|null $bureauDistributeur The bureau distributeur. |
||
1226 | * @return Fournisseurs Returns this Fournisseurs. |
||
1227 | */ |
||
1228 | public function setBureauDistributeur(?string $bureauDistributeur): Fournisseurs { |
||
1232 | |||
1233 | /** |
||
1234 | * Set the code. |
||
1235 | * |
||
1236 | * @param string|null $code The code. |
||
1237 | * @return Fournisseurs Returns this Fournisseurs. |
||
1238 | */ |
||
1239 | public function setCode(?string $code): Fournisseurs { |
||
1243 | |||
1244 | /** |
||
1245 | * Set the code devise. |
||
1246 | * |
||
1247 | * @param string|null $codeDevise The code devise. |
||
1248 | * @return Fournisseurs Returns this Fournisseurs. |
||
1249 | */ |
||
1250 | public function setCodeDevise(?string $codeDevise): Fournisseurs { |
||
1254 | |||
1255 | /** |
||
1256 | * Set the code famille. |
||
1257 | * |
||
1258 | * @param string|null $codeFamille The code famille. |
||
1259 | * @return Fournisseurs Returns this Fournisseurs. |
||
1260 | */ |
||
1261 | public function setCodeFamille(?string $codeFamille): Fournisseurs { |
||
1265 | |||
1266 | /** |
||
1267 | * Set the code imputation analytique. |
||
1268 | * |
||
1269 | * @param string|null $codeImputationAnalytique The code imputation analytique. |
||
1270 | * @return Fournisseurs Returns this Fournisseurs. |
||
1271 | */ |
||
1272 | public function setCodeImputationAnalytique(?string $codeImputationAnalytique): Fournisseurs { |
||
1276 | |||
1277 | /** |
||
1278 | * Set the code langue designation article. |
||
1279 | * |
||
1280 | * @param string|null $codeLangueDesignationArticle The code langue designation article. |
||
1281 | * @return Fournisseurs Returns this Fournisseurs. |
||
1282 | */ |
||
1283 | public function setCodeLangueDesignationArticle(?string $codeLangueDesignationArticle): Fournisseurs { |
||
1287 | |||
1288 | /** |
||
1289 | * Set the code officiel commune. |
||
1290 | * |
||
1291 | * @param string|null $codeOfficielCommune The code officiel commune. |
||
1292 | * @return Fournisseurs Returns this Fournisseurs. |
||
1293 | */ |
||
1294 | public function setCodeOfficielCommune(?string $codeOfficielCommune): Fournisseurs { |
||
1298 | |||
1299 | /** |
||
1300 | * Set the code pays. |
||
1301 | * |
||
1302 | * @param string|null $codePays The code pays. |
||
1303 | * @return Fournisseurs Returns this Fournisseurs. |
||
1304 | */ |
||
1305 | public function setCodePays(?string $codePays): Fournisseurs { |
||
1309 | |||
1310 | /** |
||
1311 | * Set the code postal. |
||
1312 | * |
||
1313 | * @param string|null $codePostal The code postal. |
||
1314 | * @return Fournisseurs Returns this Fournisseurs. |
||
1315 | */ |
||
1316 | public function setCodePostal(?string $codePostal): Fournisseurs { |
||
1320 | |||
1321 | /** |
||
1322 | * Set the code reglement. |
||
1323 | * |
||
1324 | * @param string|null $codeReglement The code reglement. |
||
1325 | * @return Fournisseurs Returns this Fournisseurs. |
||
1326 | */ |
||
1327 | public function setCodeReglement(?string $codeReglement): Fournisseurs { |
||
1331 | |||
1332 | /** |
||
1333 | * Set the code sous famille. |
||
1334 | * |
||
1335 | * @param string|null $codeSousFamille The code sous famille. |
||
1336 | * @return Fournisseurs Returns this Fournisseurs. |
||
1337 | */ |
||
1338 | public function setCodeSousFamille(?string $codeSousFamille): Fournisseurs { |
||
1342 | |||
1343 | /** |
||
1344 | * Set the code tva. |
||
1345 | * |
||
1346 | * @param string|null $codeTva The code tva. |
||
1347 | * @return Fournisseurs Returns this Fournisseurs. |
||
1348 | */ |
||
1349 | public function setCodeTva(?string $codeTva): Fournisseurs { |
||
1353 | |||
1354 | /** |
||
1355 | * Set the code tva1. |
||
1356 | * |
||
1357 | * @param string|null $codeTva1 The code tva1. |
||
1358 | * @return Fournisseurs Returns this Fournisseurs. |
||
1359 | */ |
||
1360 | public function setCodeTva1(?string $codeTva1): Fournisseurs { |
||
1364 | |||
1365 | /** |
||
1366 | * Set the code tva2. |
||
1367 | * |
||
1368 | * @param string|null $codeTva2 The code tva2. |
||
1369 | * @return Fournisseurs Returns this Fournisseurs. |
||
1370 | */ |
||
1371 | public function setCodeTva2(?string $codeTva2): Fournisseurs { |
||
1375 | |||
1376 | /** |
||
1377 | * Set the code ventil compta. |
||
1378 | * |
||
1379 | * @param string|null $codeVentilCompta The code ventil compta. |
||
1380 | * @return Fournisseurs Returns this Fournisseurs. |
||
1381 | */ |
||
1382 | public function setCodeVentilCompta(?string $codeVentilCompta): Fournisseurs { |
||
1386 | |||
1387 | /** |
||
1388 | * Set the collectif. |
||
1389 | * |
||
1390 | * @param string|null $collectif The collectif. |
||
1391 | * @return Fournisseurs Returns this Fournisseurs. |
||
1392 | */ |
||
1393 | public function setCollectif(?string $collectif): Fournisseurs { |
||
1397 | |||
1398 | /** |
||
1399 | * Set the commentaires. |
||
1400 | * |
||
1401 | * @param string|null $commentaires The commentaires. |
||
1402 | * @return Fournisseurs Returns this Fournisseurs. |
||
1403 | */ |
||
1404 | public function setCommentaires(?string $commentaires): Fournisseurs { |
||
1408 | |||
1409 | /** |
||
1410 | * Set the complement. |
||
1411 | * |
||
1412 | * @param string|null $complement The complement. |
||
1413 | * @return Fournisseurs Returns this Fournisseurs. |
||
1414 | */ |
||
1415 | public function setComplement(?string $complement): Fournisseurs { |
||
1419 | |||
1420 | /** |
||
1421 | * Set the date creation. |
||
1422 | * |
||
1423 | * @param DateTime|null $dateCreation The date creation. |
||
1424 | * @return Fournisseurs Returns this Fournisseurs. |
||
1425 | */ |
||
1426 | public function setDateCreation(?DateTime $dateCreation): Fournisseurs { |
||
1430 | |||
1431 | /** |
||
1432 | * Set the date modification. |
||
1433 | * |
||
1434 | * @param DateTime|null $dateModification The date modification. |
||
1435 | * @return Fournisseurs Returns this Fournisseurs. |
||
1436 | */ |
||
1437 | public function setDateModification(?DateTime $dateModification): Fournisseurs { |
||
1441 | |||
1442 | /** |
||
1443 | * Set the delai le. |
||
1444 | * |
||
1445 | * @param int|null $delaiLe The delai le. |
||
1446 | * @return Fournisseurs Returns this Fournisseurs. |
||
1447 | */ |
||
1448 | public function setDelaiLe(?int $delaiLe): Fournisseurs { |
||
1452 | |||
1453 | /** |
||
1454 | * Set the delai nombre. |
||
1455 | * |
||
1456 | * @param int|null $delaiNombre The delai nombre. |
||
1457 | * @return Fournisseurs Returns this Fournisseurs. |
||
1458 | */ |
||
1459 | public function setDelaiNombre(?int $delaiNombre): Fournisseurs { |
||
1463 | |||
1464 | /** |
||
1465 | * Set the delai type. |
||
1466 | * |
||
1467 | * @param int|null $delaiType The delai type. |
||
1468 | * @return Fournisseurs Returns this Fournisseurs. |
||
1469 | */ |
||
1470 | public function setDelaiType(?int $delaiType): Fournisseurs { |
||
1474 | |||
1475 | /** |
||
1476 | * Set the domiciliation bancaire1. |
||
1477 | * |
||
1478 | * @param string|null $domiciliationBancaire1 The domiciliation bancaire1. |
||
1479 | * @return Fournisseurs Returns this Fournisseurs. |
||
1480 | */ |
||
1481 | public function setDomiciliationBancaire1(?string $domiciliationBancaire1): Fournisseurs { |
||
1485 | |||
1486 | /** |
||
1487 | * Set the domiciliation bancaire2. |
||
1488 | * |
||
1489 | * @param string|null $domiciliationBancaire2 The domiciliation bancaire2. |
||
1490 | * @return Fournisseurs Returns this Fournisseurs. |
||
1491 | */ |
||
1492 | public function setDomiciliationBancaire2(?string $domiciliationBancaire2): Fournisseurs { |
||
1496 | |||
1497 | /** |
||
1498 | * Set the email. |
||
1499 | * |
||
1500 | * @param string|null $email The email. |
||
1501 | * @return Fournisseurs Returns this Fournisseurs. |
||
1502 | */ |
||
1503 | public function setEmail(?string $email): Fournisseurs { |
||
1507 | |||
1508 | /** |
||
1509 | * Set the facture euros. |
||
1510 | * |
||
1511 | * @param bool|null $factureEuros The facture euros. |
||
1512 | * @return Fournisseurs Returns this Fournisseurs. |
||
1513 | */ |
||
1514 | public function setFactureEuros(?bool $factureEuros): Fournisseurs { |
||
1518 | |||
1519 | /** |
||
1520 | * Set the fax. |
||
1521 | * |
||
1522 | * @param string|null $fax The fax. |
||
1523 | * @return Fournisseurs Returns this Fournisseurs. |
||
1524 | */ |
||
1525 | public function setFax(?string $fax): Fournisseurs { |
||
1529 | |||
1530 | /** |
||
1531 | * Set the frais fixes1. |
||
1532 | * |
||
1533 | * @param float|null $fraisFixes1 The frais fixes1. |
||
1534 | * @return Fournisseurs Returns this Fournisseurs. |
||
1535 | */ |
||
1536 | public function setFraisFixes1(?float $fraisFixes1): Fournisseurs { |
||
1540 | |||
1541 | /** |
||
1542 | * Set the frais fixes2. |
||
1543 | * |
||
1544 | * @param float|null $fraisFixes2 The frais fixes2. |
||
1545 | * @return Fournisseurs Returns this Fournisseurs. |
||
1546 | */ |
||
1547 | public function setFraisFixes2(?float $fraisFixes2): Fournisseurs { |
||
1551 | |||
1552 | /** |
||
1553 | * Set the frais fixes3. |
||
1554 | * |
||
1555 | * @param float|null $fraisFixes3 The frais fixes3. |
||
1556 | * @return Fournisseurs Returns this Fournisseurs. |
||
1557 | */ |
||
1558 | public function setFraisFixes3(?float $fraisFixes3): Fournisseurs { |
||
1562 | |||
1563 | /** |
||
1564 | * Set the ident tva. |
||
1565 | * |
||
1566 | * @param string|null $identTva The ident tva. |
||
1567 | * @return Fournisseurs Returns this Fournisseurs. |
||
1568 | */ |
||
1569 | public function setIdentTva(?string $identTva): Fournisseurs { |
||
1573 | |||
1574 | /** |
||
1575 | * Set the montant acompte. |
||
1576 | * |
||
1577 | * @param float|null $montantAcompte The montant acompte. |
||
1578 | * @return Fournisseurs Returns this Fournisseurs. |
||
1579 | */ |
||
1580 | public function setMontantAcompte(?float $montantAcompte): Fournisseurs { |
||
1584 | |||
1585 | /** |
||
1586 | * Set the nb colis. |
||
1587 | * |
||
1588 | * @param int|null $nbColis The nb colis. |
||
1589 | * @return Fournisseurs Returns this Fournisseurs. |
||
1590 | */ |
||
1591 | public function setNbColis(?int $nbColis): Fournisseurs { |
||
1595 | |||
1596 | /** |
||
1597 | * Set the nom. |
||
1598 | * |
||
1599 | * @param string|null $nom The nom. |
||
1600 | * @return Fournisseurs Returns this Fournisseurs. |
||
1601 | */ |
||
1602 | public function setNom(?string $nom): Fournisseurs { |
||
1606 | |||
1607 | /** |
||
1608 | * Set the nom responsable. |
||
1609 | * |
||
1610 | * @param string|null $nomResponsable The nom responsable. |
||
1611 | * @return Fournisseurs Returns this Fournisseurs. |
||
1612 | */ |
||
1613 | public function setNomResponsable(?string $nomResponsable): Fournisseurs { |
||
1617 | |||
1618 | /** |
||
1619 | * Set the nom suite. |
||
1620 | * |
||
1621 | * @param string|null $nomSuite The nom suite. |
||
1622 | * @return Fournisseurs Returns this Fournisseurs. |
||
1623 | */ |
||
1624 | public function setNomSuite(?string $nomSuite): Fournisseurs { |
||
1628 | |||
1629 | /** |
||
1630 | * Set the nom ville. |
||
1631 | * |
||
1632 | * @param string|null $nomVille The nom ville. |
||
1633 | * @return Fournisseurs Returns this Fournisseurs. |
||
1634 | */ |
||
1635 | public function setNomVille(?string $nomVille): Fournisseurs { |
||
1639 | |||
1640 | /** |
||
1641 | * Set the nom voie. |
||
1642 | * |
||
1643 | * @param string|null $nomVoie The nom voie. |
||
1644 | * @return Fournisseurs Returns this Fournisseurs. |
||
1645 | */ |
||
1646 | public function setNomVoie(?string $nomVoie): Fournisseurs { |
||
1650 | |||
1651 | /** |
||
1652 | * Set the nombre echeances. |
||
1653 | * |
||
1654 | * @param int|null $nombreEcheances The nombre echeances. |
||
1655 | * @return Fournisseurs Returns this Fournisseurs. |
||
1656 | */ |
||
1657 | public function setNombreEcheances(?int $nombreEcheances): Fournisseurs { |
||
1661 | |||
1662 | /** |
||
1663 | * Set the num voie. |
||
1664 | * |
||
1665 | * @param string|null $numVoie The num voie. |
||
1666 | * @return Fournisseurs Returns this Fournisseurs. |
||
1667 | */ |
||
1668 | public function setNumVoie(?string $numVoie): Fournisseurs { |
||
1672 | |||
1673 | /** |
||
1674 | * Set the numero compte. |
||
1675 | * |
||
1676 | * @param string|null $numeroCompte The numero compte. |
||
1677 | * @return Fournisseurs Returns this Fournisseurs. |
||
1678 | */ |
||
1679 | public function setNumeroCompte(?string $numeroCompte): Fournisseurs { |
||
1683 | |||
1684 | /** |
||
1685 | * Set the paiement depart le. |
||
1686 | * |
||
1687 | * @param int|null $paiementDepartLe The paiement depart le. |
||
1688 | * @return Fournisseurs Returns this Fournisseurs. |
||
1689 | */ |
||
1690 | public function setPaiementDepartLe(?int $paiementDepartLe): Fournisseurs { |
||
1694 | |||
1695 | /** |
||
1696 | * Set the paiement le. |
||
1697 | * |
||
1698 | * @param int|null $paiementLe The paiement le. |
||
1699 | * @return Fournisseurs Returns this Fournisseurs. |
||
1700 | */ |
||
1701 | public function setPaiementLe(?int $paiementLe): Fournisseurs { |
||
1705 | |||
1706 | /** |
||
1707 | * Set the paiement nombre de jours. |
||
1708 | * |
||
1709 | * @param int|null $paiementNombreDeJours The paiement nombre de jours. |
||
1710 | * @return Fournisseurs Returns this Fournisseurs. |
||
1711 | */ |
||
1712 | public function setPaiementNombreDeJours(?int $paiementNombreDeJours): Fournisseurs { |
||
1716 | |||
1717 | /** |
||
1718 | * Set the poids. |
||
1719 | * |
||
1720 | * @param float|null $poids The poids. |
||
1721 | * @return Fournisseurs Returns this Fournisseurs. |
||
1722 | */ |
||
1723 | public function setPoids(?float $poids): Fournisseurs { |
||
1727 | |||
1728 | /** |
||
1729 | * Set the portable1. |
||
1730 | * |
||
1731 | * @param string|null $portable1 The portable1. |
||
1732 | * @return Fournisseurs Returns this Fournisseurs. |
||
1733 | */ |
||
1734 | public function setPortable1(?string $portable1): Fournisseurs { |
||
1738 | |||
1739 | /** |
||
1740 | * Set the portable2. |
||
1741 | * |
||
1742 | * @param string|null $portable2 The portable2. |
||
1743 | * @return Fournisseurs Returns this Fournisseurs. |
||
1744 | */ |
||
1745 | public function setPortable2(?string $portable2): Fournisseurs { |
||
1749 | |||
1750 | /** |
||
1751 | * Set the rib. |
||
1752 | * |
||
1753 | * @param string|null $rib The rib. |
||
1754 | * @return Fournisseurs Returns this Fournisseurs. |
||
1755 | */ |
||
1756 | public function setRib(?string $rib): Fournisseurs { |
||
1760 | |||
1761 | /** |
||
1762 | * Set the rc. |
||
1763 | * |
||
1764 | * @param string|null $rc The rc. |
||
1765 | * @return Fournisseurs Returns this Fournisseurs. |
||
1766 | */ |
||
1767 | public function setRc(?string $rc): Fournisseurs { |
||
1771 | |||
1772 | /** |
||
1773 | * Set the reference client. |
||
1774 | * |
||
1775 | * @param string|null $referenceClient The reference client. |
||
1776 | * @return Fournisseurs Returns this Fournisseurs. |
||
1777 | */ |
||
1778 | public function setReferenceClient(?string $referenceClient): Fournisseurs { |
||
1782 | |||
1783 | /** |
||
1784 | * Set the remise ligne1. |
||
1785 | * |
||
1786 | * @param float|null $remiseLigne1 The remise ligne1. |
||
1787 | * @return Fournisseurs Returns this Fournisseurs. |
||
1788 | */ |
||
1789 | public function setRemiseLigne1(?float $remiseLigne1): Fournisseurs { |
||
1793 | |||
1794 | /** |
||
1795 | * Set the remise ligne2. |
||
1796 | * |
||
1797 | * @param float|null $remiseLigne2 The remise ligne2. |
||
1798 | * @return Fournisseurs Returns this Fournisseurs. |
||
1799 | */ |
||
1800 | public function setRemiseLigne2(?float $remiseLigne2): Fournisseurs { |
||
1804 | |||
1805 | /** |
||
1806 | * Set the remise ligne3. |
||
1807 | * |
||
1808 | * @param float|null $remiseLigne3 The remise ligne3. |
||
1809 | * @return Fournisseurs Returns this Fournisseurs. |
||
1810 | */ |
||
1811 | public function setRemiseLigne3(?float $remiseLigne3): Fournisseurs { |
||
1815 | |||
1816 | /** |
||
1817 | * Set the remise pied. |
||
1818 | * |
||
1819 | * @param float|null $remisePied The remise pied. |
||
1820 | * @return Fournisseurs Returns this Fournisseurs. |
||
1821 | */ |
||
1822 | public function setRemisePied(?float $remisePied): Fournisseurs { |
||
1826 | |||
1827 | /** |
||
1828 | * Set the remise pied2. |
||
1829 | * |
||
1830 | * @param float|null $remisePied2 The remise pied2. |
||
1831 | * @return Fournisseurs Returns this Fournisseurs. |
||
1832 | */ |
||
1833 | public function setRemisePied2(?float $remisePied2): Fournisseurs { |
||
1837 | |||
1838 | /** |
||
1839 | * Set the remise pied3. |
||
1840 | * |
||
1841 | * @param float|null $remisePied3 The remise pied3. |
||
1842 | * @return Fournisseurs Returns this Fournisseurs. |
||
1843 | */ |
||
1844 | public function setRemisePied3(?float $remisePied3): Fournisseurs { |
||
1848 | |||
1849 | /** |
||
1850 | * Set the siret. |
||
1851 | * |
||
1852 | * @param string|null $siret The siret. |
||
1853 | * @return Fournisseurs Returns this Fournisseurs. |
||
1854 | */ |
||
1855 | public function setSiret(?string $siret): Fournisseurs { |
||
1859 | |||
1860 | /** |
||
1861 | * Set the soumis taxe1. |
||
1862 | * |
||
1863 | * @param bool|null $soumisTaxe1 The soumis taxe1. |
||
1864 | * @return Fournisseurs Returns this Fournisseurs. |
||
1865 | */ |
||
1866 | public function setSoumisTaxe1(?bool $soumisTaxe1): Fournisseurs { |
||
1870 | |||
1871 | /** |
||
1872 | * Set the soumis taxe2. |
||
1873 | * |
||
1874 | * @param bool|null $soumisTaxe2 The soumis taxe2. |
||
1875 | * @return Fournisseurs Returns this Fournisseurs. |
||
1876 | */ |
||
1877 | public function setSoumisTaxe2(?bool $soumisTaxe2): Fournisseurs { |
||
1881 | |||
1882 | /** |
||
1883 | * Set the soumis taxe3. |
||
1884 | * |
||
1885 | * @param bool|null $soumisTaxe3 The soumis taxe3. |
||
1886 | * @return Fournisseurs Returns this Fournisseurs. |
||
1887 | */ |
||
1888 | public function setSoumisTaxe3(?bool $soumisTaxe3): Fournisseurs { |
||
1892 | |||
1893 | /** |
||
1894 | * Set the tva cle. |
||
1895 | * |
||
1896 | * @param string|null $tvaCle The tva cle. |
||
1897 | * @return Fournisseurs Returns this Fournisseurs. |
||
1898 | */ |
||
1899 | public function setTvaCle(?string $tvaCle): Fournisseurs { |
||
1903 | |||
1904 | /** |
||
1905 | * Set the tva code dossier. |
||
1906 | * |
||
1907 | * @param string|null $tvaCodeDossier The tva code dossier. |
||
1908 | * @return Fournisseurs Returns this Fournisseurs. |
||
1909 | */ |
||
1910 | public function setTvaCodeDossier(?string $tvaCodeDossier): Fournisseurs { |
||
1914 | |||
1915 | /** |
||
1916 | * Set the tva code recette. |
||
1917 | * |
||
1918 | * @param string|null $tvaCodeRecette The tva code recette. |
||
1919 | * @return Fournisseurs Returns this Fournisseurs. |
||
1920 | */ |
||
1921 | public function setTvaCodeRecette(?string $tvaCodeRecette): Fournisseurs { |
||
1925 | |||
1926 | /** |
||
1927 | * Set the tva regime. |
||
1928 | * |
||
1929 | * @param int|null $tvaRegime The tva regime. |
||
1930 | * @return Fournisseurs Returns this Fournisseurs. |
||
1931 | */ |
||
1932 | public function setTvaRegime(?int $tvaRegime): Fournisseurs { |
||
1936 | |||
1937 | /** |
||
1938 | * Set the tel1. |
||
1939 | * |
||
1940 | * @param string|null $tel1 The tel1. |
||
1941 | * @return Fournisseurs Returns this Fournisseurs. |
||
1942 | */ |
||
1943 | public function setTel1(?string $tel1): Fournisseurs { |
||
1947 | |||
1948 | /** |
||
1949 | * Set the tel2. |
||
1950 | * |
||
1951 | * @param string|null $tel2 The tel2. |
||
1952 | * @return Fournisseurs Returns this Fournisseurs. |
||
1953 | */ |
||
1954 | public function setTel2(?string $tel2): Fournisseurs { |
||
1958 | |||
1959 | /** |
||
1960 | * Set the tel voiture. |
||
1961 | * |
||
1962 | * @param string|null $telVoiture The tel voiture. |
||
1963 | * @return Fournisseurs Returns this Fournisseurs. |
||
1964 | */ |
||
1965 | public function setTelVoiture(?string $telVoiture): Fournisseurs { |
||
1969 | |||
1970 | /** |
||
1971 | * Set the telex. |
||
1972 | * |
||
1973 | * @param string|null $telex The telex. |
||
1974 | * @return Fournisseurs Returns this Fournisseurs. |
||
1975 | */ |
||
1976 | public function setTelex(?string $telex): Fournisseurs { |
||
1980 | |||
1981 | /** |
||
1982 | * Set the transporteur. |
||
1983 | * |
||
1984 | * @param string|null $transporteur The transporteur. |
||
1985 | * @return Fournisseurs Returns this Fournisseurs. |
||
1986 | */ |
||
1987 | public function setTransporteur(?string $transporteur): Fournisseurs { |
||
1991 | |||
1992 | /** |
||
1993 | * Set the tx escompte achat. |
||
1994 | * |
||
1995 | * @param float|null $txEscompteAchat The tx escompte achat. |
||
1996 | * @return Fournisseurs Returns this Fournisseurs. |
||
1997 | */ |
||
1998 | public function setTxEscompteAchat(?float $txEscompteAchat): Fournisseurs { |
||
2002 | } |
||
2003 |