Complex classes like Constantes 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 Constantes, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
22 | class Constantes { |
||
23 | |||
24 | /** |
||
25 | * Acces autorise bons travaux. |
||
26 | * |
||
27 | * @var bool|null |
||
28 | */ |
||
29 | private $accesAutoriseBonsTravaux; |
||
30 | |||
31 | /** |
||
32 | * Acces autorise plan facturation. |
||
33 | * |
||
34 | * @var bool|null |
||
35 | */ |
||
36 | private $accesAutorisePlanFacturation; |
||
37 | |||
38 | /** |
||
39 | * Acces autorise plan tache. |
||
40 | * |
||
41 | * @var bool|null |
||
42 | */ |
||
43 | private $accesAutorisePlanTache; |
||
44 | |||
45 | /** |
||
46 | * Acces docs cab. |
||
47 | * |
||
48 | * @var bool|null |
||
49 | */ |
||
50 | private $accesDocsCab; |
||
51 | |||
52 | /** |
||
53 | * Acces dossier cpta. |
||
54 | * |
||
55 | * @var string|null |
||
56 | */ |
||
57 | private $accesDossierCpta; |
||
58 | |||
59 | /** |
||
60 | * Acces dossier paie. |
||
61 | * |
||
62 | * @var string|null |
||
63 | */ |
||
64 | private $accesDossierPaie; |
||
65 | |||
66 | /** |
||
67 | * Acces stat cab. |
||
68 | * |
||
69 | * @var bool|null |
||
70 | */ |
||
71 | private $accesStatCab; |
||
72 | |||
73 | /** |
||
74 | * Activation conf cmav cli. |
||
75 | * |
||
76 | * @var bool|null |
||
77 | */ |
||
78 | private $activationConfCmavCli; |
||
79 | |||
80 | /** |
||
81 | * Activation conf controle. |
||
82 | * |
||
83 | * @var bool|null |
||
84 | */ |
||
85 | private $activationConfControle; |
||
86 | |||
87 | /** |
||
88 | * Activation lst restri. |
||
89 | * |
||
90 | * @var bool|null |
||
91 | */ |
||
92 | private $activationLstRestri; |
||
93 | |||
94 | /** |
||
95 | * Activation niveau2. |
||
96 | * |
||
97 | * @var bool|null |
||
98 | */ |
||
99 | private $activationNiveau2; |
||
100 | |||
101 | /** |
||
102 | * Activation niveau3. |
||
103 | * |
||
104 | * @var bool|null |
||
105 | */ |
||
106 | private $activationNiveau3; |
||
107 | |||
108 | /** |
||
109 | * Affiche point. |
||
110 | * |
||
111 | * @var bool|null |
||
112 | */ |
||
113 | private $affichePoint; |
||
114 | |||
115 | /** |
||
116 | * Affiche semaine. |
||
117 | * |
||
118 | * @var bool|null |
||
119 | */ |
||
120 | private $afficheSemaine; |
||
121 | |||
122 | /** |
||
123 | * Annulation affaire. |
||
124 | * |
||
125 | * @var bool|null |
||
126 | */ |
||
127 | private $annulationAffaire; |
||
128 | |||
129 | /** |
||
130 | * Annulation article. |
||
131 | * |
||
132 | * @var bool|null |
||
133 | */ |
||
134 | private $annulationArticle; |
||
135 | |||
136 | /** |
||
137 | * Annulation bons travaux. |
||
138 | * |
||
139 | * @var bool|null |
||
140 | */ |
||
141 | private $annulationBonsTravaux; |
||
142 | |||
143 | /** |
||
144 | * Annulation chantier. |
||
145 | * |
||
146 | * @var bool|null |
||
147 | */ |
||
148 | private $annulationChantier; |
||
149 | |||
150 | /** |
||
151 | * Annulation client. |
||
152 | * |
||
153 | * @var bool|null |
||
154 | */ |
||
155 | private $annulationClient; |
||
156 | |||
157 | /** |
||
158 | * Annulation commission. |
||
159 | * |
||
160 | * @var bool|null |
||
161 | */ |
||
162 | private $annulationCommission; |
||
163 | |||
164 | /** |
||
165 | * Annulation dossier cpta. |
||
166 | * |
||
167 | * @var bool|null |
||
168 | */ |
||
169 | private $annulationDossierCpta; |
||
170 | |||
171 | /** |
||
172 | * Annulation dossier fact. |
||
173 | * |
||
174 | * @var bool|null |
||
175 | */ |
||
176 | private $annulationDossierFact; |
||
177 | |||
178 | /** |
||
179 | * Annulation dossier paie. |
||
180 | * |
||
181 | * @var bool|null |
||
182 | */ |
||
183 | private $annulationDossierPaie; |
||
184 | |||
185 | /** |
||
186 | * Annulation fournisseur. |
||
187 | * |
||
188 | * @var bool|null |
||
189 | */ |
||
190 | private $annulationFournisseur; |
||
191 | |||
192 | /** |
||
193 | * Annulation plan facturation. |
||
194 | * |
||
195 | * @var bool|null |
||
196 | */ |
||
197 | private $annulationPlanFacturation; |
||
198 | |||
199 | /** |
||
200 | * Annulation plan tache. |
||
201 | * |
||
202 | * @var bool|null |
||
203 | */ |
||
204 | private $annulationPlanTache; |
||
205 | |||
206 | /** |
||
207 | * Annulation tache. |
||
208 | * |
||
209 | * @var bool|null |
||
210 | */ |
||
211 | private $annulationTache; |
||
212 | |||
213 | /** |
||
214 | * Annulation tarif. |
||
215 | * |
||
216 | * @var bool|null |
||
217 | */ |
||
218 | private $annulationTarif; |
||
219 | |||
220 | /** |
||
221 | * Blocage ed cli. |
||
222 | * |
||
223 | * @var bool|null |
||
224 | */ |
||
225 | private $blocageEdCli; |
||
226 | |||
227 | /** |
||
228 | * Budget type saisie. |
||
229 | * |
||
230 | * @var int|null |
||
231 | */ |
||
232 | private $budgetTypeSaisie; |
||
233 | |||
234 | /** |
||
235 | * Champs critere1. |
||
236 | * |
||
237 | * @var string|null |
||
238 | */ |
||
239 | private $champsCritere1; |
||
240 | |||
241 | /** |
||
242 | * Champs critere10. |
||
243 | * |
||
244 | * @var string|null |
||
245 | */ |
||
246 | private $champsCritere10; |
||
247 | |||
248 | /** |
||
249 | * Champs critere2. |
||
250 | * |
||
251 | * @var string|null |
||
252 | */ |
||
253 | private $champsCritere2; |
||
254 | |||
255 | /** |
||
256 | * Champs critere3. |
||
257 | * |
||
258 | * @var string|null |
||
259 | */ |
||
260 | private $champsCritere3; |
||
261 | |||
262 | /** |
||
263 | * Champs critere4. |
||
264 | * |
||
265 | * @var string|null |
||
266 | */ |
||
267 | private $champsCritere4; |
||
268 | |||
269 | /** |
||
270 | * Champs critere5. |
||
271 | * |
||
272 | * @var string|null |
||
273 | */ |
||
274 | private $champsCritere5; |
||
275 | |||
276 | /** |
||
277 | * Champs critere6. |
||
278 | * |
||
279 | * @var string|null |
||
280 | */ |
||
281 | private $champsCritere6; |
||
282 | |||
283 | /** |
||
284 | * Champs critere7. |
||
285 | * |
||
286 | * @var string|null |
||
287 | */ |
||
288 | private $champsCritere7; |
||
289 | |||
290 | /** |
||
291 | * Champs critere8. |
||
292 | * |
||
293 | * @var string|null |
||
294 | */ |
||
295 | private $champsCritere8; |
||
296 | |||
297 | /** |
||
298 | * Champs critere9. |
||
299 | * |
||
300 | * @var string|null |
||
301 | */ |
||
302 | private $champsCritere9; |
||
303 | |||
304 | /** |
||
305 | * Champs critere affaire1. |
||
306 | * |
||
307 | * @var string|null |
||
308 | */ |
||
309 | private $champsCritereAffaire1; |
||
310 | |||
311 | /** |
||
312 | * Champs critere affaire10. |
||
313 | * |
||
314 | * @var string|null |
||
315 | */ |
||
316 | private $champsCritereAffaire10; |
||
317 | |||
318 | /** |
||
319 | * Champs critere affaire2. |
||
320 | * |
||
321 | * @var string|null |
||
322 | */ |
||
323 | private $champsCritereAffaire2; |
||
324 | |||
325 | /** |
||
326 | * Champs critere affaire3. |
||
327 | * |
||
328 | * @var string|null |
||
329 | */ |
||
330 | private $champsCritereAffaire3; |
||
331 | |||
332 | /** |
||
333 | * Champs critere affaire4. |
||
334 | * |
||
335 | * @var string|null |
||
336 | */ |
||
337 | private $champsCritereAffaire4; |
||
338 | |||
339 | /** |
||
340 | * Champs critere affaire5. |
||
341 | * |
||
342 | * @var string|null |
||
343 | */ |
||
344 | private $champsCritereAffaire5; |
||
345 | |||
346 | /** |
||
347 | * Champs critere affaire6. |
||
348 | * |
||
349 | * @var string|null |
||
350 | */ |
||
351 | private $champsCritereAffaire6; |
||
352 | |||
353 | /** |
||
354 | * Champs critere affaire7. |
||
355 | * |
||
356 | * @var string|null |
||
357 | */ |
||
358 | private $champsCritereAffaire7; |
||
359 | |||
360 | /** |
||
361 | * Champs critere affaire8. |
||
362 | * |
||
363 | * @var string|null |
||
364 | */ |
||
365 | private $champsCritereAffaire8; |
||
366 | |||
367 | /** |
||
368 | * Champs critere affaire9. |
||
369 | * |
||
370 | * @var string|null |
||
371 | */ |
||
372 | private $champsCritereAffaire9; |
||
373 | |||
374 | /** |
||
375 | * Champs critere article1. |
||
376 | * |
||
377 | * @var string|null |
||
378 | */ |
||
379 | private $champsCritereArticle1; |
||
380 | |||
381 | /** |
||
382 | * Champs critere article10. |
||
383 | * |
||
384 | * @var string|null |
||
385 | */ |
||
386 | private $champsCritereArticle10; |
||
387 | |||
388 | /** |
||
389 | * Champs critere article2. |
||
390 | * |
||
391 | * @var string|null |
||
392 | */ |
||
393 | private $champsCritereArticle2; |
||
394 | |||
395 | /** |
||
396 | * Champs critere article3. |
||
397 | * |
||
398 | * @var string|null |
||
399 | */ |
||
400 | private $champsCritereArticle3; |
||
401 | |||
402 | /** |
||
403 | * Champs critere article4. |
||
404 | * |
||
405 | * @var string|null |
||
406 | */ |
||
407 | private $champsCritereArticle4; |
||
408 | |||
409 | /** |
||
410 | * Champs critere article5. |
||
411 | * |
||
412 | * @var string|null |
||
413 | */ |
||
414 | private $champsCritereArticle5; |
||
415 | |||
416 | /** |
||
417 | * Champs critere article6. |
||
418 | * |
||
419 | * @var string|null |
||
420 | */ |
||
421 | private $champsCritereArticle6; |
||
422 | |||
423 | /** |
||
424 | * Champs critere article7. |
||
425 | * |
||
426 | * @var string|null |
||
427 | */ |
||
428 | private $champsCritereArticle7; |
||
429 | |||
430 | /** |
||
431 | * Champs critere article8. |
||
432 | * |
||
433 | * @var string|null |
||
434 | */ |
||
435 | private $champsCritereArticle8; |
||
436 | |||
437 | /** |
||
438 | * Champs critere article9. |
||
439 | * |
||
440 | * @var string|null |
||
441 | */ |
||
442 | private $champsCritereArticle9; |
||
443 | |||
444 | /** |
||
445 | * Champs critere ent piece1. |
||
446 | * |
||
447 | * @var string|null |
||
448 | */ |
||
449 | private $champsCritereEntPiece1; |
||
450 | |||
451 | /** |
||
452 | * Champs critere ent piece10. |
||
453 | * |
||
454 | * @var string|null |
||
455 | */ |
||
456 | private $champsCritereEntPiece10; |
||
457 | |||
458 | /** |
||
459 | * Champs critere ent piece2. |
||
460 | * |
||
461 | * @var string|null |
||
462 | */ |
||
463 | private $champsCritereEntPiece2; |
||
464 | |||
465 | /** |
||
466 | * Champs critere ent piece3. |
||
467 | * |
||
468 | * @var string|null |
||
469 | */ |
||
470 | private $champsCritereEntPiece3; |
||
471 | |||
472 | /** |
||
473 | * Champs critere ent piece4. |
||
474 | * |
||
475 | * @var string|null |
||
476 | */ |
||
477 | private $champsCritereEntPiece4; |
||
478 | |||
479 | /** |
||
480 | * Champs critere ent piece5. |
||
481 | * |
||
482 | * @var string|null |
||
483 | */ |
||
484 | private $champsCritereEntPiece5; |
||
485 | |||
486 | /** |
||
487 | * Champs critere ent piece6. |
||
488 | * |
||
489 | * @var string|null |
||
490 | */ |
||
491 | private $champsCritereEntPiece6; |
||
492 | |||
493 | /** |
||
494 | * Champs critere ent piece7. |
||
495 | * |
||
496 | * @var string|null |
||
497 | */ |
||
498 | private $champsCritereEntPiece7; |
||
499 | |||
500 | /** |
||
501 | * Champs critere ent piece8. |
||
502 | * |
||
503 | * @var string|null |
||
504 | */ |
||
505 | private $champsCritereEntPiece8; |
||
506 | |||
507 | /** |
||
508 | * Champs critere ent piece9. |
||
509 | * |
||
510 | * @var string|null |
||
511 | */ |
||
512 | private $champsCritereEntPiece9; |
||
513 | |||
514 | /** |
||
515 | * Chrono activation. |
||
516 | * |
||
517 | * @var bool|null |
||
518 | */ |
||
519 | private $chronoActivation; |
||
520 | |||
521 | /** |
||
522 | * Chrono prefixe. |
||
523 | * |
||
524 | * @var string|null |
||
525 | */ |
||
526 | private $chronoPrefixe; |
||
527 | |||
528 | /** |
||
529 | * Chrono prochain num. |
||
530 | * |
||
531 | * @var int|null |
||
532 | */ |
||
533 | private $chronoProchainNum; |
||
534 | |||
535 | /** |
||
536 | * Cle acces cn paie. |
||
537 | * |
||
538 | * @var string|null |
||
539 | */ |
||
540 | private $cleAccesCnPaie; |
||
541 | |||
542 | /** |
||
543 | * Cle acces fiche client. |
||
544 | * |
||
545 | * @var string|null |
||
546 | */ |
||
547 | private $cleAccesFicheClient; |
||
548 | |||
549 | /** |
||
550 | * Cle acces menus. |
||
551 | * |
||
552 | * @var string|null |
||
553 | */ |
||
554 | private $cleAccesMenus; |
||
555 | |||
556 | /** |
||
557 | * Cle acces param. |
||
558 | * |
||
559 | * @var string|null |
||
560 | */ |
||
561 | private $cleAccesParam; |
||
562 | |||
563 | /** |
||
564 | * Cle des etr communs. |
||
565 | * |
||
566 | * @var string|null |
||
567 | */ |
||
568 | private $cleDesEtrCommuns; |
||
569 | |||
570 | /** |
||
571 | * Cle jrn lib communs. |
||
572 | * |
||
573 | * @var string|null |
||
574 | */ |
||
575 | private $cleJrnLibCommuns; |
||
576 | |||
577 | /** |
||
578 | * Code emetteur. |
||
579 | * |
||
580 | * @var string|null |
||
581 | */ |
||
582 | private $codeEmetteur; |
||
583 | |||
584 | /** |
||
585 | * Code expert defaut. |
||
586 | * |
||
587 | * @var string|null |
||
588 | */ |
||
589 | private $codeExpertDefaut; |
||
590 | |||
591 | /** |
||
592 | * Code regroupement pre fact. |
||
593 | * |
||
594 | * @var string|null |
||
595 | */ |
||
596 | private $codeRegroupementPreFact; |
||
597 | |||
598 | /** |
||
599 | * Conversion pwd. |
||
600 | * |
||
601 | * @var bool|null |
||
602 | */ |
||
603 | private $conversionPwd; |
||
604 | |||
605 | /** |
||
606 | * Cpte collectif cli. |
||
607 | * |
||
608 | * @var string|null |
||
609 | */ |
||
610 | private $cpteCollectifCli; |
||
611 | |||
612 | /** |
||
613 | * Cpte collectif frn. |
||
614 | * |
||
615 | * @var string|null |
||
616 | */ |
||
617 | private $cpteCollectifFrn; |
||
618 | |||
619 | /** |
||
620 | * Creation affaire. |
||
621 | * |
||
622 | * @var bool|null |
||
623 | */ |
||
624 | private $creationAffaire; |
||
625 | |||
626 | /** |
||
627 | * Creation article. |
||
628 | * |
||
629 | * @var bool|null |
||
630 | */ |
||
631 | private $creationArticle; |
||
632 | |||
633 | /** |
||
634 | * Creation bons travaux. |
||
635 | * |
||
636 | * @var bool|null |
||
637 | */ |
||
638 | private $creationBonsTravaux; |
||
639 | |||
640 | /** |
||
641 | * Creation chantier. |
||
642 | * |
||
643 | * @var bool|null |
||
644 | */ |
||
645 | private $creationChantier; |
||
646 | |||
647 | /** |
||
648 | * Creation client. |
||
649 | * |
||
650 | * @var bool|null |
||
651 | */ |
||
652 | private $creationClient; |
||
653 | |||
654 | /** |
||
655 | * Creation commission. |
||
656 | * |
||
657 | * @var bool|null |
||
658 | */ |
||
659 | private $creationCommission; |
||
660 | |||
661 | /** |
||
662 | * Creation dossier cpta. |
||
663 | * |
||
664 | * @var bool|null |
||
665 | */ |
||
666 | private $creationDossierCpta; |
||
667 | |||
668 | /** |
||
669 | * Creation dossier fact. |
||
670 | * |
||
671 | * @var bool|null |
||
672 | */ |
||
673 | private $creationDossierFact; |
||
674 | |||
675 | /** |
||
676 | * Creation dossier paie. |
||
677 | * |
||
678 | * @var bool|null |
||
679 | */ |
||
680 | private $creationDossierPaie; |
||
681 | |||
682 | /** |
||
683 | * Creation fournisseur. |
||
684 | * |
||
685 | * @var bool|null |
||
686 | */ |
||
687 | private $creationFournisseur; |
||
688 | |||
689 | /** |
||
690 | * Creation plan facturation. |
||
691 | * |
||
692 | * @var bool|null |
||
693 | */ |
||
694 | private $creationPlanFacturation; |
||
695 | |||
696 | /** |
||
697 | * Creation plan tache. |
||
698 | * |
||
699 | * @var bool|null |
||
700 | */ |
||
701 | private $creationPlanTache; |
||
702 | |||
703 | /** |
||
704 | * Creation prospect. |
||
705 | * |
||
706 | * @var bool|null |
||
707 | */ |
||
708 | private $creationProspect; |
||
709 | |||
710 | /** |
||
711 | * Creation tache. |
||
712 | * |
||
713 | * @var bool|null |
||
714 | */ |
||
715 | private $creationTache; |
||
716 | |||
717 | /** |
||
718 | * Creation tarif. |
||
719 | * |
||
720 | * @var bool|null |
||
721 | */ |
||
722 | private $creationTarif; |
||
723 | |||
724 | /** |
||
725 | * Date cloture. |
||
726 | * |
||
727 | * @var DateTime|null |
||
728 | */ |
||
729 | private $dateCloture; |
||
730 | |||
731 | /** |
||
732 | * Dt dern modif conf zone. |
||
733 | * |
||
734 | * @var DateTime|null |
||
735 | */ |
||
736 | private $dtDernModifConfZone; |
||
737 | |||
738 | /** |
||
739 | * Ech aff en mt. |
||
740 | * |
||
741 | * @var bool|null |
||
742 | */ |
||
743 | private $echAffEnMt; |
||
744 | |||
745 | /** |
||
746 | * Fonctionnement cga. |
||
747 | * |
||
748 | * @var bool|null |
||
749 | */ |
||
750 | private $fonctionnementCga; |
||
751 | |||
752 | /** |
||
753 | * Heures trav1. |
||
754 | * |
||
755 | * @var float|null |
||
756 | */ |
||
757 | private $heuresTrav1; |
||
758 | |||
759 | /** |
||
760 | * Heures trav2. |
||
761 | * |
||
762 | * @var float|null |
||
763 | */ |
||
764 | private $heuresTrav2; |
||
765 | |||
766 | /** |
||
767 | * Heures trav3. |
||
768 | * |
||
769 | * @var float|null |
||
770 | */ |
||
771 | private $heuresTrav3; |
||
772 | |||
773 | /** |
||
774 | * Heures trav4. |
||
775 | * |
||
776 | * @var float|null |
||
777 | */ |
||
778 | private $heuresTrav4; |
||
779 | |||
780 | /** |
||
781 | * Increm auto. |
||
782 | * |
||
783 | * @var bool|null |
||
784 | */ |
||
785 | private $incremAuto; |
||
786 | |||
787 | /** |
||
788 | * Increm auto aff. |
||
789 | * |
||
790 | * @var bool|null |
||
791 | */ |
||
792 | private $incremAutoAff; |
||
793 | |||
794 | /** |
||
795 | * Increm auto frn. |
||
796 | * |
||
797 | * @var bool|null |
||
798 | */ |
||
799 | private $incremAutoFrn; |
||
800 | |||
801 | /** |
||
802 | * Increm cpte cli auto. |
||
803 | * |
||
804 | * @var bool|null |
||
805 | */ |
||
806 | private $incremCpteCliAuto; |
||
807 | |||
808 | /** |
||
809 | * Increm cpte frn auto. |
||
810 | * |
||
811 | * @var bool|null |
||
812 | */ |
||
813 | private $incremCpteFrnAuto; |
||
814 | |||
815 | /** |
||
816 | * Increment cpte cli. |
||
817 | * |
||
818 | * @var int|null |
||
819 | */ |
||
820 | private $incrementCpteCli; |
||
821 | |||
822 | /** |
||
823 | * Increment cpte frn. |
||
824 | * |
||
825 | * @var int|null |
||
826 | */ |
||
827 | private $incrementCpteFrn; |
||
828 | |||
829 | /** |
||
830 | * Liaison bu cpta. |
||
831 | * |
||
832 | * @var bool|null |
||
833 | */ |
||
834 | private $liaisonBuCpta; |
||
835 | |||
836 | /** |
||
837 | * Lib affectation1. |
||
838 | * |
||
839 | * @var string|null |
||
840 | */ |
||
841 | private $libAffectation1; |
||
842 | |||
843 | /** |
||
844 | * Lib affectation2. |
||
845 | * |
||
846 | * @var string|null |
||
847 | */ |
||
848 | private $libAffectation2; |
||
849 | |||
850 | /** |
||
851 | * Lib affectation3. |
||
852 | * |
||
853 | * @var string|null |
||
854 | */ |
||
855 | private $libAffectation3; |
||
856 | |||
857 | /** |
||
858 | * Lib affectation4. |
||
859 | * |
||
860 | * @var string|null |
||
861 | */ |
||
862 | private $libAffectation4; |
||
863 | |||
864 | /** |
||
865 | * Lib affectation5. |
||
866 | * |
||
867 | * @var string|null |
||
868 | */ |
||
869 | private $libAffectation5; |
||
870 | |||
871 | /** |
||
872 | * Lib affectation6. |
||
873 | * |
||
874 | * @var string|null |
||
875 | */ |
||
876 | private $libAffectation6; |
||
877 | |||
878 | /** |
||
879 | * Lib affectation7. |
||
880 | * |
||
881 | * @var string|null |
||
882 | */ |
||
883 | private $libAffectation7; |
||
884 | |||
885 | /** |
||
886 | * Lib critere1. |
||
887 | * |
||
888 | * @var string|null |
||
889 | */ |
||
890 | private $libCritere1; |
||
891 | |||
892 | /** |
||
893 | * Lib critere10. |
||
894 | * |
||
895 | * @var string|null |
||
896 | */ |
||
897 | private $libCritere10; |
||
898 | |||
899 | /** |
||
900 | * Lib critere2. |
||
901 | * |
||
902 | * @var string|null |
||
903 | */ |
||
904 | private $libCritere2; |
||
905 | |||
906 | /** |
||
907 | * Lib critere3. |
||
908 | * |
||
909 | * @var string|null |
||
910 | */ |
||
911 | private $libCritere3; |
||
912 | |||
913 | /** |
||
914 | * Lib critere4. |
||
915 | * |
||
916 | * @var string|null |
||
917 | */ |
||
918 | private $libCritere4; |
||
919 | |||
920 | /** |
||
921 | * Lib critere5. |
||
922 | * |
||
923 | * @var string|null |
||
924 | */ |
||
925 | private $libCritere5; |
||
926 | |||
927 | /** |
||
928 | * Lib critere6. |
||
929 | * |
||
930 | * @var string|null |
||
931 | */ |
||
932 | private $libCritere6; |
||
933 | |||
934 | /** |
||
935 | * Lib critere7. |
||
936 | * |
||
937 | * @var string|null |
||
938 | */ |
||
939 | private $libCritere7; |
||
940 | |||
941 | /** |
||
942 | * Lib critere8. |
||
943 | * |
||
944 | * @var string|null |
||
945 | */ |
||
946 | private $libCritere8; |
||
947 | |||
948 | /** |
||
949 | * Lib critere9. |
||
950 | * |
||
951 | * @var string|null |
||
952 | */ |
||
953 | private $libCritere9; |
||
954 | |||
955 | /** |
||
956 | * Lib critere affaire1. |
||
957 | * |
||
958 | * @var string|null |
||
959 | */ |
||
960 | private $libCritereAffaire1; |
||
961 | |||
962 | /** |
||
963 | * Lib critere affaire10. |
||
964 | * |
||
965 | * @var string|null |
||
966 | */ |
||
967 | private $libCritereAffaire10; |
||
968 | |||
969 | /** |
||
970 | * Lib critere affaire2. |
||
971 | * |
||
972 | * @var string|null |
||
973 | */ |
||
974 | private $libCritereAffaire2; |
||
975 | |||
976 | /** |
||
977 | * Lib critere affaire3. |
||
978 | * |
||
979 | * @var string|null |
||
980 | */ |
||
981 | private $libCritereAffaire3; |
||
982 | |||
983 | /** |
||
984 | * Lib critere affaire4. |
||
985 | * |
||
986 | * @var string|null |
||
987 | */ |
||
988 | private $libCritereAffaire4; |
||
989 | |||
990 | /** |
||
991 | * Lib critere affaire5. |
||
992 | * |
||
993 | * @var string|null |
||
994 | */ |
||
995 | private $libCritereAffaire5; |
||
996 | |||
997 | /** |
||
998 | * Lib critere affaire6. |
||
999 | * |
||
1000 | * @var string|null |
||
1001 | */ |
||
1002 | private $libCritereAffaire6; |
||
1003 | |||
1004 | /** |
||
1005 | * Lib critere affaire7. |
||
1006 | * |
||
1007 | * @var string|null |
||
1008 | */ |
||
1009 | private $libCritereAffaire7; |
||
1010 | |||
1011 | /** |
||
1012 | * Lib critere affaire8. |
||
1013 | * |
||
1014 | * @var string|null |
||
1015 | */ |
||
1016 | private $libCritereAffaire8; |
||
1017 | |||
1018 | /** |
||
1019 | * Lib critere affaire9. |
||
1020 | * |
||
1021 | * @var string|null |
||
1022 | */ |
||
1023 | private $libCritereAffaire9; |
||
1024 | |||
1025 | /** |
||
1026 | * Lib critere article1. |
||
1027 | * |
||
1028 | * @var string|null |
||
1029 | */ |
||
1030 | private $libCritereArticle1; |
||
1031 | |||
1032 | /** |
||
1033 | * Lib critere article10. |
||
1034 | * |
||
1035 | * @var string|null |
||
1036 | */ |
||
1037 | private $libCritereArticle10; |
||
1038 | |||
1039 | /** |
||
1040 | * Lib critere article2. |
||
1041 | * |
||
1042 | * @var string|null |
||
1043 | */ |
||
1044 | private $libCritereArticle2; |
||
1045 | |||
1046 | /** |
||
1047 | * Lib critere article3. |
||
1048 | * |
||
1049 | * @var string|null |
||
1050 | */ |
||
1051 | private $libCritereArticle3; |
||
1052 | |||
1053 | /** |
||
1054 | * Lib critere article4. |
||
1055 | * |
||
1056 | * @var string|null |
||
1057 | */ |
||
1058 | private $libCritereArticle4; |
||
1059 | |||
1060 | /** |
||
1061 | * Lib critere article5. |
||
1062 | * |
||
1063 | * @var string|null |
||
1064 | */ |
||
1065 | private $libCritereArticle5; |
||
1066 | |||
1067 | /** |
||
1068 | * Lib critere article6. |
||
1069 | * |
||
1070 | * @var string|null |
||
1071 | */ |
||
1072 | private $libCritereArticle6; |
||
1073 | |||
1074 | /** |
||
1075 | * Lib critere article7. |
||
1076 | * |
||
1077 | * @var string|null |
||
1078 | */ |
||
1079 | private $libCritereArticle7; |
||
1080 | |||
1081 | /** |
||
1082 | * Lib critere article8. |
||
1083 | * |
||
1084 | * @var string|null |
||
1085 | */ |
||
1086 | private $libCritereArticle8; |
||
1087 | |||
1088 | /** |
||
1089 | * Lib critere article9. |
||
1090 | * |
||
1091 | * @var string|null |
||
1092 | */ |
||
1093 | private $libCritereArticle9; |
||
1094 | |||
1095 | /** |
||
1096 | * Lib critere ent piece1. |
||
1097 | * |
||
1098 | * @var string|null |
||
1099 | */ |
||
1100 | private $libCritereEntPiece1; |
||
1101 | |||
1102 | /** |
||
1103 | * Lib critere ent piece10. |
||
1104 | * |
||
1105 | * @var string|null |
||
1106 | */ |
||
1107 | private $libCritereEntPiece10; |
||
1108 | |||
1109 | /** |
||
1110 | * Lib critere ent piece2. |
||
1111 | * |
||
1112 | * @var string|null |
||
1113 | */ |
||
1114 | private $libCritereEntPiece2; |
||
1115 | |||
1116 | /** |
||
1117 | * Lib critere ent piece3. |
||
1118 | * |
||
1119 | * @var string|null |
||
1120 | */ |
||
1121 | private $libCritereEntPiece3; |
||
1122 | |||
1123 | /** |
||
1124 | * Lib critere ent piece4. |
||
1125 | * |
||
1126 | * @var string|null |
||
1127 | */ |
||
1128 | private $libCritereEntPiece4; |
||
1129 | |||
1130 | /** |
||
1131 | * Lib critere ent piece5. |
||
1132 | * |
||
1133 | * @var string|null |
||
1134 | */ |
||
1135 | private $libCritereEntPiece5; |
||
1136 | |||
1137 | /** |
||
1138 | * Lib critere ent piece6. |
||
1139 | * |
||
1140 | * @var string|null |
||
1141 | */ |
||
1142 | private $libCritereEntPiece6; |
||
1143 | |||
1144 | /** |
||
1145 | * Lib critere ent piece7. |
||
1146 | * |
||
1147 | * @var string|null |
||
1148 | */ |
||
1149 | private $libCritereEntPiece7; |
||
1150 | |||
1151 | /** |
||
1152 | * Lib critere ent piece8. |
||
1153 | * |
||
1154 | * @var string|null |
||
1155 | */ |
||
1156 | private $libCritereEntPiece8; |
||
1157 | |||
1158 | /** |
||
1159 | * Lib critere ent piece9. |
||
1160 | * |
||
1161 | * @var string|null |
||
1162 | */ |
||
1163 | private $libCritereEntPiece9; |
||
1164 | |||
1165 | /** |
||
1166 | * Lib critere interloc. |
||
1167 | * |
||
1168 | * @var string|null |
||
1169 | */ |
||
1170 | private $libCritereInterloc; |
||
1171 | |||
1172 | /** |
||
1173 | * Lib critere interloc2. |
||
1174 | * |
||
1175 | * @var string|null |
||
1176 | */ |
||
1177 | private $libCritereInterloc2; |
||
1178 | |||
1179 | /** |
||
1180 | * Major heures trav1. |
||
1181 | * |
||
1182 | * @var float|null |
||
1183 | */ |
||
1184 | private $majorHeuresTrav1; |
||
1185 | |||
1186 | /** |
||
1187 | * Major heures trav2. |
||
1188 | * |
||
1189 | * @var float|null |
||
1190 | */ |
||
1191 | private $majorHeuresTrav2; |
||
1192 | |||
1193 | /** |
||
1194 | * Major heures trav3. |
||
1195 | * |
||
1196 | * @var float|null |
||
1197 | */ |
||
1198 | private $majorHeuresTrav3; |
||
1199 | |||
1200 | /** |
||
1201 | * Major heures trav4. |
||
1202 | * |
||
1203 | * @var float|null |
||
1204 | */ |
||
1205 | private $majorHeuresTrav4; |
||
1206 | |||
1207 | /** |
||
1208 | * Mnt ticket resto a. |
||
1209 | * |
||
1210 | * @var float|null |
||
1211 | */ |
||
1212 | private $mntTicketRestoA; |
||
1213 | |||
1214 | /** |
||
1215 | * Mnt ticket resto b. |
||
1216 | * |
||
1217 | * @var float|null |
||
1218 | */ |
||
1219 | private $mntTicketRestoB; |
||
1220 | |||
1221 | /** |
||
1222 | * Mnt ticket resto c. |
||
1223 | * |
||
1224 | * @var float|null |
||
1225 | */ |
||
1226 | private $mntTicketRestoC; |
||
1227 | |||
1228 | /** |
||
1229 | * Mnt ticket resto d. |
||
1230 | * |
||
1231 | * @var float|null |
||
1232 | */ |
||
1233 | private $mntTicketRestoD; |
||
1234 | |||
1235 | /** |
||
1236 | * Mnt ticket resto e. |
||
1237 | * |
||
1238 | * @var float|null |
||
1239 | */ |
||
1240 | private $mntTicketRestoE; |
||
1241 | |||
1242 | /** |
||
1243 | * Modif affaire. |
||
1244 | * |
||
1245 | * @var string|null |
||
1246 | */ |
||
1247 | private $modifAffaire; |
||
1248 | |||
1249 | /** |
||
1250 | * Modif article. |
||
1251 | * |
||
1252 | * @var string|null |
||
1253 | */ |
||
1254 | private $modifArticle; |
||
1255 | |||
1256 | /** |
||
1257 | * Modif bons travaux. |
||
1258 | * |
||
1259 | * @var string|null |
||
1260 | */ |
||
1261 | private $modifBonsTravaux; |
||
1262 | |||
1263 | /** |
||
1264 | * Modif chantier. |
||
1265 | * |
||
1266 | * @var string|null |
||
1267 | */ |
||
1268 | private $modifChantier; |
||
1269 | |||
1270 | /** |
||
1271 | * Modif client. |
||
1272 | * |
||
1273 | * @var string|null |
||
1274 | */ |
||
1275 | private $modifClient; |
||
1276 | |||
1277 | /** |
||
1278 | * Modif commission. |
||
1279 | * |
||
1280 | * @var string|null |
||
1281 | */ |
||
1282 | private $modifCommission; |
||
1283 | |||
1284 | /** |
||
1285 | * Modif dossier fact. |
||
1286 | * |
||
1287 | * @var string|null |
||
1288 | */ |
||
1289 | private $modifDossierFact; |
||
1290 | |||
1291 | /** |
||
1292 | * Modif fournisseur. |
||
1293 | * |
||
1294 | * @var string|null |
||
1295 | */ |
||
1296 | private $modifFournisseur; |
||
1297 | |||
1298 | /** |
||
1299 | * Modif plan facturation. |
||
1300 | * |
||
1301 | * @var string|null |
||
1302 | */ |
||
1303 | private $modifPlanFacturation; |
||
1304 | |||
1305 | /** |
||
1306 | * Modif plan tache. |
||
1307 | * |
||
1308 | * @var string|null |
||
1309 | */ |
||
1310 | private $modifPlanTache; |
||
1311 | |||
1312 | /** |
||
1313 | * Modif tache. |
||
1314 | * |
||
1315 | * @var string|null |
||
1316 | */ |
||
1317 | private $modifTache; |
||
1318 | |||
1319 | /** |
||
1320 | * Modif tarif. |
||
1321 | * |
||
1322 | * @var string|null |
||
1323 | */ |
||
1324 | private $modifTarif; |
||
1325 | |||
1326 | /** |
||
1327 | * Monnaie. |
||
1328 | * |
||
1329 | * @var string|null |
||
1330 | */ |
||
1331 | private $monnaie; |
||
1332 | |||
1333 | /** |
||
1334 | * Nb dec monnaie. |
||
1335 | * |
||
1336 | * @var int|null |
||
1337 | */ |
||
1338 | private $nbDecMonnaie; |
||
1339 | |||
1340 | /** |
||
1341 | * No doss cpta. |
||
1342 | * |
||
1343 | * @var string|null |
||
1344 | */ |
||
1345 | private $noDossCpta; |
||
1346 | |||
1347 | /** |
||
1348 | * No doss paie. |
||
1349 | * |
||
1350 | * @var string|null |
||
1351 | */ |
||
1352 | private $noDossPaie; |
||
1353 | |||
1354 | /** |
||
1355 | * Prefixe aff. |
||
1356 | * |
||
1357 | * @var string|null |
||
1358 | */ |
||
1359 | private $prefixeAff; |
||
1360 | |||
1361 | /** |
||
1362 | * Priorite saisie aff. |
||
1363 | * |
||
1364 | * @var int|null |
||
1365 | */ |
||
1366 | private $prioriteSaisieAff; |
||
1367 | |||
1368 | /** |
||
1369 | * Priorite saisie client. |
||
1370 | * |
||
1371 | * @var int|null |
||
1372 | */ |
||
1373 | private $prioriteSaisieClient; |
||
1374 | |||
1375 | /** |
||
1376 | * Priorite saisie frn. |
||
1377 | * |
||
1378 | * @var int|null |
||
1379 | */ |
||
1380 | private $prioriteSaisieFrn; |
||
1381 | |||
1382 | /** |
||
1383 | * Prochain cpte cli. |
||
1384 | * |
||
1385 | * @var string|null |
||
1386 | */ |
||
1387 | private $prochainCpteCli; |
||
1388 | |||
1389 | /** |
||
1390 | * Prochain cpte frn. |
||
1391 | * |
||
1392 | * @var string|null |
||
1393 | */ |
||
1394 | private $prochainCpteFrn; |
||
1395 | |||
1396 | /** |
||
1397 | * Prochain mois oblig. |
||
1398 | * |
||
1399 | * @var DateTime|null |
||
1400 | */ |
||
1401 | private $prochainMoisOblig; |
||
1402 | |||
1403 | /** |
||
1404 | * Prochain num aff. |
||
1405 | * |
||
1406 | * @var int|null |
||
1407 | */ |
||
1408 | private $prochainNumAff; |
||
1409 | |||
1410 | /** |
||
1411 | * Px km a. |
||
1412 | * |
||
1413 | * @var float|null |
||
1414 | */ |
||
1415 | private $pxKmA; |
||
1416 | |||
1417 | /** |
||
1418 | * Px km b. |
||
1419 | * |
||
1420 | * @var float|null |
||
1421 | */ |
||
1422 | private $pxKmB; |
||
1423 | |||
1424 | /** |
||
1425 | * Px km c. |
||
1426 | * |
||
1427 | * @var float|null |
||
1428 | */ |
||
1429 | private $pxKmC; |
||
1430 | |||
1431 | /** |
||
1432 | * Px km d. |
||
1433 | * |
||
1434 | * @var float|null |
||
1435 | */ |
||
1436 | private $pxKmD; |
||
1437 | |||
1438 | /** |
||
1439 | * Px km e. |
||
1440 | * |
||
1441 | * @var float|null |
||
1442 | */ |
||
1443 | private $pxKmE; |
||
1444 | |||
1445 | /** |
||
1446 | * Qet code collaborateur dest. |
||
1447 | * |
||
1448 | * @var string|null |
||
1449 | */ |
||
1450 | private $qetCodeCollaborateurDest; |
||
1451 | |||
1452 | /** |
||
1453 | * Qtel code mission. |
||
1454 | * |
||
1455 | * @var string|null |
||
1456 | */ |
||
1457 | private $qtelCodeMission; |
||
1458 | |||
1459 | /** |
||
1460 | * Qtel code tache. |
||
1461 | * |
||
1462 | * @var string|null |
||
1463 | */ |
||
1464 | private $qtelCodeTache; |
||
1465 | |||
1466 | /** |
||
1467 | * Qtel special. |
||
1468 | * |
||
1469 | * @var int|null |
||
1470 | */ |
||
1471 | private $qtelSpecial; |
||
1472 | |||
1473 | /** |
||
1474 | * Rac data cpta. |
||
1475 | * |
||
1476 | * @var string|null |
||
1477 | */ |
||
1478 | private $racDataCpta; |
||
1479 | |||
1480 | /** |
||
1481 | * Rac data paie. |
||
1482 | * |
||
1483 | * @var string|null |
||
1484 | */ |
||
1485 | private $racDataPaie; |
||
1486 | |||
1487 | /** |
||
1488 | * Radical compte cli. |
||
1489 | * |
||
1490 | * @var string|null |
||
1491 | */ |
||
1492 | private $radicalCompteCli; |
||
1493 | |||
1494 | /** |
||
1495 | * Radical compte frn. |
||
1496 | * |
||
1497 | * @var string|null |
||
1498 | */ |
||
1499 | private $radicalCompteFrn; |
||
1500 | |||
1501 | /** |
||
1502 | * Sais date fin. |
||
1503 | * |
||
1504 | * @var bool|null |
||
1505 | */ |
||
1506 | private $saisDateFin; |
||
1507 | |||
1508 | /** |
||
1509 | * Tdfc adhesion totale. |
||
1510 | * |
||
1511 | * @var bool|null |
||
1512 | */ |
||
1513 | private $tdfcAdhesionTotale; |
||
1514 | |||
1515 | /** |
||
1516 | * Tdfc emetteur. |
||
1517 | * |
||
1518 | * @var string|null |
||
1519 | */ |
||
1520 | private $tdfcEmetteur; |
||
1521 | |||
1522 | /** |
||
1523 | * Tdfc facturant. |
||
1524 | * |
||
1525 | * @var string|null |
||
1526 | */ |
||
1527 | private $tdfcFacturant; |
||
1528 | |||
1529 | /** |
||
1530 | * Tdfc info trans. |
||
1531 | * |
||
1532 | * @var string|null |
||
1533 | */ |
||
1534 | private $tdfcInfoTrans; |
||
1535 | |||
1536 | /** |
||
1537 | * Tp interdit creat millesime. |
||
1538 | * |
||
1539 | * @var bool|null |
||
1540 | */ |
||
1541 | private $tpInterditCreatMillesime; |
||
1542 | |||
1543 | /** |
||
1544 | * Tp interdit creat mission. |
||
1545 | * |
||
1546 | * @var bool|null |
||
1547 | */ |
||
1548 | private $tpInterditCreatMission; |
||
1549 | |||
1550 | /** |
||
1551 | * Tp pas clients sortis. |
||
1552 | * |
||
1553 | * @var bool|null |
||
1554 | */ |
||
1555 | private $tpPasClientsSortis; |
||
1556 | |||
1557 | /** |
||
1558 | * Tp pas intervenants. |
||
1559 | * |
||
1560 | * @var bool|null |
||
1561 | */ |
||
1562 | private $tpPasIntervenants; |
||
1563 | |||
1564 | /** |
||
1565 | * Tp prix invisible. |
||
1566 | * |
||
1567 | * @var bool|null |
||
1568 | */ |
||
1569 | private $tpPrixInvisible; |
||
1570 | |||
1571 | /** |
||
1572 | * Tp rempli pref auto. |
||
1573 | * |
||
1574 | * @var bool|null |
||
1575 | */ |
||
1576 | private $tpRempliPrefAuto; |
||
1577 | |||
1578 | /** |
||
1579 | * Tp saisie dos. |
||
1580 | * |
||
1581 | * @var bool|null |
||
1582 | */ |
||
1583 | private $tpSaisieDos; |
||
1584 | |||
1585 | /** |
||
1586 | * Tps passes interdit prix. |
||
1587 | * |
||
1588 | * @var bool|null |
||
1589 | */ |
||
1590 | private $tpsPassesInterditPrix; |
||
1591 | |||
1592 | /** |
||
1593 | * Constructor. |
||
1594 | */ |
||
1595 | public function __construct() { |
||
1598 | |||
1599 | /** |
||
1600 | * Get the acces autorise bons travaux. |
||
1601 | * |
||
1602 | * @return bool|null Returns the acces autorise bons travaux. |
||
1603 | */ |
||
1604 | public function getAccesAutoriseBonsTravaux(): ?bool { |
||
1607 | |||
1608 | /** |
||
1609 | * Get the acces autorise plan facturation. |
||
1610 | * |
||
1611 | * @return bool|null Returns the acces autorise plan facturation. |
||
1612 | */ |
||
1613 | public function getAccesAutorisePlanFacturation(): ?bool { |
||
1616 | |||
1617 | /** |
||
1618 | * Get the acces autorise plan tache. |
||
1619 | * |
||
1620 | * @return bool|null Returns the acces autorise plan tache. |
||
1621 | */ |
||
1622 | public function getAccesAutorisePlanTache(): ?bool { |
||
1625 | |||
1626 | /** |
||
1627 | * Get the acces docs cab. |
||
1628 | * |
||
1629 | * @return bool|null Returns the acces docs cab. |
||
1630 | */ |
||
1631 | public function getAccesDocsCab(): ?bool { |
||
1634 | |||
1635 | /** |
||
1636 | * Get the acces dossier cpta. |
||
1637 | * |
||
1638 | * @return string|null Returns the acces dossier cpta. |
||
1639 | */ |
||
1640 | public function getAccesDossierCpta(): ?string { |
||
1643 | |||
1644 | /** |
||
1645 | * Get the acces dossier paie. |
||
1646 | * |
||
1647 | * @return string|null Returns the acces dossier paie. |
||
1648 | */ |
||
1649 | public function getAccesDossierPaie(): ?string { |
||
1652 | |||
1653 | /** |
||
1654 | * Get the acces stat cab. |
||
1655 | * |
||
1656 | * @return bool|null Returns the acces stat cab. |
||
1657 | */ |
||
1658 | public function getAccesStatCab(): ?bool { |
||
1661 | |||
1662 | /** |
||
1663 | * Get the activation conf cmav cli. |
||
1664 | * |
||
1665 | * @return bool|null Returns the activation conf cmav cli. |
||
1666 | */ |
||
1667 | public function getActivationConfCmavCli(): ?bool { |
||
1670 | |||
1671 | /** |
||
1672 | * Get the activation conf controle. |
||
1673 | * |
||
1674 | * @return bool|null Returns the activation conf controle. |
||
1675 | */ |
||
1676 | public function getActivationConfControle(): ?bool { |
||
1679 | |||
1680 | /** |
||
1681 | * Get the activation lst restri. |
||
1682 | * |
||
1683 | * @return bool|null Returns the activation lst restri. |
||
1684 | */ |
||
1685 | public function getActivationLstRestri(): ?bool { |
||
1688 | |||
1689 | /** |
||
1690 | * Get the activation niveau2. |
||
1691 | * |
||
1692 | * @return bool|null Returns the activation niveau2. |
||
1693 | */ |
||
1694 | public function getActivationNiveau2(): ?bool { |
||
1697 | |||
1698 | /** |
||
1699 | * Get the activation niveau3. |
||
1700 | * |
||
1701 | * @return bool|null Returns the activation niveau3. |
||
1702 | */ |
||
1703 | public function getActivationNiveau3(): ?bool { |
||
1706 | |||
1707 | /** |
||
1708 | * Get the affiche point. |
||
1709 | * |
||
1710 | * @return bool|null Returns the affiche point. |
||
1711 | */ |
||
1712 | public function getAffichePoint(): ?bool { |
||
1715 | |||
1716 | /** |
||
1717 | * Get the affiche semaine. |
||
1718 | * |
||
1719 | * @return bool|null Returns the affiche semaine. |
||
1720 | */ |
||
1721 | public function getAfficheSemaine(): ?bool { |
||
1724 | |||
1725 | /** |
||
1726 | * Get the annulation affaire. |
||
1727 | * |
||
1728 | * @return bool|null Returns the annulation affaire. |
||
1729 | */ |
||
1730 | public function getAnnulationAffaire(): ?bool { |
||
1733 | |||
1734 | /** |
||
1735 | * Get the annulation article. |
||
1736 | * |
||
1737 | * @return bool|null Returns the annulation article. |
||
1738 | */ |
||
1739 | public function getAnnulationArticle(): ?bool { |
||
1742 | |||
1743 | /** |
||
1744 | * Get the annulation bons travaux. |
||
1745 | * |
||
1746 | * @return bool|null Returns the annulation bons travaux. |
||
1747 | */ |
||
1748 | public function getAnnulationBonsTravaux(): ?bool { |
||
1751 | |||
1752 | /** |
||
1753 | * Get the annulation chantier. |
||
1754 | * |
||
1755 | * @return bool|null Returns the annulation chantier. |
||
1756 | */ |
||
1757 | public function getAnnulationChantier(): ?bool { |
||
1760 | |||
1761 | /** |
||
1762 | * Get the annulation client. |
||
1763 | * |
||
1764 | * @return bool|null Returns the annulation client. |
||
1765 | */ |
||
1766 | public function getAnnulationClient(): ?bool { |
||
1769 | |||
1770 | /** |
||
1771 | * Get the annulation commission. |
||
1772 | * |
||
1773 | * @return bool|null Returns the annulation commission. |
||
1774 | */ |
||
1775 | public function getAnnulationCommission(): ?bool { |
||
1778 | |||
1779 | /** |
||
1780 | * Get the annulation dossier cpta. |
||
1781 | * |
||
1782 | * @return bool|null Returns the annulation dossier cpta. |
||
1783 | */ |
||
1784 | public function getAnnulationDossierCpta(): ?bool { |
||
1787 | |||
1788 | /** |
||
1789 | * Get the annulation dossier fact. |
||
1790 | * |
||
1791 | * @return bool|null Returns the annulation dossier fact. |
||
1792 | */ |
||
1793 | public function getAnnulationDossierFact(): ?bool { |
||
1796 | |||
1797 | /** |
||
1798 | * Get the annulation dossier paie. |
||
1799 | * |
||
1800 | * @return bool|null Returns the annulation dossier paie. |
||
1801 | */ |
||
1802 | public function getAnnulationDossierPaie(): ?bool { |
||
1805 | |||
1806 | /** |
||
1807 | * Get the annulation fournisseur. |
||
1808 | * |
||
1809 | * @return bool|null Returns the annulation fournisseur. |
||
1810 | */ |
||
1811 | public function getAnnulationFournisseur(): ?bool { |
||
1814 | |||
1815 | /** |
||
1816 | * Get the annulation plan facturation. |
||
1817 | * |
||
1818 | * @return bool|null Returns the annulation plan facturation. |
||
1819 | */ |
||
1820 | public function getAnnulationPlanFacturation(): ?bool { |
||
1823 | |||
1824 | /** |
||
1825 | * Get the annulation plan tache. |
||
1826 | * |
||
1827 | * @return bool|null Returns the annulation plan tache. |
||
1828 | */ |
||
1829 | public function getAnnulationPlanTache(): ?bool { |
||
1832 | |||
1833 | /** |
||
1834 | * Get the annulation tache. |
||
1835 | * |
||
1836 | * @return bool|null Returns the annulation tache. |
||
1837 | */ |
||
1838 | public function getAnnulationTache(): ?bool { |
||
1841 | |||
1842 | /** |
||
1843 | * Get the annulation tarif. |
||
1844 | * |
||
1845 | * @return bool|null Returns the annulation tarif. |
||
1846 | */ |
||
1847 | public function getAnnulationTarif(): ?bool { |
||
1850 | |||
1851 | /** |
||
1852 | * Get the blocage ed cli. |
||
1853 | * |
||
1854 | * @return bool|null Returns the blocage ed cli. |
||
1855 | */ |
||
1856 | public function getBlocageEdCli(): ?bool { |
||
1859 | |||
1860 | /** |
||
1861 | * Get the budget type saisie. |
||
1862 | * |
||
1863 | * @return int|null Returns the budget type saisie. |
||
1864 | */ |
||
1865 | public function getBudgetTypeSaisie(): ?int { |
||
1868 | |||
1869 | /** |
||
1870 | * Get the champs critere1. |
||
1871 | * |
||
1872 | * @return string|null Returns the champs critere1. |
||
1873 | */ |
||
1874 | public function getChampsCritere1(): ?string { |
||
1877 | |||
1878 | /** |
||
1879 | * Get the champs critere10. |
||
1880 | * |
||
1881 | * @return string|null Returns the champs critere10. |
||
1882 | */ |
||
1883 | public function getChampsCritere10(): ?string { |
||
1886 | |||
1887 | /** |
||
1888 | * Get the champs critere2. |
||
1889 | * |
||
1890 | * @return string|null Returns the champs critere2. |
||
1891 | */ |
||
1892 | public function getChampsCritere2(): ?string { |
||
1895 | |||
1896 | /** |
||
1897 | * Get the champs critere3. |
||
1898 | * |
||
1899 | * @return string|null Returns the champs critere3. |
||
1900 | */ |
||
1901 | public function getChampsCritere3(): ?string { |
||
1904 | |||
1905 | /** |
||
1906 | * Get the champs critere4. |
||
1907 | * |
||
1908 | * @return string|null Returns the champs critere4. |
||
1909 | */ |
||
1910 | public function getChampsCritere4(): ?string { |
||
1913 | |||
1914 | /** |
||
1915 | * Get the champs critere5. |
||
1916 | * |
||
1917 | * @return string|null Returns the champs critere5. |
||
1918 | */ |
||
1919 | public function getChampsCritere5(): ?string { |
||
1922 | |||
1923 | /** |
||
1924 | * Get the champs critere6. |
||
1925 | * |
||
1926 | * @return string|null Returns the champs critere6. |
||
1927 | */ |
||
1928 | public function getChampsCritere6(): ?string { |
||
1931 | |||
1932 | /** |
||
1933 | * Get the champs critere7. |
||
1934 | * |
||
1935 | * @return string|null Returns the champs critere7. |
||
1936 | */ |
||
1937 | public function getChampsCritere7(): ?string { |
||
1940 | |||
1941 | /** |
||
1942 | * Get the champs critere8. |
||
1943 | * |
||
1944 | * @return string|null Returns the champs critere8. |
||
1945 | */ |
||
1946 | public function getChampsCritere8(): ?string { |
||
1949 | |||
1950 | /** |
||
1951 | * Get the champs critere9. |
||
1952 | * |
||
1953 | * @return string|null Returns the champs critere9. |
||
1954 | */ |
||
1955 | public function getChampsCritere9(): ?string { |
||
1958 | |||
1959 | /** |
||
1960 | * Get the champs critere affaire1. |
||
1961 | * |
||
1962 | * @return string|null Returns the champs critere affaire1. |
||
1963 | */ |
||
1964 | public function getChampsCritereAffaire1(): ?string { |
||
1967 | |||
1968 | /** |
||
1969 | * Get the champs critere affaire10. |
||
1970 | * |
||
1971 | * @return string|null Returns the champs critere affaire10. |
||
1972 | */ |
||
1973 | public function getChampsCritereAffaire10(): ?string { |
||
1976 | |||
1977 | /** |
||
1978 | * Get the champs critere affaire2. |
||
1979 | * |
||
1980 | * @return string|null Returns the champs critere affaire2. |
||
1981 | */ |
||
1982 | public function getChampsCritereAffaire2(): ?string { |
||
1985 | |||
1986 | /** |
||
1987 | * Get the champs critere affaire3. |
||
1988 | * |
||
1989 | * @return string|null Returns the champs critere affaire3. |
||
1990 | */ |
||
1991 | public function getChampsCritereAffaire3(): ?string { |
||
1994 | |||
1995 | /** |
||
1996 | * Get the champs critere affaire4. |
||
1997 | * |
||
1998 | * @return string|null Returns the champs critere affaire4. |
||
1999 | */ |
||
2000 | public function getChampsCritereAffaire4(): ?string { |
||
2003 | |||
2004 | /** |
||
2005 | * Get the champs critere affaire5. |
||
2006 | * |
||
2007 | * @return string|null Returns the champs critere affaire5. |
||
2008 | */ |
||
2009 | public function getChampsCritereAffaire5(): ?string { |
||
2012 | |||
2013 | /** |
||
2014 | * Get the champs critere affaire6. |
||
2015 | * |
||
2016 | * @return string|null Returns the champs critere affaire6. |
||
2017 | */ |
||
2018 | public function getChampsCritereAffaire6(): ?string { |
||
2021 | |||
2022 | /** |
||
2023 | * Get the champs critere affaire7. |
||
2024 | * |
||
2025 | * @return string|null Returns the champs critere affaire7. |
||
2026 | */ |
||
2027 | public function getChampsCritereAffaire7(): ?string { |
||
2030 | |||
2031 | /** |
||
2032 | * Get the champs critere affaire8. |
||
2033 | * |
||
2034 | * @return string|null Returns the champs critere affaire8. |
||
2035 | */ |
||
2036 | public function getChampsCritereAffaire8(): ?string { |
||
2039 | |||
2040 | /** |
||
2041 | * Get the champs critere affaire9. |
||
2042 | * |
||
2043 | * @return string|null Returns the champs critere affaire9. |
||
2044 | */ |
||
2045 | public function getChampsCritereAffaire9(): ?string { |
||
2048 | |||
2049 | /** |
||
2050 | * Get the champs critere article1. |
||
2051 | * |
||
2052 | * @return string|null Returns the champs critere article1. |
||
2053 | */ |
||
2054 | public function getChampsCritereArticle1(): ?string { |
||
2057 | |||
2058 | /** |
||
2059 | * Get the champs critere article10. |
||
2060 | * |
||
2061 | * @return string|null Returns the champs critere article10. |
||
2062 | */ |
||
2063 | public function getChampsCritereArticle10(): ?string { |
||
2066 | |||
2067 | /** |
||
2068 | * Get the champs critere article2. |
||
2069 | * |
||
2070 | * @return string|null Returns the champs critere article2. |
||
2071 | */ |
||
2072 | public function getChampsCritereArticle2(): ?string { |
||
2075 | |||
2076 | /** |
||
2077 | * Get the champs critere article3. |
||
2078 | * |
||
2079 | * @return string|null Returns the champs critere article3. |
||
2080 | */ |
||
2081 | public function getChampsCritereArticle3(): ?string { |
||
2084 | |||
2085 | /** |
||
2086 | * Get the champs critere article4. |
||
2087 | * |
||
2088 | * @return string|null Returns the champs critere article4. |
||
2089 | */ |
||
2090 | public function getChampsCritereArticle4(): ?string { |
||
2093 | |||
2094 | /** |
||
2095 | * Get the champs critere article5. |
||
2096 | * |
||
2097 | * @return string|null Returns the champs critere article5. |
||
2098 | */ |
||
2099 | public function getChampsCritereArticle5(): ?string { |
||
2102 | |||
2103 | /** |
||
2104 | * Get the champs critere article6. |
||
2105 | * |
||
2106 | * @return string|null Returns the champs critere article6. |
||
2107 | */ |
||
2108 | public function getChampsCritereArticle6(): ?string { |
||
2111 | |||
2112 | /** |
||
2113 | * Get the champs critere article7. |
||
2114 | * |
||
2115 | * @return string|null Returns the champs critere article7. |
||
2116 | */ |
||
2117 | public function getChampsCritereArticle7(): ?string { |
||
2120 | |||
2121 | /** |
||
2122 | * Get the champs critere article8. |
||
2123 | * |
||
2124 | * @return string|null Returns the champs critere article8. |
||
2125 | */ |
||
2126 | public function getChampsCritereArticle8(): ?string { |
||
2129 | |||
2130 | /** |
||
2131 | * Get the champs critere article9. |
||
2132 | * |
||
2133 | * @return string|null Returns the champs critere article9. |
||
2134 | */ |
||
2135 | public function getChampsCritereArticle9(): ?string { |
||
2138 | |||
2139 | /** |
||
2140 | * Get the champs critere ent piece1. |
||
2141 | * |
||
2142 | * @return string|null Returns the champs critere ent piece1. |
||
2143 | */ |
||
2144 | public function getChampsCritereEntPiece1(): ?string { |
||
2147 | |||
2148 | /** |
||
2149 | * Get the champs critere ent piece10. |
||
2150 | * |
||
2151 | * @return string|null Returns the champs critere ent piece10. |
||
2152 | */ |
||
2153 | public function getChampsCritereEntPiece10(): ?string { |
||
2156 | |||
2157 | /** |
||
2158 | * Get the champs critere ent piece2. |
||
2159 | * |
||
2160 | * @return string|null Returns the champs critere ent piece2. |
||
2161 | */ |
||
2162 | public function getChampsCritereEntPiece2(): ?string { |
||
2165 | |||
2166 | /** |
||
2167 | * Get the champs critere ent piece3. |
||
2168 | * |
||
2169 | * @return string|null Returns the champs critere ent piece3. |
||
2170 | */ |
||
2171 | public function getChampsCritereEntPiece3(): ?string { |
||
2174 | |||
2175 | /** |
||
2176 | * Get the champs critere ent piece4. |
||
2177 | * |
||
2178 | * @return string|null Returns the champs critere ent piece4. |
||
2179 | */ |
||
2180 | public function getChampsCritereEntPiece4(): ?string { |
||
2183 | |||
2184 | /** |
||
2185 | * Get the champs critere ent piece5. |
||
2186 | * |
||
2187 | * @return string|null Returns the champs critere ent piece5. |
||
2188 | */ |
||
2189 | public function getChampsCritereEntPiece5(): ?string { |
||
2192 | |||
2193 | /** |
||
2194 | * Get the champs critere ent piece6. |
||
2195 | * |
||
2196 | * @return string|null Returns the champs critere ent piece6. |
||
2197 | */ |
||
2198 | public function getChampsCritereEntPiece6(): ?string { |
||
2201 | |||
2202 | /** |
||
2203 | * Get the champs critere ent piece7. |
||
2204 | * |
||
2205 | * @return string|null Returns the champs critere ent piece7. |
||
2206 | */ |
||
2207 | public function getChampsCritereEntPiece7(): ?string { |
||
2210 | |||
2211 | /** |
||
2212 | * Get the champs critere ent piece8. |
||
2213 | * |
||
2214 | * @return string|null Returns the champs critere ent piece8. |
||
2215 | */ |
||
2216 | public function getChampsCritereEntPiece8(): ?string { |
||
2219 | |||
2220 | /** |
||
2221 | * Get the champs critere ent piece9. |
||
2222 | * |
||
2223 | * @return string|null Returns the champs critere ent piece9. |
||
2224 | */ |
||
2225 | public function getChampsCritereEntPiece9(): ?string { |
||
2228 | |||
2229 | /** |
||
2230 | * Get the chrono activation. |
||
2231 | * |
||
2232 | * @return bool|null Returns the chrono activation. |
||
2233 | */ |
||
2234 | public function getChronoActivation(): ?bool { |
||
2237 | |||
2238 | /** |
||
2239 | * Get the chrono prefixe. |
||
2240 | * |
||
2241 | * @return string|null Returns the chrono prefixe. |
||
2242 | */ |
||
2243 | public function getChronoPrefixe(): ?string { |
||
2246 | |||
2247 | /** |
||
2248 | * Get the chrono prochain num. |
||
2249 | * |
||
2250 | * @return int|null Returns the chrono prochain num. |
||
2251 | */ |
||
2252 | public function getChronoProchainNum(): ?int { |
||
2255 | |||
2256 | /** |
||
2257 | * Get the cle acces cn paie. |
||
2258 | * |
||
2259 | * @return string|null Returns the cle acces cn paie. |
||
2260 | */ |
||
2261 | public function getCleAccesCnPaie(): ?string { |
||
2264 | |||
2265 | /** |
||
2266 | * Get the cle acces fiche client. |
||
2267 | * |
||
2268 | * @return string|null Returns the cle acces fiche client. |
||
2269 | */ |
||
2270 | public function getCleAccesFicheClient(): ?string { |
||
2273 | |||
2274 | /** |
||
2275 | * Get the cle acces menus. |
||
2276 | * |
||
2277 | * @return string|null Returns the cle acces menus. |
||
2278 | */ |
||
2279 | public function getCleAccesMenus(): ?string { |
||
2282 | |||
2283 | /** |
||
2284 | * Get the cle acces param. |
||
2285 | * |
||
2286 | * @return string|null Returns the cle acces param. |
||
2287 | */ |
||
2288 | public function getCleAccesParam(): ?string { |
||
2291 | |||
2292 | /** |
||
2293 | * Get the cle des etr communs. |
||
2294 | * |
||
2295 | * @return string|null Returns the cle des etr communs. |
||
2296 | */ |
||
2297 | public function getCleDesEtrCommuns(): ?string { |
||
2300 | |||
2301 | /** |
||
2302 | * Get the cle jrn lib communs. |
||
2303 | * |
||
2304 | * @return string|null Returns the cle jrn lib communs. |
||
2305 | */ |
||
2306 | public function getCleJrnLibCommuns(): ?string { |
||
2309 | |||
2310 | /** |
||
2311 | * Get the code emetteur. |
||
2312 | * |
||
2313 | * @return string|null Returns the code emetteur. |
||
2314 | */ |
||
2315 | public function getCodeEmetteur(): ?string { |
||
2318 | |||
2319 | /** |
||
2320 | * Get the code expert defaut. |
||
2321 | * |
||
2322 | * @return string|null Returns the code expert defaut. |
||
2323 | */ |
||
2324 | public function getCodeExpertDefaut(): ?string { |
||
2327 | |||
2328 | /** |
||
2329 | * Get the code regroupement pre fact. |
||
2330 | * |
||
2331 | * @return string|null Returns the code regroupement pre fact. |
||
2332 | */ |
||
2333 | public function getCodeRegroupementPreFact(): ?string { |
||
2336 | |||
2337 | /** |
||
2338 | * Get the conversion pwd. |
||
2339 | * |
||
2340 | * @return bool|null Returns the conversion pwd. |
||
2341 | */ |
||
2342 | public function getConversionPwd(): ?bool { |
||
2345 | |||
2346 | /** |
||
2347 | * Get the cpte collectif cli. |
||
2348 | * |
||
2349 | * @return string|null Returns the cpte collectif cli. |
||
2350 | */ |
||
2351 | public function getCpteCollectifCli(): ?string { |
||
2354 | |||
2355 | /** |
||
2356 | * Get the cpte collectif frn. |
||
2357 | * |
||
2358 | * @return string|null Returns the cpte collectif frn. |
||
2359 | */ |
||
2360 | public function getCpteCollectifFrn(): ?string { |
||
2363 | |||
2364 | /** |
||
2365 | * Get the creation affaire. |
||
2366 | * |
||
2367 | * @return bool|null Returns the creation affaire. |
||
2368 | */ |
||
2369 | public function getCreationAffaire(): ?bool { |
||
2372 | |||
2373 | /** |
||
2374 | * Get the creation article. |
||
2375 | * |
||
2376 | * @return bool|null Returns the creation article. |
||
2377 | */ |
||
2378 | public function getCreationArticle(): ?bool { |
||
2381 | |||
2382 | /** |
||
2383 | * Get the creation bons travaux. |
||
2384 | * |
||
2385 | * @return bool|null Returns the creation bons travaux. |
||
2386 | */ |
||
2387 | public function getCreationBonsTravaux(): ?bool { |
||
2390 | |||
2391 | /** |
||
2392 | * Get the creation chantier. |
||
2393 | * |
||
2394 | * @return bool|null Returns the creation chantier. |
||
2395 | */ |
||
2396 | public function getCreationChantier(): ?bool { |
||
2399 | |||
2400 | /** |
||
2401 | * Get the creation client. |
||
2402 | * |
||
2403 | * @return bool|null Returns the creation client. |
||
2404 | */ |
||
2405 | public function getCreationClient(): ?bool { |
||
2408 | |||
2409 | /** |
||
2410 | * Get the creation commission. |
||
2411 | * |
||
2412 | * @return bool|null Returns the creation commission. |
||
2413 | */ |
||
2414 | public function getCreationCommission(): ?bool { |
||
2417 | |||
2418 | /** |
||
2419 | * Get the creation dossier cpta. |
||
2420 | * |
||
2421 | * @return bool|null Returns the creation dossier cpta. |
||
2422 | */ |
||
2423 | public function getCreationDossierCpta(): ?bool { |
||
2426 | |||
2427 | /** |
||
2428 | * Get the creation dossier fact. |
||
2429 | * |
||
2430 | * @return bool|null Returns the creation dossier fact. |
||
2431 | */ |
||
2432 | public function getCreationDossierFact(): ?bool { |
||
2435 | |||
2436 | /** |
||
2437 | * Get the creation dossier paie. |
||
2438 | * |
||
2439 | * @return bool|null Returns the creation dossier paie. |
||
2440 | */ |
||
2441 | public function getCreationDossierPaie(): ?bool { |
||
2444 | |||
2445 | /** |
||
2446 | * Get the creation fournisseur. |
||
2447 | * |
||
2448 | * @return bool|null Returns the creation fournisseur. |
||
2449 | */ |
||
2450 | public function getCreationFournisseur(): ?bool { |
||
2453 | |||
2454 | /** |
||
2455 | * Get the creation plan facturation. |
||
2456 | * |
||
2457 | * @return bool|null Returns the creation plan facturation. |
||
2458 | */ |
||
2459 | public function getCreationPlanFacturation(): ?bool { |
||
2462 | |||
2463 | /** |
||
2464 | * Get the creation plan tache. |
||
2465 | * |
||
2466 | * @return bool|null Returns the creation plan tache. |
||
2467 | */ |
||
2468 | public function getCreationPlanTache(): ?bool { |
||
2471 | |||
2472 | /** |
||
2473 | * Get the creation prospect. |
||
2474 | * |
||
2475 | * @return bool|null Returns the creation prospect. |
||
2476 | */ |
||
2477 | public function getCreationProspect(): ?bool { |
||
2480 | |||
2481 | /** |
||
2482 | * Get the creation tache. |
||
2483 | * |
||
2484 | * @return bool|null Returns the creation tache. |
||
2485 | */ |
||
2486 | public function getCreationTache(): ?bool { |
||
2489 | |||
2490 | /** |
||
2491 | * Get the creation tarif. |
||
2492 | * |
||
2493 | * @return bool|null Returns the creation tarif. |
||
2494 | */ |
||
2495 | public function getCreationTarif(): ?bool { |
||
2498 | |||
2499 | /** |
||
2500 | * Get the date cloture. |
||
2501 | * |
||
2502 | * @return DateTime|null Returns the date cloture. |
||
2503 | */ |
||
2504 | public function getDateCloture(): ?DateTime { |
||
2507 | |||
2508 | /** |
||
2509 | * Get the dt dern modif conf zone. |
||
2510 | * |
||
2511 | * @return DateTime|null Returns the dt dern modif conf zone. |
||
2512 | */ |
||
2513 | public function getDtDernModifConfZone(): ?DateTime { |
||
2516 | |||
2517 | /** |
||
2518 | * Get the ech aff en mt. |
||
2519 | * |
||
2520 | * @return bool|null Returns the ech aff en mt. |
||
2521 | */ |
||
2522 | public function getEchAffEnMt(): ?bool { |
||
2525 | |||
2526 | /** |
||
2527 | * Get the fonctionnement cga. |
||
2528 | * |
||
2529 | * @return bool|null Returns the fonctionnement cga. |
||
2530 | */ |
||
2531 | public function getFonctionnementCga(): ?bool { |
||
2534 | |||
2535 | /** |
||
2536 | * Get the heures trav1. |
||
2537 | * |
||
2538 | * @return float|null Returns the heures trav1. |
||
2539 | */ |
||
2540 | public function getHeuresTrav1(): ?float { |
||
2543 | |||
2544 | /** |
||
2545 | * Get the heures trav2. |
||
2546 | * |
||
2547 | * @return float|null Returns the heures trav2. |
||
2548 | */ |
||
2549 | public function getHeuresTrav2(): ?float { |
||
2552 | |||
2553 | /** |
||
2554 | * Get the heures trav3. |
||
2555 | * |
||
2556 | * @return float|null Returns the heures trav3. |
||
2557 | */ |
||
2558 | public function getHeuresTrav3(): ?float { |
||
2561 | |||
2562 | /** |
||
2563 | * Get the heures trav4. |
||
2564 | * |
||
2565 | * @return float|null Returns the heures trav4. |
||
2566 | */ |
||
2567 | public function getHeuresTrav4(): ?float { |
||
2570 | |||
2571 | /** |
||
2572 | * Get the increm auto. |
||
2573 | * |
||
2574 | * @return bool|null Returns the increm auto. |
||
2575 | */ |
||
2576 | public function getIncremAuto(): ?bool { |
||
2579 | |||
2580 | /** |
||
2581 | * Get the increm auto aff. |
||
2582 | * |
||
2583 | * @return bool|null Returns the increm auto aff. |
||
2584 | */ |
||
2585 | public function getIncremAutoAff(): ?bool { |
||
2588 | |||
2589 | /** |
||
2590 | * Get the increm auto frn. |
||
2591 | * |
||
2592 | * @return bool|null Returns the increm auto frn. |
||
2593 | */ |
||
2594 | public function getIncremAutoFrn(): ?bool { |
||
2597 | |||
2598 | /** |
||
2599 | * Get the increm cpte cli auto. |
||
2600 | * |
||
2601 | * @return bool|null Returns the increm cpte cli auto. |
||
2602 | */ |
||
2603 | public function getIncremCpteCliAuto(): ?bool { |
||
2606 | |||
2607 | /** |
||
2608 | * Get the increm cpte frn auto. |
||
2609 | * |
||
2610 | * @return bool|null Returns the increm cpte frn auto. |
||
2611 | */ |
||
2612 | public function getIncremCpteFrnAuto(): ?bool { |
||
2615 | |||
2616 | /** |
||
2617 | * Get the increment cpte cli. |
||
2618 | * |
||
2619 | * @return int|null Returns the increment cpte cli. |
||
2620 | */ |
||
2621 | public function getIncrementCpteCli(): ?int { |
||
2624 | |||
2625 | /** |
||
2626 | * Get the increment cpte frn. |
||
2627 | * |
||
2628 | * @return int|null Returns the increment cpte frn. |
||
2629 | */ |
||
2630 | public function getIncrementCpteFrn(): ?int { |
||
2633 | |||
2634 | /** |
||
2635 | * Get the liaison bu cpta. |
||
2636 | * |
||
2637 | * @return bool|null Returns the liaison bu cpta. |
||
2638 | */ |
||
2639 | public function getLiaisonBuCpta(): ?bool { |
||
2642 | |||
2643 | /** |
||
2644 | * Get the lib affectation1. |
||
2645 | * |
||
2646 | * @return string|null Returns the lib affectation1. |
||
2647 | */ |
||
2648 | public function getLibAffectation1(): ?string { |
||
2651 | |||
2652 | /** |
||
2653 | * Get the lib affectation2. |
||
2654 | * |
||
2655 | * @return string|null Returns the lib affectation2. |
||
2656 | */ |
||
2657 | public function getLibAffectation2(): ?string { |
||
2660 | |||
2661 | /** |
||
2662 | * Get the lib affectation3. |
||
2663 | * |
||
2664 | * @return string|null Returns the lib affectation3. |
||
2665 | */ |
||
2666 | public function getLibAffectation3(): ?string { |
||
2669 | |||
2670 | /** |
||
2671 | * Get the lib affectation4. |
||
2672 | * |
||
2673 | * @return string|null Returns the lib affectation4. |
||
2674 | */ |
||
2675 | public function getLibAffectation4(): ?string { |
||
2678 | |||
2679 | /** |
||
2680 | * Get the lib affectation5. |
||
2681 | * |
||
2682 | * @return string|null Returns the lib affectation5. |
||
2683 | */ |
||
2684 | public function getLibAffectation5(): ?string { |
||
2687 | |||
2688 | /** |
||
2689 | * Get the lib affectation6. |
||
2690 | * |
||
2691 | * @return string|null Returns the lib affectation6. |
||
2692 | */ |
||
2693 | public function getLibAffectation6(): ?string { |
||
2696 | |||
2697 | /** |
||
2698 | * Get the lib affectation7. |
||
2699 | * |
||
2700 | * @return string|null Returns the lib affectation7. |
||
2701 | */ |
||
2702 | public function getLibAffectation7(): ?string { |
||
2705 | |||
2706 | /** |
||
2707 | * Get the lib critere1. |
||
2708 | * |
||
2709 | * @return string|null Returns the lib critere1. |
||
2710 | */ |
||
2711 | public function getLibCritere1(): ?string { |
||
2714 | |||
2715 | /** |
||
2716 | * Get the lib critere10. |
||
2717 | * |
||
2718 | * @return string|null Returns the lib critere10. |
||
2719 | */ |
||
2720 | public function getLibCritere10(): ?string { |
||
2723 | |||
2724 | /** |
||
2725 | * Get the lib critere2. |
||
2726 | * |
||
2727 | * @return string|null Returns the lib critere2. |
||
2728 | */ |
||
2729 | public function getLibCritere2(): ?string { |
||
2732 | |||
2733 | /** |
||
2734 | * Get the lib critere3. |
||
2735 | * |
||
2736 | * @return string|null Returns the lib critere3. |
||
2737 | */ |
||
2738 | public function getLibCritere3(): ?string { |
||
2741 | |||
2742 | /** |
||
2743 | * Get the lib critere4. |
||
2744 | * |
||
2745 | * @return string|null Returns the lib critere4. |
||
2746 | */ |
||
2747 | public function getLibCritere4(): ?string { |
||
2750 | |||
2751 | /** |
||
2752 | * Get the lib critere5. |
||
2753 | * |
||
2754 | * @return string|null Returns the lib critere5. |
||
2755 | */ |
||
2756 | public function getLibCritere5(): ?string { |
||
2759 | |||
2760 | /** |
||
2761 | * Get the lib critere6. |
||
2762 | * |
||
2763 | * @return string|null Returns the lib critere6. |
||
2764 | */ |
||
2765 | public function getLibCritere6(): ?string { |
||
2768 | |||
2769 | /** |
||
2770 | * Get the lib critere7. |
||
2771 | * |
||
2772 | * @return string|null Returns the lib critere7. |
||
2773 | */ |
||
2774 | public function getLibCritere7(): ?string { |
||
2777 | |||
2778 | /** |
||
2779 | * Get the lib critere8. |
||
2780 | * |
||
2781 | * @return string|null Returns the lib critere8. |
||
2782 | */ |
||
2783 | public function getLibCritere8(): ?string { |
||
2786 | |||
2787 | /** |
||
2788 | * Get the lib critere9. |
||
2789 | * |
||
2790 | * @return string|null Returns the lib critere9. |
||
2791 | */ |
||
2792 | public function getLibCritere9(): ?string { |
||
2795 | |||
2796 | /** |
||
2797 | * Get the lib critere affaire1. |
||
2798 | * |
||
2799 | * @return string|null Returns the lib critere affaire1. |
||
2800 | */ |
||
2801 | public function getLibCritereAffaire1(): ?string { |
||
2804 | |||
2805 | /** |
||
2806 | * Get the lib critere affaire10. |
||
2807 | * |
||
2808 | * @return string|null Returns the lib critere affaire10. |
||
2809 | */ |
||
2810 | public function getLibCritereAffaire10(): ?string { |
||
2813 | |||
2814 | /** |
||
2815 | * Get the lib critere affaire2. |
||
2816 | * |
||
2817 | * @return string|null Returns the lib critere affaire2. |
||
2818 | */ |
||
2819 | public function getLibCritereAffaire2(): ?string { |
||
2822 | |||
2823 | /** |
||
2824 | * Get the lib critere affaire3. |
||
2825 | * |
||
2826 | * @return string|null Returns the lib critere affaire3. |
||
2827 | */ |
||
2828 | public function getLibCritereAffaire3(): ?string { |
||
2831 | |||
2832 | /** |
||
2833 | * Get the lib critere affaire4. |
||
2834 | * |
||
2835 | * @return string|null Returns the lib critere affaire4. |
||
2836 | */ |
||
2837 | public function getLibCritereAffaire4(): ?string { |
||
2840 | |||
2841 | /** |
||
2842 | * Get the lib critere affaire5. |
||
2843 | * |
||
2844 | * @return string|null Returns the lib critere affaire5. |
||
2845 | */ |
||
2846 | public function getLibCritereAffaire5(): ?string { |
||
2849 | |||
2850 | /** |
||
2851 | * Get the lib critere affaire6. |
||
2852 | * |
||
2853 | * @return string|null Returns the lib critere affaire6. |
||
2854 | */ |
||
2855 | public function getLibCritereAffaire6(): ?string { |
||
2858 | |||
2859 | /** |
||
2860 | * Get the lib critere affaire7. |
||
2861 | * |
||
2862 | * @return string|null Returns the lib critere affaire7. |
||
2863 | */ |
||
2864 | public function getLibCritereAffaire7(): ?string { |
||
2867 | |||
2868 | /** |
||
2869 | * Get the lib critere affaire8. |
||
2870 | * |
||
2871 | * @return string|null Returns the lib critere affaire8. |
||
2872 | */ |
||
2873 | public function getLibCritereAffaire8(): ?string { |
||
2876 | |||
2877 | /** |
||
2878 | * Get the lib critere affaire9. |
||
2879 | * |
||
2880 | * @return string|null Returns the lib critere affaire9. |
||
2881 | */ |
||
2882 | public function getLibCritereAffaire9(): ?string { |
||
2885 | |||
2886 | /** |
||
2887 | * Get the lib critere article1. |
||
2888 | * |
||
2889 | * @return string|null Returns the lib critere article1. |
||
2890 | */ |
||
2891 | public function getLibCritereArticle1(): ?string { |
||
2894 | |||
2895 | /** |
||
2896 | * Get the lib critere article10. |
||
2897 | * |
||
2898 | * @return string|null Returns the lib critere article10. |
||
2899 | */ |
||
2900 | public function getLibCritereArticle10(): ?string { |
||
2903 | |||
2904 | /** |
||
2905 | * Get the lib critere article2. |
||
2906 | * |
||
2907 | * @return string|null Returns the lib critere article2. |
||
2908 | */ |
||
2909 | public function getLibCritereArticle2(): ?string { |
||
2912 | |||
2913 | /** |
||
2914 | * Get the lib critere article3. |
||
2915 | * |
||
2916 | * @return string|null Returns the lib critere article3. |
||
2917 | */ |
||
2918 | public function getLibCritereArticle3(): ?string { |
||
2921 | |||
2922 | /** |
||
2923 | * Get the lib critere article4. |
||
2924 | * |
||
2925 | * @return string|null Returns the lib critere article4. |
||
2926 | */ |
||
2927 | public function getLibCritereArticle4(): ?string { |
||
2930 | |||
2931 | /** |
||
2932 | * Get the lib critere article5. |
||
2933 | * |
||
2934 | * @return string|null Returns the lib critere article5. |
||
2935 | */ |
||
2936 | public function getLibCritereArticle5(): ?string { |
||
2939 | |||
2940 | /** |
||
2941 | * Get the lib critere article6. |
||
2942 | * |
||
2943 | * @return string|null Returns the lib critere article6. |
||
2944 | */ |
||
2945 | public function getLibCritereArticle6(): ?string { |
||
2948 | |||
2949 | /** |
||
2950 | * Get the lib critere article7. |
||
2951 | * |
||
2952 | * @return string|null Returns the lib critere article7. |
||
2953 | */ |
||
2954 | public function getLibCritereArticle7(): ?string { |
||
2957 | |||
2958 | /** |
||
2959 | * Get the lib critere article8. |
||
2960 | * |
||
2961 | * @return string|null Returns the lib critere article8. |
||
2962 | */ |
||
2963 | public function getLibCritereArticle8(): ?string { |
||
2966 | |||
2967 | /** |
||
2968 | * Get the lib critere article9. |
||
2969 | * |
||
2970 | * @return string|null Returns the lib critere article9. |
||
2971 | */ |
||
2972 | public function getLibCritereArticle9(): ?string { |
||
2975 | |||
2976 | /** |
||
2977 | * Get the lib critere ent piece1. |
||
2978 | * |
||
2979 | * @return string|null Returns the lib critere ent piece1. |
||
2980 | */ |
||
2981 | public function getLibCritereEntPiece1(): ?string { |
||
2984 | |||
2985 | /** |
||
2986 | * Get the lib critere ent piece10. |
||
2987 | * |
||
2988 | * @return string|null Returns the lib critere ent piece10. |
||
2989 | */ |
||
2990 | public function getLibCritereEntPiece10(): ?string { |
||
2993 | |||
2994 | /** |
||
2995 | * Get the lib critere ent piece2. |
||
2996 | * |
||
2997 | * @return string|null Returns the lib critere ent piece2. |
||
2998 | */ |
||
2999 | public function getLibCritereEntPiece2(): ?string { |
||
3002 | |||
3003 | /** |
||
3004 | * Get the lib critere ent piece3. |
||
3005 | * |
||
3006 | * @return string|null Returns the lib critere ent piece3. |
||
3007 | */ |
||
3008 | public function getLibCritereEntPiece3(): ?string { |
||
3011 | |||
3012 | /** |
||
3013 | * Get the lib critere ent piece4. |
||
3014 | * |
||
3015 | * @return string|null Returns the lib critere ent piece4. |
||
3016 | */ |
||
3017 | public function getLibCritereEntPiece4(): ?string { |
||
3020 | |||
3021 | /** |
||
3022 | * Get the lib critere ent piece5. |
||
3023 | * |
||
3024 | * @return string|null Returns the lib critere ent piece5. |
||
3025 | */ |
||
3026 | public function getLibCritereEntPiece5(): ?string { |
||
3029 | |||
3030 | /** |
||
3031 | * Get the lib critere ent piece6. |
||
3032 | * |
||
3033 | * @return string|null Returns the lib critere ent piece6. |
||
3034 | */ |
||
3035 | public function getLibCritereEntPiece6(): ?string { |
||
3038 | |||
3039 | /** |
||
3040 | * Get the lib critere ent piece7. |
||
3041 | * |
||
3042 | * @return string|null Returns the lib critere ent piece7. |
||
3043 | */ |
||
3044 | public function getLibCritereEntPiece7(): ?string { |
||
3047 | |||
3048 | /** |
||
3049 | * Get the lib critere ent piece8. |
||
3050 | * |
||
3051 | * @return string|null Returns the lib critere ent piece8. |
||
3052 | */ |
||
3053 | public function getLibCritereEntPiece8(): ?string { |
||
3056 | |||
3057 | /** |
||
3058 | * Get the lib critere ent piece9. |
||
3059 | * |
||
3060 | * @return string|null Returns the lib critere ent piece9. |
||
3061 | */ |
||
3062 | public function getLibCritereEntPiece9(): ?string { |
||
3065 | |||
3066 | /** |
||
3067 | * Get the lib critere interloc. |
||
3068 | * |
||
3069 | * @return string|null Returns the lib critere interloc. |
||
3070 | */ |
||
3071 | public function getLibCritereInterloc(): ?string { |
||
3074 | |||
3075 | /** |
||
3076 | * Get the lib critere interloc2. |
||
3077 | * |
||
3078 | * @return string|null Returns the lib critere interloc2. |
||
3079 | */ |
||
3080 | public function getLibCritereInterloc2(): ?string { |
||
3083 | |||
3084 | /** |
||
3085 | * Get the major heures trav1. |
||
3086 | * |
||
3087 | * @return float|null Returns the major heures trav1. |
||
3088 | */ |
||
3089 | public function getMajorHeuresTrav1(): ?float { |
||
3092 | |||
3093 | /** |
||
3094 | * Get the major heures trav2. |
||
3095 | * |
||
3096 | * @return float|null Returns the major heures trav2. |
||
3097 | */ |
||
3098 | public function getMajorHeuresTrav2(): ?float { |
||
3101 | |||
3102 | /** |
||
3103 | * Get the major heures trav3. |
||
3104 | * |
||
3105 | * @return float|null Returns the major heures trav3. |
||
3106 | */ |
||
3107 | public function getMajorHeuresTrav3(): ?float { |
||
3110 | |||
3111 | /** |
||
3112 | * Get the major heures trav4. |
||
3113 | * |
||
3114 | * @return float|null Returns the major heures trav4. |
||
3115 | */ |
||
3116 | public function getMajorHeuresTrav4(): ?float { |
||
3119 | |||
3120 | /** |
||
3121 | * Get the mnt ticket resto a. |
||
3122 | * |
||
3123 | * @return float|null Returns the mnt ticket resto a. |
||
3124 | */ |
||
3125 | public function getMntTicketRestoA(): ?float { |
||
3128 | |||
3129 | /** |
||
3130 | * Get the mnt ticket resto b. |
||
3131 | * |
||
3132 | * @return float|null Returns the mnt ticket resto b. |
||
3133 | */ |
||
3134 | public function getMntTicketRestoB(): ?float { |
||
3137 | |||
3138 | /** |
||
3139 | * Get the mnt ticket resto c. |
||
3140 | * |
||
3141 | * @return float|null Returns the mnt ticket resto c. |
||
3142 | */ |
||
3143 | public function getMntTicketRestoC(): ?float { |
||
3146 | |||
3147 | /** |
||
3148 | * Get the mnt ticket resto d. |
||
3149 | * |
||
3150 | * @return float|null Returns the mnt ticket resto d. |
||
3151 | */ |
||
3152 | public function getMntTicketRestoD(): ?float { |
||
3155 | |||
3156 | /** |
||
3157 | * Get the mnt ticket resto e. |
||
3158 | * |
||
3159 | * @return float|null Returns the mnt ticket resto e. |
||
3160 | */ |
||
3161 | public function getMntTicketRestoE(): ?float { |
||
3164 | |||
3165 | /** |
||
3166 | * Get the modif affaire. |
||
3167 | * |
||
3168 | * @return string|null Returns the modif affaire. |
||
3169 | */ |
||
3170 | public function getModifAffaire(): ?string { |
||
3173 | |||
3174 | /** |
||
3175 | * Get the modif article. |
||
3176 | * |
||
3177 | * @return string|null Returns the modif article. |
||
3178 | */ |
||
3179 | public function getModifArticle(): ?string { |
||
3182 | |||
3183 | /** |
||
3184 | * Get the modif bons travaux. |
||
3185 | * |
||
3186 | * @return string|null Returns the modif bons travaux. |
||
3187 | */ |
||
3188 | public function getModifBonsTravaux(): ?string { |
||
3191 | |||
3192 | /** |
||
3193 | * Get the modif chantier. |
||
3194 | * |
||
3195 | * @return string|null Returns the modif chantier. |
||
3196 | */ |
||
3197 | public function getModifChantier(): ?string { |
||
3200 | |||
3201 | /** |
||
3202 | * Get the modif client. |
||
3203 | * |
||
3204 | * @return string|null Returns the modif client. |
||
3205 | */ |
||
3206 | public function getModifClient(): ?string { |
||
3209 | |||
3210 | /** |
||
3211 | * Get the modif commission. |
||
3212 | * |
||
3213 | * @return string|null Returns the modif commission. |
||
3214 | */ |
||
3215 | public function getModifCommission(): ?string { |
||
3218 | |||
3219 | /** |
||
3220 | * Get the modif dossier fact. |
||
3221 | * |
||
3222 | * @return string|null Returns the modif dossier fact. |
||
3223 | */ |
||
3224 | public function getModifDossierFact(): ?string { |
||
3227 | |||
3228 | /** |
||
3229 | * Get the modif fournisseur. |
||
3230 | * |
||
3231 | * @return string|null Returns the modif fournisseur. |
||
3232 | */ |
||
3233 | public function getModifFournisseur(): ?string { |
||
3236 | |||
3237 | /** |
||
3238 | * Get the modif plan facturation. |
||
3239 | * |
||
3240 | * @return string|null Returns the modif plan facturation. |
||
3241 | */ |
||
3242 | public function getModifPlanFacturation(): ?string { |
||
3245 | |||
3246 | /** |
||
3247 | * Get the modif plan tache. |
||
3248 | * |
||
3249 | * @return string|null Returns the modif plan tache. |
||
3250 | */ |
||
3251 | public function getModifPlanTache(): ?string { |
||
3254 | |||
3255 | /** |
||
3256 | * Get the modif tache. |
||
3257 | * |
||
3258 | * @return string|null Returns the modif tache. |
||
3259 | */ |
||
3260 | public function getModifTache(): ?string { |
||
3263 | |||
3264 | /** |
||
3265 | * Get the modif tarif. |
||
3266 | * |
||
3267 | * @return string|null Returns the modif tarif. |
||
3268 | */ |
||
3269 | public function getModifTarif(): ?string { |
||
3272 | |||
3273 | /** |
||
3274 | * Get the monnaie. |
||
3275 | * |
||
3276 | * @return string|null Returns the monnaie. |
||
3277 | */ |
||
3278 | public function getMonnaie(): ?string { |
||
3281 | |||
3282 | /** |
||
3283 | * Get the nb dec monnaie. |
||
3284 | * |
||
3285 | * @return int|null Returns the nb dec monnaie. |
||
3286 | */ |
||
3287 | public function getNbDecMonnaie(): ?int { |
||
3290 | |||
3291 | /** |
||
3292 | * Get the no doss cpta. |
||
3293 | * |
||
3294 | * @return string|null Returns the no doss cpta. |
||
3295 | */ |
||
3296 | public function getNoDossCpta(): ?string { |
||
3299 | |||
3300 | /** |
||
3301 | * Get the no doss paie. |
||
3302 | * |
||
3303 | * @return string|null Returns the no doss paie. |
||
3304 | */ |
||
3305 | public function getNoDossPaie(): ?string { |
||
3308 | |||
3309 | /** |
||
3310 | * Get the prefixe aff. |
||
3311 | * |
||
3312 | * @return string|null Returns the prefixe aff. |
||
3313 | */ |
||
3314 | public function getPrefixeAff(): ?string { |
||
3317 | |||
3318 | /** |
||
3319 | * Get the priorite saisie aff. |
||
3320 | * |
||
3321 | * @return int|null Returns the priorite saisie aff. |
||
3322 | */ |
||
3323 | public function getPrioriteSaisieAff(): ?int { |
||
3326 | |||
3327 | /** |
||
3328 | * Get the priorite saisie client. |
||
3329 | * |
||
3330 | * @return int|null Returns the priorite saisie client. |
||
3331 | */ |
||
3332 | public function getPrioriteSaisieClient(): ?int { |
||
3335 | |||
3336 | /** |
||
3337 | * Get the priorite saisie frn. |
||
3338 | * |
||
3339 | * @return int|null Returns the priorite saisie frn. |
||
3340 | */ |
||
3341 | public function getPrioriteSaisieFrn(): ?int { |
||
3344 | |||
3345 | /** |
||
3346 | * Get the prochain cpte cli. |
||
3347 | * |
||
3348 | * @return string|null Returns the prochain cpte cli. |
||
3349 | */ |
||
3350 | public function getProchainCpteCli(): ?string { |
||
3353 | |||
3354 | /** |
||
3355 | * Get the prochain cpte frn. |
||
3356 | * |
||
3357 | * @return string|null Returns the prochain cpte frn. |
||
3358 | */ |
||
3359 | public function getProchainCpteFrn(): ?string { |
||
3362 | |||
3363 | /** |
||
3364 | * Get the prochain mois oblig. |
||
3365 | * |
||
3366 | * @return DateTime|null Returns the prochain mois oblig. |
||
3367 | */ |
||
3368 | public function getProchainMoisOblig(): ?DateTime { |
||
3371 | |||
3372 | /** |
||
3373 | * Get the prochain num aff. |
||
3374 | * |
||
3375 | * @return int|null Returns the prochain num aff. |
||
3376 | */ |
||
3377 | public function getProchainNumAff(): ?int { |
||
3380 | |||
3381 | /** |
||
3382 | * Get the px km a. |
||
3383 | * |
||
3384 | * @return float|null Returns the px km a. |
||
3385 | */ |
||
3386 | public function getPxKmA(): ?float { |
||
3389 | |||
3390 | /** |
||
3391 | * Get the px km b. |
||
3392 | * |
||
3393 | * @return float|null Returns the px km b. |
||
3394 | */ |
||
3395 | public function getPxKmB(): ?float { |
||
3398 | |||
3399 | /** |
||
3400 | * Get the px km c. |
||
3401 | * |
||
3402 | * @return float|null Returns the px km c. |
||
3403 | */ |
||
3404 | public function getPxKmC(): ?float { |
||
3407 | |||
3408 | /** |
||
3409 | * Get the px km d. |
||
3410 | * |
||
3411 | * @return float|null Returns the px km d. |
||
3412 | */ |
||
3413 | public function getPxKmD(): ?float { |
||
3416 | |||
3417 | /** |
||
3418 | * Get the px km e. |
||
3419 | * |
||
3420 | * @return float|null Returns the px km e. |
||
3421 | */ |
||
3422 | public function getPxKmE(): ?float { |
||
3425 | |||
3426 | /** |
||
3427 | * Get the qet code collaborateur dest. |
||
3428 | * |
||
3429 | * @return string|null Returns the qet code collaborateur dest. |
||
3430 | */ |
||
3431 | public function getQetCodeCollaborateurDest(): ?string { |
||
3434 | |||
3435 | /** |
||
3436 | * Get the qtel code mission. |
||
3437 | * |
||
3438 | * @return string|null Returns the qtel code mission. |
||
3439 | */ |
||
3440 | public function getQtelCodeMission(): ?string { |
||
3443 | |||
3444 | /** |
||
3445 | * Get the qtel code tache. |
||
3446 | * |
||
3447 | * @return string|null Returns the qtel code tache. |
||
3448 | */ |
||
3449 | public function getQtelCodeTache(): ?string { |
||
3452 | |||
3453 | /** |
||
3454 | * Get the qtel special. |
||
3455 | * |
||
3456 | * @return int|null Returns the qtel special. |
||
3457 | */ |
||
3458 | public function getQtelSpecial(): ?int { |
||
3461 | |||
3462 | /** |
||
3463 | * Get the rac data cpta. |
||
3464 | * |
||
3465 | * @return string|null Returns the rac data cpta. |
||
3466 | */ |
||
3467 | public function getRacDataCpta(): ?string { |
||
3470 | |||
3471 | /** |
||
3472 | * Get the rac data paie. |
||
3473 | * |
||
3474 | * @return string|null Returns the rac data paie. |
||
3475 | */ |
||
3476 | public function getRacDataPaie(): ?string { |
||
3479 | |||
3480 | /** |
||
3481 | * Get the radical compte cli. |
||
3482 | * |
||
3483 | * @return string|null Returns the radical compte cli. |
||
3484 | */ |
||
3485 | public function getRadicalCompteCli(): ?string { |
||
3488 | |||
3489 | /** |
||
3490 | * Get the radical compte frn. |
||
3491 | * |
||
3492 | * @return string|null Returns the radical compte frn. |
||
3493 | */ |
||
3494 | public function getRadicalCompteFrn(): ?string { |
||
3497 | |||
3498 | /** |
||
3499 | * Get the sais date fin. |
||
3500 | * |
||
3501 | * @return bool|null Returns the sais date fin. |
||
3502 | */ |
||
3503 | public function getSaisDateFin(): ?bool { |
||
3506 | |||
3507 | /** |
||
3508 | * Get the tdfc adhesion totale. |
||
3509 | * |
||
3510 | * @return bool|null Returns the tdfc adhesion totale. |
||
3511 | */ |
||
3512 | public function getTdfcAdhesionTotale(): ?bool { |
||
3515 | |||
3516 | /** |
||
3517 | * Get the tdfc emetteur. |
||
3518 | * |
||
3519 | * @return string|null Returns the tdfc emetteur. |
||
3520 | */ |
||
3521 | public function getTdfcEmetteur(): ?string { |
||
3524 | |||
3525 | /** |
||
3526 | * Get the tdfc facturant. |
||
3527 | * |
||
3528 | * @return string|null Returns the tdfc facturant. |
||
3529 | */ |
||
3530 | public function getTdfcFacturant(): ?string { |
||
3533 | |||
3534 | /** |
||
3535 | * Get the tdfc info trans. |
||
3536 | * |
||
3537 | * @return string|null Returns the tdfc info trans. |
||
3538 | */ |
||
3539 | public function getTdfcInfoTrans(): ?string { |
||
3542 | |||
3543 | /** |
||
3544 | * Get the tp interdit creat millesime. |
||
3545 | * |
||
3546 | * @return bool|null Returns the tp interdit creat millesime. |
||
3547 | */ |
||
3548 | public function getTpInterditCreatMillesime(): ?bool { |
||
3551 | |||
3552 | /** |
||
3553 | * Get the tp interdit creat mission. |
||
3554 | * |
||
3555 | * @return bool|null Returns the tp interdit creat mission. |
||
3556 | */ |
||
3557 | public function getTpInterditCreatMission(): ?bool { |
||
3560 | |||
3561 | /** |
||
3562 | * Get the tp pas clients sortis. |
||
3563 | * |
||
3564 | * @return bool|null Returns the tp pas clients sortis. |
||
3565 | */ |
||
3566 | public function getTpPasClientsSortis(): ?bool { |
||
3569 | |||
3570 | /** |
||
3571 | * Get the tp pas intervenants. |
||
3572 | * |
||
3573 | * @return bool|null Returns the tp pas intervenants. |
||
3574 | */ |
||
3575 | public function getTpPasIntervenants(): ?bool { |
||
3578 | |||
3579 | /** |
||
3580 | * Get the tp prix invisible. |
||
3581 | * |
||
3582 | * @return bool|null Returns the tp prix invisible. |
||
3583 | */ |
||
3584 | public function getTpPrixInvisible(): ?bool { |
||
3587 | |||
3588 | /** |
||
3589 | * Get the tp rempli pref auto. |
||
3590 | * |
||
3591 | * @return bool|null Returns the tp rempli pref auto. |
||
3592 | */ |
||
3593 | public function getTpRempliPrefAuto(): ?bool { |
||
3596 | |||
3597 | /** |
||
3598 | * Get the tp saisie dos. |
||
3599 | * |
||
3600 | * @return bool|null Returns the tp saisie dos. |
||
3601 | */ |
||
3602 | public function getTpSaisieDos(): ?bool { |
||
3605 | |||
3606 | /** |
||
3607 | * Get the tps passes interdit prix. |
||
3608 | * |
||
3609 | * @return bool|null Returns the tps passes interdit prix. |
||
3610 | */ |
||
3611 | public function getTpsPassesInterditPrix(): ?bool { |
||
3614 | |||
3615 | /** |
||
3616 | * Set the acces autorise bons travaux. |
||
3617 | * |
||
3618 | * @param bool|null $accesAutoriseBonsTravaux The acces autorise bons travaux. |
||
3619 | * @return Constantes Returns this Constantes. |
||
3620 | */ |
||
3621 | public function setAccesAutoriseBonsTravaux(?bool $accesAutoriseBonsTravaux): Constantes { |
||
3625 | |||
3626 | /** |
||
3627 | * Set the acces autorise plan facturation. |
||
3628 | * |
||
3629 | * @param bool|null $accesAutorisePlanFacturation The acces autorise plan facturation. |
||
3630 | * @return Constantes Returns this Constantes. |
||
3631 | */ |
||
3632 | public function setAccesAutorisePlanFacturation(?bool $accesAutorisePlanFacturation): Constantes { |
||
3636 | |||
3637 | /** |
||
3638 | * Set the acces autorise plan tache. |
||
3639 | * |
||
3640 | * @param bool|null $accesAutorisePlanTache The acces autorise plan tache. |
||
3641 | * @return Constantes Returns this Constantes. |
||
3642 | */ |
||
3643 | public function setAccesAutorisePlanTache(?bool $accesAutorisePlanTache): Constantes { |
||
3647 | |||
3648 | /** |
||
3649 | * Set the acces docs cab. |
||
3650 | * |
||
3651 | * @param bool|null $accesDocsCab The acces docs cab. |
||
3652 | * @return Constantes Returns this Constantes. |
||
3653 | */ |
||
3654 | public function setAccesDocsCab(?bool $accesDocsCab): Constantes { |
||
3658 | |||
3659 | /** |
||
3660 | * Set the acces dossier cpta. |
||
3661 | * |
||
3662 | * @param string|null $accesDossierCpta The acces dossier cpta. |
||
3663 | * @return Constantes Returns this Constantes. |
||
3664 | */ |
||
3665 | public function setAccesDossierCpta(?string $accesDossierCpta): Constantes { |
||
3669 | |||
3670 | /** |
||
3671 | * Set the acces dossier paie. |
||
3672 | * |
||
3673 | * @param string|null $accesDossierPaie The acces dossier paie. |
||
3674 | * @return Constantes Returns this Constantes. |
||
3675 | */ |
||
3676 | public function setAccesDossierPaie(?string $accesDossierPaie): Constantes { |
||
3680 | |||
3681 | /** |
||
3682 | * Set the acces stat cab. |
||
3683 | * |
||
3684 | * @param bool|null $accesStatCab The acces stat cab. |
||
3685 | * @return Constantes Returns this Constantes. |
||
3686 | */ |
||
3687 | public function setAccesStatCab(?bool $accesStatCab): Constantes { |
||
3691 | |||
3692 | /** |
||
3693 | * Set the activation conf cmav cli. |
||
3694 | * |
||
3695 | * @param bool|null $activationConfCmavCli The activation conf cmav cli. |
||
3696 | * @return Constantes Returns this Constantes. |
||
3697 | */ |
||
3698 | public function setActivationConfCmavCli(?bool $activationConfCmavCli): Constantes { |
||
3702 | |||
3703 | /** |
||
3704 | * Set the activation conf controle. |
||
3705 | * |
||
3706 | * @param bool|null $activationConfControle The activation conf controle. |
||
3707 | * @return Constantes Returns this Constantes. |
||
3708 | */ |
||
3709 | public function setActivationConfControle(?bool $activationConfControle): Constantes { |
||
3713 | |||
3714 | /** |
||
3715 | * Set the activation lst restri. |
||
3716 | * |
||
3717 | * @param bool|null $activationLstRestri The activation lst restri. |
||
3718 | * @return Constantes Returns this Constantes. |
||
3719 | */ |
||
3720 | public function setActivationLstRestri(?bool $activationLstRestri): Constantes { |
||
3724 | |||
3725 | /** |
||
3726 | * Set the activation niveau2. |
||
3727 | * |
||
3728 | * @param bool|null $activationNiveau2 The activation niveau2. |
||
3729 | * @return Constantes Returns this Constantes. |
||
3730 | */ |
||
3731 | public function setActivationNiveau2(?bool $activationNiveau2): Constantes { |
||
3735 | |||
3736 | /** |
||
3737 | * Set the activation niveau3. |
||
3738 | * |
||
3739 | * @param bool|null $activationNiveau3 The activation niveau3. |
||
3740 | * @return Constantes Returns this Constantes. |
||
3741 | */ |
||
3742 | public function setActivationNiveau3(?bool $activationNiveau3): Constantes { |
||
3746 | |||
3747 | /** |
||
3748 | * Set the affiche point. |
||
3749 | * |
||
3750 | * @param bool|null $affichePoint The affiche point. |
||
3751 | * @return Constantes Returns this Constantes. |
||
3752 | */ |
||
3753 | public function setAffichePoint(?bool $affichePoint): Constantes { |
||
3757 | |||
3758 | /** |
||
3759 | * Set the affiche semaine. |
||
3760 | * |
||
3761 | * @param bool|null $afficheSemaine The affiche semaine. |
||
3762 | * @return Constantes Returns this Constantes. |
||
3763 | */ |
||
3764 | public function setAfficheSemaine(?bool $afficheSemaine): Constantes { |
||
3768 | |||
3769 | /** |
||
3770 | * Set the annulation affaire. |
||
3771 | * |
||
3772 | * @param bool|null $annulationAffaire The annulation affaire. |
||
3773 | * @return Constantes Returns this Constantes. |
||
3774 | */ |
||
3775 | public function setAnnulationAffaire(?bool $annulationAffaire): Constantes { |
||
3779 | |||
3780 | /** |
||
3781 | * Set the annulation article. |
||
3782 | * |
||
3783 | * @param bool|null $annulationArticle The annulation article. |
||
3784 | * @return Constantes Returns this Constantes. |
||
3785 | */ |
||
3786 | public function setAnnulationArticle(?bool $annulationArticle): Constantes { |
||
3790 | |||
3791 | /** |
||
3792 | * Set the annulation bons travaux. |
||
3793 | * |
||
3794 | * @param bool|null $annulationBonsTravaux The annulation bons travaux. |
||
3795 | * @return Constantes Returns this Constantes. |
||
3796 | */ |
||
3797 | public function setAnnulationBonsTravaux(?bool $annulationBonsTravaux): Constantes { |
||
3801 | |||
3802 | /** |
||
3803 | * Set the annulation chantier. |
||
3804 | * |
||
3805 | * @param bool|null $annulationChantier The annulation chantier. |
||
3806 | * @return Constantes Returns this Constantes. |
||
3807 | */ |
||
3808 | public function setAnnulationChantier(?bool $annulationChantier): Constantes { |
||
3812 | |||
3813 | /** |
||
3814 | * Set the annulation client. |
||
3815 | * |
||
3816 | * @param bool|null $annulationClient The annulation client. |
||
3817 | * @return Constantes Returns this Constantes. |
||
3818 | */ |
||
3819 | public function setAnnulationClient(?bool $annulationClient): Constantes { |
||
3823 | |||
3824 | /** |
||
3825 | * Set the annulation commission. |
||
3826 | * |
||
3827 | * @param bool|null $annulationCommission The annulation commission. |
||
3828 | * @return Constantes Returns this Constantes. |
||
3829 | */ |
||
3830 | public function setAnnulationCommission(?bool $annulationCommission): Constantes { |
||
3834 | |||
3835 | /** |
||
3836 | * Set the annulation dossier cpta. |
||
3837 | * |
||
3838 | * @param bool|null $annulationDossierCpta The annulation dossier cpta. |
||
3839 | * @return Constantes Returns this Constantes. |
||
3840 | */ |
||
3841 | public function setAnnulationDossierCpta(?bool $annulationDossierCpta): Constantes { |
||
3845 | |||
3846 | /** |
||
3847 | * Set the annulation dossier fact. |
||
3848 | * |
||
3849 | * @param bool|null $annulationDossierFact The annulation dossier fact. |
||
3850 | * @return Constantes Returns this Constantes. |
||
3851 | */ |
||
3852 | public function setAnnulationDossierFact(?bool $annulationDossierFact): Constantes { |
||
3856 | |||
3857 | /** |
||
3858 | * Set the annulation dossier paie. |
||
3859 | * |
||
3860 | * @param bool|null $annulationDossierPaie The annulation dossier paie. |
||
3861 | * @return Constantes Returns this Constantes. |
||
3862 | */ |
||
3863 | public function setAnnulationDossierPaie(?bool $annulationDossierPaie): Constantes { |
||
3867 | |||
3868 | /** |
||
3869 | * Set the annulation fournisseur. |
||
3870 | * |
||
3871 | * @param bool|null $annulationFournisseur The annulation fournisseur. |
||
3872 | * @return Constantes Returns this Constantes. |
||
3873 | */ |
||
3874 | public function setAnnulationFournisseur(?bool $annulationFournisseur): Constantes { |
||
3878 | |||
3879 | /** |
||
3880 | * Set the annulation plan facturation. |
||
3881 | * |
||
3882 | * @param bool|null $annulationPlanFacturation The annulation plan facturation. |
||
3883 | * @return Constantes Returns this Constantes. |
||
3884 | */ |
||
3885 | public function setAnnulationPlanFacturation(?bool $annulationPlanFacturation): Constantes { |
||
3889 | |||
3890 | /** |
||
3891 | * Set the annulation plan tache. |
||
3892 | * |
||
3893 | * @param bool|null $annulationPlanTache The annulation plan tache. |
||
3894 | * @return Constantes Returns this Constantes. |
||
3895 | */ |
||
3896 | public function setAnnulationPlanTache(?bool $annulationPlanTache): Constantes { |
||
3900 | |||
3901 | /** |
||
3902 | * Set the annulation tache. |
||
3903 | * |
||
3904 | * @param bool|null $annulationTache The annulation tache. |
||
3905 | * @return Constantes Returns this Constantes. |
||
3906 | */ |
||
3907 | public function setAnnulationTache(?bool $annulationTache): Constantes { |
||
3911 | |||
3912 | /** |
||
3913 | * Set the annulation tarif. |
||
3914 | * |
||
3915 | * @param bool|null $annulationTarif The annulation tarif. |
||
3916 | * @return Constantes Returns this Constantes. |
||
3917 | */ |
||
3918 | public function setAnnulationTarif(?bool $annulationTarif): Constantes { |
||
3922 | |||
3923 | /** |
||
3924 | * Set the blocage ed cli. |
||
3925 | * |
||
3926 | * @param bool|null $blocageEdCli The blocage ed cli. |
||
3927 | * @return Constantes Returns this Constantes. |
||
3928 | */ |
||
3929 | public function setBlocageEdCli(?bool $blocageEdCli): Constantes { |
||
3933 | |||
3934 | /** |
||
3935 | * Set the budget type saisie. |
||
3936 | * |
||
3937 | * @param int|null $budgetTypeSaisie The budget type saisie. |
||
3938 | * @return Constantes Returns this Constantes. |
||
3939 | */ |
||
3940 | public function setBudgetTypeSaisie(?int $budgetTypeSaisie): Constantes { |
||
3944 | |||
3945 | /** |
||
3946 | * Set the champs critere1. |
||
3947 | * |
||
3948 | * @param string|null $champsCritere1 The champs critere1. |
||
3949 | * @return Constantes Returns this Constantes. |
||
3950 | */ |
||
3951 | public function setChampsCritere1(?string $champsCritere1): Constantes { |
||
3955 | |||
3956 | /** |
||
3957 | * Set the champs critere10. |
||
3958 | * |
||
3959 | * @param string|null $champsCritere10 The champs critere10. |
||
3960 | * @return Constantes Returns this Constantes. |
||
3961 | */ |
||
3962 | public function setChampsCritere10(?string $champsCritere10): Constantes { |
||
3966 | |||
3967 | /** |
||
3968 | * Set the champs critere2. |
||
3969 | * |
||
3970 | * @param string|null $champsCritere2 The champs critere2. |
||
3971 | * @return Constantes Returns this Constantes. |
||
3972 | */ |
||
3973 | public function setChampsCritere2(?string $champsCritere2): Constantes { |
||
3977 | |||
3978 | /** |
||
3979 | * Set the champs critere3. |
||
3980 | * |
||
3981 | * @param string|null $champsCritere3 The champs critere3. |
||
3982 | * @return Constantes Returns this Constantes. |
||
3983 | */ |
||
3984 | public function setChampsCritere3(?string $champsCritere3): Constantes { |
||
3988 | |||
3989 | /** |
||
3990 | * Set the champs critere4. |
||
3991 | * |
||
3992 | * @param string|null $champsCritere4 The champs critere4. |
||
3993 | * @return Constantes Returns this Constantes. |
||
3994 | */ |
||
3995 | public function setChampsCritere4(?string $champsCritere4): Constantes { |
||
3999 | |||
4000 | /** |
||
4001 | * Set the champs critere5. |
||
4002 | * |
||
4003 | * @param string|null $champsCritere5 The champs critere5. |
||
4004 | * @return Constantes Returns this Constantes. |
||
4005 | */ |
||
4006 | public function setChampsCritere5(?string $champsCritere5): Constantes { |
||
4010 | |||
4011 | /** |
||
4012 | * Set the champs critere6. |
||
4013 | * |
||
4014 | * @param string|null $champsCritere6 The champs critere6. |
||
4015 | * @return Constantes Returns this Constantes. |
||
4016 | */ |
||
4017 | public function setChampsCritere6(?string $champsCritere6): Constantes { |
||
4021 | |||
4022 | /** |
||
4023 | * Set the champs critere7. |
||
4024 | * |
||
4025 | * @param string|null $champsCritere7 The champs critere7. |
||
4026 | * @return Constantes Returns this Constantes. |
||
4027 | */ |
||
4028 | public function setChampsCritere7(?string $champsCritere7): Constantes { |
||
4032 | |||
4033 | /** |
||
4034 | * Set the champs critere8. |
||
4035 | * |
||
4036 | * @param string|null $champsCritere8 The champs critere8. |
||
4037 | * @return Constantes Returns this Constantes. |
||
4038 | */ |
||
4039 | public function setChampsCritere8(?string $champsCritere8): Constantes { |
||
4043 | |||
4044 | /** |
||
4045 | * Set the champs critere9. |
||
4046 | * |
||
4047 | * @param string|null $champsCritere9 The champs critere9. |
||
4048 | * @return Constantes Returns this Constantes. |
||
4049 | */ |
||
4050 | public function setChampsCritere9(?string $champsCritere9): Constantes { |
||
4054 | |||
4055 | /** |
||
4056 | * Set the champs critere affaire1. |
||
4057 | * |
||
4058 | * @param string|null $champsCritereAffaire1 The champs critere affaire1. |
||
4059 | * @return Constantes Returns this Constantes. |
||
4060 | */ |
||
4061 | public function setChampsCritereAffaire1(?string $champsCritereAffaire1): Constantes { |
||
4065 | |||
4066 | /** |
||
4067 | * Set the champs critere affaire10. |
||
4068 | * |
||
4069 | * @param string|null $champsCritereAffaire10 The champs critere affaire10. |
||
4070 | * @return Constantes Returns this Constantes. |
||
4071 | */ |
||
4072 | public function setChampsCritereAffaire10(?string $champsCritereAffaire10): Constantes { |
||
4076 | |||
4077 | /** |
||
4078 | * Set the champs critere affaire2. |
||
4079 | * |
||
4080 | * @param string|null $champsCritereAffaire2 The champs critere affaire2. |
||
4081 | * @return Constantes Returns this Constantes. |
||
4082 | */ |
||
4083 | public function setChampsCritereAffaire2(?string $champsCritereAffaire2): Constantes { |
||
4087 | |||
4088 | /** |
||
4089 | * Set the champs critere affaire3. |
||
4090 | * |
||
4091 | * @param string|null $champsCritereAffaire3 The champs critere affaire3. |
||
4092 | * @return Constantes Returns this Constantes. |
||
4093 | */ |
||
4094 | public function setChampsCritereAffaire3(?string $champsCritereAffaire3): Constantes { |
||
4098 | |||
4099 | /** |
||
4100 | * Set the champs critere affaire4. |
||
4101 | * |
||
4102 | * @param string|null $champsCritereAffaire4 The champs critere affaire4. |
||
4103 | * @return Constantes Returns this Constantes. |
||
4104 | */ |
||
4105 | public function setChampsCritereAffaire4(?string $champsCritereAffaire4): Constantes { |
||
4109 | |||
4110 | /** |
||
4111 | * Set the champs critere affaire5. |
||
4112 | * |
||
4113 | * @param string|null $champsCritereAffaire5 The champs critere affaire5. |
||
4114 | * @return Constantes Returns this Constantes. |
||
4115 | */ |
||
4116 | public function setChampsCritereAffaire5(?string $champsCritereAffaire5): Constantes { |
||
4120 | |||
4121 | /** |
||
4122 | * Set the champs critere affaire6. |
||
4123 | * |
||
4124 | * @param string|null $champsCritereAffaire6 The champs critere affaire6. |
||
4125 | * @return Constantes Returns this Constantes. |
||
4126 | */ |
||
4127 | public function setChampsCritereAffaire6(?string $champsCritereAffaire6): Constantes { |
||
4131 | |||
4132 | /** |
||
4133 | * Set the champs critere affaire7. |
||
4134 | * |
||
4135 | * @param string|null $champsCritereAffaire7 The champs critere affaire7. |
||
4136 | * @return Constantes Returns this Constantes. |
||
4137 | */ |
||
4138 | public function setChampsCritereAffaire7(?string $champsCritereAffaire7): Constantes { |
||
4142 | |||
4143 | /** |
||
4144 | * Set the champs critere affaire8. |
||
4145 | * |
||
4146 | * @param string|null $champsCritereAffaire8 The champs critere affaire8. |
||
4147 | * @return Constantes Returns this Constantes. |
||
4148 | */ |
||
4149 | public function setChampsCritereAffaire8(?string $champsCritereAffaire8): Constantes { |
||
4153 | |||
4154 | /** |
||
4155 | * Set the champs critere affaire9. |
||
4156 | * |
||
4157 | * @param string|null $champsCritereAffaire9 The champs critere affaire9. |
||
4158 | * @return Constantes Returns this Constantes. |
||
4159 | */ |
||
4160 | public function setChampsCritereAffaire9(?string $champsCritereAffaire9): Constantes { |
||
4164 | |||
4165 | /** |
||
4166 | * Set the champs critere article1. |
||
4167 | * |
||
4168 | * @param string|null $champsCritereArticle1 The champs critere article1. |
||
4169 | * @return Constantes Returns this Constantes. |
||
4170 | */ |
||
4171 | public function setChampsCritereArticle1(?string $champsCritereArticle1): Constantes { |
||
4175 | |||
4176 | /** |
||
4177 | * Set the champs critere article10. |
||
4178 | * |
||
4179 | * @param string|null $champsCritereArticle10 The champs critere article10. |
||
4180 | * @return Constantes Returns this Constantes. |
||
4181 | */ |
||
4182 | public function setChampsCritereArticle10(?string $champsCritereArticle10): Constantes { |
||
4186 | |||
4187 | /** |
||
4188 | * Set the champs critere article2. |
||
4189 | * |
||
4190 | * @param string|null $champsCritereArticle2 The champs critere article2. |
||
4191 | * @return Constantes Returns this Constantes. |
||
4192 | */ |
||
4193 | public function setChampsCritereArticle2(?string $champsCritereArticle2): Constantes { |
||
4197 | |||
4198 | /** |
||
4199 | * Set the champs critere article3. |
||
4200 | * |
||
4201 | * @param string|null $champsCritereArticle3 The champs critere article3. |
||
4202 | * @return Constantes Returns this Constantes. |
||
4203 | */ |
||
4204 | public function setChampsCritereArticle3(?string $champsCritereArticle3): Constantes { |
||
4208 | |||
4209 | /** |
||
4210 | * Set the champs critere article4. |
||
4211 | * |
||
4212 | * @param string|null $champsCritereArticle4 The champs critere article4. |
||
4213 | * @return Constantes Returns this Constantes. |
||
4214 | */ |
||
4215 | public function setChampsCritereArticle4(?string $champsCritereArticle4): Constantes { |
||
4219 | |||
4220 | /** |
||
4221 | * Set the champs critere article5. |
||
4222 | * |
||
4223 | * @param string|null $champsCritereArticle5 The champs critere article5. |
||
4224 | * @return Constantes Returns this Constantes. |
||
4225 | */ |
||
4226 | public function setChampsCritereArticle5(?string $champsCritereArticle5): Constantes { |
||
4230 | |||
4231 | /** |
||
4232 | * Set the champs critere article6. |
||
4233 | * |
||
4234 | * @param string|null $champsCritereArticle6 The champs critere article6. |
||
4235 | * @return Constantes Returns this Constantes. |
||
4236 | */ |
||
4237 | public function setChampsCritereArticle6(?string $champsCritereArticle6): Constantes { |
||
4241 | |||
4242 | /** |
||
4243 | * Set the champs critere article7. |
||
4244 | * |
||
4245 | * @param string|null $champsCritereArticle7 The champs critere article7. |
||
4246 | * @return Constantes Returns this Constantes. |
||
4247 | */ |
||
4248 | public function setChampsCritereArticle7(?string $champsCritereArticle7): Constantes { |
||
4252 | |||
4253 | /** |
||
4254 | * Set the champs critere article8. |
||
4255 | * |
||
4256 | * @param string|null $champsCritereArticle8 The champs critere article8. |
||
4257 | * @return Constantes Returns this Constantes. |
||
4258 | */ |
||
4259 | public function setChampsCritereArticle8(?string $champsCritereArticle8): Constantes { |
||
4263 | |||
4264 | /** |
||
4265 | * Set the champs critere article9. |
||
4266 | * |
||
4267 | * @param string|null $champsCritereArticle9 The champs critere article9. |
||
4268 | * @return Constantes Returns this Constantes. |
||
4269 | */ |
||
4270 | public function setChampsCritereArticle9(?string $champsCritereArticle9): Constantes { |
||
4274 | |||
4275 | /** |
||
4276 | * Set the champs critere ent piece1. |
||
4277 | * |
||
4278 | * @param string|null $champsCritereEntPiece1 The champs critere ent piece1. |
||
4279 | * @return Constantes Returns this Constantes. |
||
4280 | */ |
||
4281 | public function setChampsCritereEntPiece1(?string $champsCritereEntPiece1): Constantes { |
||
4285 | |||
4286 | /** |
||
4287 | * Set the champs critere ent piece10. |
||
4288 | * |
||
4289 | * @param string|null $champsCritereEntPiece10 The champs critere ent piece10. |
||
4290 | * @return Constantes Returns this Constantes. |
||
4291 | */ |
||
4292 | public function setChampsCritereEntPiece10(?string $champsCritereEntPiece10): Constantes { |
||
4296 | |||
4297 | /** |
||
4298 | * Set the champs critere ent piece2. |
||
4299 | * |
||
4300 | * @param string|null $champsCritereEntPiece2 The champs critere ent piece2. |
||
4301 | * @return Constantes Returns this Constantes. |
||
4302 | */ |
||
4303 | public function setChampsCritereEntPiece2(?string $champsCritereEntPiece2): Constantes { |
||
4307 | |||
4308 | /** |
||
4309 | * Set the champs critere ent piece3. |
||
4310 | * |
||
4311 | * @param string|null $champsCritereEntPiece3 The champs critere ent piece3. |
||
4312 | * @return Constantes Returns this Constantes. |
||
4313 | */ |
||
4314 | public function setChampsCritereEntPiece3(?string $champsCritereEntPiece3): Constantes { |
||
4318 | |||
4319 | /** |
||
4320 | * Set the champs critere ent piece4. |
||
4321 | * |
||
4322 | * @param string|null $champsCritereEntPiece4 The champs critere ent piece4. |
||
4323 | * @return Constantes Returns this Constantes. |
||
4324 | */ |
||
4325 | public function setChampsCritereEntPiece4(?string $champsCritereEntPiece4): Constantes { |
||
4329 | |||
4330 | /** |
||
4331 | * Set the champs critere ent piece5. |
||
4332 | * |
||
4333 | * @param string|null $champsCritereEntPiece5 The champs critere ent piece5. |
||
4334 | * @return Constantes Returns this Constantes. |
||
4335 | */ |
||
4336 | public function setChampsCritereEntPiece5(?string $champsCritereEntPiece5): Constantes { |
||
4340 | |||
4341 | /** |
||
4342 | * Set the champs critere ent piece6. |
||
4343 | * |
||
4344 | * @param string|null $champsCritereEntPiece6 The champs critere ent piece6. |
||
4345 | * @return Constantes Returns this Constantes. |
||
4346 | */ |
||
4347 | public function setChampsCritereEntPiece6(?string $champsCritereEntPiece6): Constantes { |
||
4351 | |||
4352 | /** |
||
4353 | * Set the champs critere ent piece7. |
||
4354 | * |
||
4355 | * @param string|null $champsCritereEntPiece7 The champs critere ent piece7. |
||
4356 | * @return Constantes Returns this Constantes. |
||
4357 | */ |
||
4358 | public function setChampsCritereEntPiece7(?string $champsCritereEntPiece7): Constantes { |
||
4362 | |||
4363 | /** |
||
4364 | * Set the champs critere ent piece8. |
||
4365 | * |
||
4366 | * @param string|null $champsCritereEntPiece8 The champs critere ent piece8. |
||
4367 | * @return Constantes Returns this Constantes. |
||
4368 | */ |
||
4369 | public function setChampsCritereEntPiece8(?string $champsCritereEntPiece8): Constantes { |
||
4373 | |||
4374 | /** |
||
4375 | * Set the champs critere ent piece9. |
||
4376 | * |
||
4377 | * @param string|null $champsCritereEntPiece9 The champs critere ent piece9. |
||
4378 | * @return Constantes Returns this Constantes. |
||
4379 | */ |
||
4380 | public function setChampsCritereEntPiece9(?string $champsCritereEntPiece9): Constantes { |
||
4384 | |||
4385 | /** |
||
4386 | * Set the chrono activation. |
||
4387 | * |
||
4388 | * @param bool|null $chronoActivation The chrono activation. |
||
4389 | * @return Constantes Returns this Constantes. |
||
4390 | */ |
||
4391 | public function setChronoActivation(?bool $chronoActivation): Constantes { |
||
4395 | |||
4396 | /** |
||
4397 | * Set the chrono prefixe. |
||
4398 | * |
||
4399 | * @param string|null $chronoPrefixe The chrono prefixe. |
||
4400 | * @return Constantes Returns this Constantes. |
||
4401 | */ |
||
4402 | public function setChronoPrefixe(?string $chronoPrefixe): Constantes { |
||
4406 | |||
4407 | /** |
||
4408 | * Set the chrono prochain num. |
||
4409 | * |
||
4410 | * @param int|null $chronoProchainNum The chrono prochain num. |
||
4411 | * @return Constantes Returns this Constantes. |
||
4412 | */ |
||
4413 | public function setChronoProchainNum(?int $chronoProchainNum): Constantes { |
||
4417 | |||
4418 | /** |
||
4419 | * Set the cle acces cn paie. |
||
4420 | * |
||
4421 | * @param string|null $cleAccesCnPaie The cle acces cn paie. |
||
4422 | * @return Constantes Returns this Constantes. |
||
4423 | */ |
||
4424 | public function setCleAccesCnPaie(?string $cleAccesCnPaie): Constantes { |
||
4428 | |||
4429 | /** |
||
4430 | * Set the cle acces fiche client. |
||
4431 | * |
||
4432 | * @param string|null $cleAccesFicheClient The cle acces fiche client. |
||
4433 | * @return Constantes Returns this Constantes. |
||
4434 | */ |
||
4435 | public function setCleAccesFicheClient(?string $cleAccesFicheClient): Constantes { |
||
4439 | |||
4440 | /** |
||
4441 | * Set the cle acces menus. |
||
4442 | * |
||
4443 | * @param string|null $cleAccesMenus The cle acces menus. |
||
4444 | * @return Constantes Returns this Constantes. |
||
4445 | */ |
||
4446 | public function setCleAccesMenus(?string $cleAccesMenus): Constantes { |
||
4450 | |||
4451 | /** |
||
4452 | * Set the cle acces param. |
||
4453 | * |
||
4454 | * @param string|null $cleAccesParam The cle acces param. |
||
4455 | * @return Constantes Returns this Constantes. |
||
4456 | */ |
||
4457 | public function setCleAccesParam(?string $cleAccesParam): Constantes { |
||
4461 | |||
4462 | /** |
||
4463 | * Set the cle des etr communs. |
||
4464 | * |
||
4465 | * @param string|null $cleDesEtrCommuns The cle des etr communs. |
||
4466 | * @return Constantes Returns this Constantes. |
||
4467 | */ |
||
4468 | public function setCleDesEtrCommuns(?string $cleDesEtrCommuns): Constantes { |
||
4472 | |||
4473 | /** |
||
4474 | * Set the cle jrn lib communs. |
||
4475 | * |
||
4476 | * @param string|null $cleJrnLibCommuns The cle jrn lib communs. |
||
4477 | * @return Constantes Returns this Constantes. |
||
4478 | */ |
||
4479 | public function setCleJrnLibCommuns(?string $cleJrnLibCommuns): Constantes { |
||
4483 | |||
4484 | /** |
||
4485 | * Set the code emetteur. |
||
4486 | * |
||
4487 | * @param string|null $codeEmetteur The code emetteur. |
||
4488 | * @return Constantes Returns this Constantes. |
||
4489 | */ |
||
4490 | public function setCodeEmetteur(?string $codeEmetteur): Constantes { |
||
4494 | |||
4495 | /** |
||
4496 | * Set the code expert defaut. |
||
4497 | * |
||
4498 | * @param string|null $codeExpertDefaut The code expert defaut. |
||
4499 | * @return Constantes Returns this Constantes. |
||
4500 | */ |
||
4501 | public function setCodeExpertDefaut(?string $codeExpertDefaut): Constantes { |
||
4505 | |||
4506 | /** |
||
4507 | * Set the code regroupement pre fact. |
||
4508 | * |
||
4509 | * @param string|null $codeRegroupementPreFact The code regroupement pre fact. |
||
4510 | * @return Constantes Returns this Constantes. |
||
4511 | */ |
||
4512 | public function setCodeRegroupementPreFact(?string $codeRegroupementPreFact): Constantes { |
||
4516 | |||
4517 | /** |
||
4518 | * Set the conversion pwd. |
||
4519 | * |
||
4520 | * @param bool|null $conversionPwd The conversion pwd. |
||
4521 | * @return Constantes Returns this Constantes. |
||
4522 | */ |
||
4523 | public function setConversionPwd(?bool $conversionPwd): Constantes { |
||
4527 | |||
4528 | /** |
||
4529 | * Set the cpte collectif cli. |
||
4530 | * |
||
4531 | * @param string|null $cpteCollectifCli The cpte collectif cli. |
||
4532 | * @return Constantes Returns this Constantes. |
||
4533 | */ |
||
4534 | public function setCpteCollectifCli(?string $cpteCollectifCli): Constantes { |
||
4538 | |||
4539 | /** |
||
4540 | * Set the cpte collectif frn. |
||
4541 | * |
||
4542 | * @param string|null $cpteCollectifFrn The cpte collectif frn. |
||
4543 | * @return Constantes Returns this Constantes. |
||
4544 | */ |
||
4545 | public function setCpteCollectifFrn(?string $cpteCollectifFrn): Constantes { |
||
4549 | |||
4550 | /** |
||
4551 | * Set the creation affaire. |
||
4552 | * |
||
4553 | * @param bool|null $creationAffaire The creation affaire. |
||
4554 | * @return Constantes Returns this Constantes. |
||
4555 | */ |
||
4556 | public function setCreationAffaire(?bool $creationAffaire): Constantes { |
||
4560 | |||
4561 | /** |
||
4562 | * Set the creation article. |
||
4563 | * |
||
4564 | * @param bool|null $creationArticle The creation article. |
||
4565 | * @return Constantes Returns this Constantes. |
||
4566 | */ |
||
4567 | public function setCreationArticle(?bool $creationArticle): Constantes { |
||
4571 | |||
4572 | /** |
||
4573 | * Set the creation bons travaux. |
||
4574 | * |
||
4575 | * @param bool|null $creationBonsTravaux The creation bons travaux. |
||
4576 | * @return Constantes Returns this Constantes. |
||
4577 | */ |
||
4578 | public function setCreationBonsTravaux(?bool $creationBonsTravaux): Constantes { |
||
4582 | |||
4583 | /** |
||
4584 | * Set the creation chantier. |
||
4585 | * |
||
4586 | * @param bool|null $creationChantier The creation chantier. |
||
4587 | * @return Constantes Returns this Constantes. |
||
4588 | */ |
||
4589 | public function setCreationChantier(?bool $creationChantier): Constantes { |
||
4593 | |||
4594 | /** |
||
4595 | * Set the creation client. |
||
4596 | * |
||
4597 | * @param bool|null $creationClient The creation client. |
||
4598 | * @return Constantes Returns this Constantes. |
||
4599 | */ |
||
4600 | public function setCreationClient(?bool $creationClient): Constantes { |
||
4604 | |||
4605 | /** |
||
4606 | * Set the creation commission. |
||
4607 | * |
||
4608 | * @param bool|null $creationCommission The creation commission. |
||
4609 | * @return Constantes Returns this Constantes. |
||
4610 | */ |
||
4611 | public function setCreationCommission(?bool $creationCommission): Constantes { |
||
4615 | |||
4616 | /** |
||
4617 | * Set the creation dossier cpta. |
||
4618 | * |
||
4619 | * @param bool|null $creationDossierCpta The creation dossier cpta. |
||
4620 | * @return Constantes Returns this Constantes. |
||
4621 | */ |
||
4622 | public function setCreationDossierCpta(?bool $creationDossierCpta): Constantes { |
||
4626 | |||
4627 | /** |
||
4628 | * Set the creation dossier fact. |
||
4629 | * |
||
4630 | * @param bool|null $creationDossierFact The creation dossier fact. |
||
4631 | * @return Constantes Returns this Constantes. |
||
4632 | */ |
||
4633 | public function setCreationDossierFact(?bool $creationDossierFact): Constantes { |
||
4637 | |||
4638 | /** |
||
4639 | * Set the creation dossier paie. |
||
4640 | * |
||
4641 | * @param bool|null $creationDossierPaie The creation dossier paie. |
||
4642 | * @return Constantes Returns this Constantes. |
||
4643 | */ |
||
4644 | public function setCreationDossierPaie(?bool $creationDossierPaie): Constantes { |
||
4648 | |||
4649 | /** |
||
4650 | * Set the creation fournisseur. |
||
4651 | * |
||
4652 | * @param bool|null $creationFournisseur The creation fournisseur. |
||
4653 | * @return Constantes Returns this Constantes. |
||
4654 | */ |
||
4655 | public function setCreationFournisseur(?bool $creationFournisseur): Constantes { |
||
4659 | |||
4660 | /** |
||
4661 | * Set the creation plan facturation. |
||
4662 | * |
||
4663 | * @param bool|null $creationPlanFacturation The creation plan facturation. |
||
4664 | * @return Constantes Returns this Constantes. |
||
4665 | */ |
||
4666 | public function setCreationPlanFacturation(?bool $creationPlanFacturation): Constantes { |
||
4670 | |||
4671 | /** |
||
4672 | * Set the creation plan tache. |
||
4673 | * |
||
4674 | * @param bool|null $creationPlanTache The creation plan tache. |
||
4675 | * @return Constantes Returns this Constantes. |
||
4676 | */ |
||
4677 | public function setCreationPlanTache(?bool $creationPlanTache): Constantes { |
||
4681 | |||
4682 | /** |
||
4683 | * Set the creation prospect. |
||
4684 | * |
||
4685 | * @param bool|null $creationProspect The creation prospect. |
||
4686 | * @return Constantes Returns this Constantes. |
||
4687 | */ |
||
4688 | public function setCreationProspect(?bool $creationProspect): Constantes { |
||
4692 | |||
4693 | /** |
||
4694 | * Set the creation tache. |
||
4695 | * |
||
4696 | * @param bool|null $creationTache The creation tache. |
||
4697 | * @return Constantes Returns this Constantes. |
||
4698 | */ |
||
4699 | public function setCreationTache(?bool $creationTache): Constantes { |
||
4703 | |||
4704 | /** |
||
4705 | * Set the creation tarif. |
||
4706 | * |
||
4707 | * @param bool|null $creationTarif The creation tarif. |
||
4708 | * @return Constantes Returns this Constantes. |
||
4709 | */ |
||
4710 | public function setCreationTarif(?bool $creationTarif): Constantes { |
||
4714 | |||
4715 | /** |
||
4716 | * Set the date cloture. |
||
4717 | * |
||
4718 | * @param DateTime|null $dateCloture The date cloture. |
||
4719 | * @return Constantes Returns this Constantes. |
||
4720 | */ |
||
4721 | public function setDateCloture(?DateTime $dateCloture): Constantes { |
||
4725 | |||
4726 | /** |
||
4727 | * Set the dt dern modif conf zone. |
||
4728 | * |
||
4729 | * @param DateTime|null $dtDernModifConfZone The dt dern modif conf zone. |
||
4730 | * @return Constantes Returns this Constantes. |
||
4731 | */ |
||
4732 | public function setDtDernModifConfZone(?DateTime $dtDernModifConfZone): Constantes { |
||
4736 | |||
4737 | /** |
||
4738 | * Set the ech aff en mt. |
||
4739 | * |
||
4740 | * @param bool|null $echAffEnMt The ech aff en mt. |
||
4741 | * @return Constantes Returns this Constantes. |
||
4742 | */ |
||
4743 | public function setEchAffEnMt(?bool $echAffEnMt): Constantes { |
||
4747 | |||
4748 | /** |
||
4749 | * Set the fonctionnement cga. |
||
4750 | * |
||
4751 | * @param bool|null $fonctionnementCga The fonctionnement cga. |
||
4752 | * @return Constantes Returns this Constantes. |
||
4753 | */ |
||
4754 | public function setFonctionnementCga(?bool $fonctionnementCga): Constantes { |
||
4758 | |||
4759 | /** |
||
4760 | * Set the heures trav1. |
||
4761 | * |
||
4762 | * @param float|null $heuresTrav1 The heures trav1. |
||
4763 | * @return Constantes Returns this Constantes. |
||
4764 | */ |
||
4765 | public function setHeuresTrav1(?float $heuresTrav1): Constantes { |
||
4769 | |||
4770 | /** |
||
4771 | * Set the heures trav2. |
||
4772 | * |
||
4773 | * @param float|null $heuresTrav2 The heures trav2. |
||
4774 | * @return Constantes Returns this Constantes. |
||
4775 | */ |
||
4776 | public function setHeuresTrav2(?float $heuresTrav2): Constantes { |
||
4780 | |||
4781 | /** |
||
4782 | * Set the heures trav3. |
||
4783 | * |
||
4784 | * @param float|null $heuresTrav3 The heures trav3. |
||
4785 | * @return Constantes Returns this Constantes. |
||
4786 | */ |
||
4787 | public function setHeuresTrav3(?float $heuresTrav3): Constantes { |
||
4791 | |||
4792 | /** |
||
4793 | * Set the heures trav4. |
||
4794 | * |
||
4795 | * @param float|null $heuresTrav4 The heures trav4. |
||
4796 | * @return Constantes Returns this Constantes. |
||
4797 | */ |
||
4798 | public function setHeuresTrav4(?float $heuresTrav4): Constantes { |
||
4802 | |||
4803 | /** |
||
4804 | * Set the increm auto. |
||
4805 | * |
||
4806 | * @param bool|null $incremAuto The increm auto. |
||
4807 | * @return Constantes Returns this Constantes. |
||
4808 | */ |
||
4809 | public function setIncremAuto(?bool $incremAuto): Constantes { |
||
4813 | |||
4814 | /** |
||
4815 | * Set the increm auto aff. |
||
4816 | * |
||
4817 | * @param bool|null $incremAutoAff The increm auto aff. |
||
4818 | * @return Constantes Returns this Constantes. |
||
4819 | */ |
||
4820 | public function setIncremAutoAff(?bool $incremAutoAff): Constantes { |
||
4824 | |||
4825 | /** |
||
4826 | * Set the increm auto frn. |
||
4827 | * |
||
4828 | * @param bool|null $incremAutoFrn The increm auto frn. |
||
4829 | * @return Constantes Returns this Constantes. |
||
4830 | */ |
||
4831 | public function setIncremAutoFrn(?bool $incremAutoFrn): Constantes { |
||
4835 | |||
4836 | /** |
||
4837 | * Set the increm cpte cli auto. |
||
4838 | * |
||
4839 | * @param bool|null $incremCpteCliAuto The increm cpte cli auto. |
||
4840 | * @return Constantes Returns this Constantes. |
||
4841 | */ |
||
4842 | public function setIncremCpteCliAuto(?bool $incremCpteCliAuto): Constantes { |
||
4846 | |||
4847 | /** |
||
4848 | * Set the increm cpte frn auto. |
||
4849 | * |
||
4850 | * @param bool|null $incremCpteFrnAuto The increm cpte frn auto. |
||
4851 | * @return Constantes Returns this Constantes. |
||
4852 | */ |
||
4853 | public function setIncremCpteFrnAuto(?bool $incremCpteFrnAuto): Constantes { |
||
4857 | |||
4858 | /** |
||
4859 | * Set the increment cpte cli. |
||
4860 | * |
||
4861 | * @param int|null $incrementCpteCli The increment cpte cli. |
||
4862 | * @return Constantes Returns this Constantes. |
||
4863 | */ |
||
4864 | public function setIncrementCpteCli(?int $incrementCpteCli): Constantes { |
||
4868 | |||
4869 | /** |
||
4870 | * Set the increment cpte frn. |
||
4871 | * |
||
4872 | * @param int|null $incrementCpteFrn The increment cpte frn. |
||
4873 | * @return Constantes Returns this Constantes. |
||
4874 | */ |
||
4875 | public function setIncrementCpteFrn(?int $incrementCpteFrn): Constantes { |
||
4879 | |||
4880 | /** |
||
4881 | * Set the liaison bu cpta. |
||
4882 | * |
||
4883 | * @param bool|null $liaisonBuCpta The liaison bu cpta. |
||
4884 | * @return Constantes Returns this Constantes. |
||
4885 | */ |
||
4886 | public function setLiaisonBuCpta(?bool $liaisonBuCpta): Constantes { |
||
4890 | |||
4891 | /** |
||
4892 | * Set the lib affectation1. |
||
4893 | * |
||
4894 | * @param string|null $libAffectation1 The lib affectation1. |
||
4895 | * @return Constantes Returns this Constantes. |
||
4896 | */ |
||
4897 | public function setLibAffectation1(?string $libAffectation1): Constantes { |
||
4901 | |||
4902 | /** |
||
4903 | * Set the lib affectation2. |
||
4904 | * |
||
4905 | * @param string|null $libAffectation2 The lib affectation2. |
||
4906 | * @return Constantes Returns this Constantes. |
||
4907 | */ |
||
4908 | public function setLibAffectation2(?string $libAffectation2): Constantes { |
||
4912 | |||
4913 | /** |
||
4914 | * Set the lib affectation3. |
||
4915 | * |
||
4916 | * @param string|null $libAffectation3 The lib affectation3. |
||
4917 | * @return Constantes Returns this Constantes. |
||
4918 | */ |
||
4919 | public function setLibAffectation3(?string $libAffectation3): Constantes { |
||
4923 | |||
4924 | /** |
||
4925 | * Set the lib affectation4. |
||
4926 | * |
||
4927 | * @param string|null $libAffectation4 The lib affectation4. |
||
4928 | * @return Constantes Returns this Constantes. |
||
4929 | */ |
||
4930 | public function setLibAffectation4(?string $libAffectation4): Constantes { |
||
4934 | |||
4935 | /** |
||
4936 | * Set the lib affectation5. |
||
4937 | * |
||
4938 | * @param string|null $libAffectation5 The lib affectation5. |
||
4939 | * @return Constantes Returns this Constantes. |
||
4940 | */ |
||
4941 | public function setLibAffectation5(?string $libAffectation5): Constantes { |
||
4945 | |||
4946 | /** |
||
4947 | * Set the lib affectation6. |
||
4948 | * |
||
4949 | * @param string|null $libAffectation6 The lib affectation6. |
||
4950 | * @return Constantes Returns this Constantes. |
||
4951 | */ |
||
4952 | public function setLibAffectation6(?string $libAffectation6): Constantes { |
||
4956 | |||
4957 | /** |
||
4958 | * Set the lib affectation7. |
||
4959 | * |
||
4960 | * @param string|null $libAffectation7 The lib affectation7. |
||
4961 | * @return Constantes Returns this Constantes. |
||
4962 | */ |
||
4963 | public function setLibAffectation7(?string $libAffectation7): Constantes { |
||
4967 | |||
4968 | /** |
||
4969 | * Set the lib critere1. |
||
4970 | * |
||
4971 | * @param string|null $libCritere1 The lib critere1. |
||
4972 | * @return Constantes Returns this Constantes. |
||
4973 | */ |
||
4974 | public function setLibCritere1(?string $libCritere1): Constantes { |
||
4978 | |||
4979 | /** |
||
4980 | * Set the lib critere10. |
||
4981 | * |
||
4982 | * @param string|null $libCritere10 The lib critere10. |
||
4983 | * @return Constantes Returns this Constantes. |
||
4984 | */ |
||
4985 | public function setLibCritere10(?string $libCritere10): Constantes { |
||
4989 | |||
4990 | /** |
||
4991 | * Set the lib critere2. |
||
4992 | * |
||
4993 | * @param string|null $libCritere2 The lib critere2. |
||
4994 | * @return Constantes Returns this Constantes. |
||
4995 | */ |
||
4996 | public function setLibCritere2(?string $libCritere2): Constantes { |
||
5000 | |||
5001 | /** |
||
5002 | * Set the lib critere3. |
||
5003 | * |
||
5004 | * @param string|null $libCritere3 The lib critere3. |
||
5005 | * @return Constantes Returns this Constantes. |
||
5006 | */ |
||
5007 | public function setLibCritere3(?string $libCritere3): Constantes { |
||
5011 | |||
5012 | /** |
||
5013 | * Set the lib critere4. |
||
5014 | * |
||
5015 | * @param string|null $libCritere4 The lib critere4. |
||
5016 | * @return Constantes Returns this Constantes. |
||
5017 | */ |
||
5018 | public function setLibCritere4(?string $libCritere4): Constantes { |
||
5022 | |||
5023 | /** |
||
5024 | * Set the lib critere5. |
||
5025 | * |
||
5026 | * @param string|null $libCritere5 The lib critere5. |
||
5027 | * @return Constantes Returns this Constantes. |
||
5028 | */ |
||
5029 | public function setLibCritere5(?string $libCritere5): Constantes { |
||
5033 | |||
5034 | /** |
||
5035 | * Set the lib critere6. |
||
5036 | * |
||
5037 | * @param string|null $libCritere6 The lib critere6. |
||
5038 | * @return Constantes Returns this Constantes. |
||
5039 | */ |
||
5040 | public function setLibCritere6(?string $libCritere6): Constantes { |
||
5044 | |||
5045 | /** |
||
5046 | * Set the lib critere7. |
||
5047 | * |
||
5048 | * @param string|null $libCritere7 The lib critere7. |
||
5049 | * @return Constantes Returns this Constantes. |
||
5050 | */ |
||
5051 | public function setLibCritere7(?string $libCritere7): Constantes { |
||
5055 | |||
5056 | /** |
||
5057 | * Set the lib critere8. |
||
5058 | * |
||
5059 | * @param string|null $libCritere8 The lib critere8. |
||
5060 | * @return Constantes Returns this Constantes. |
||
5061 | */ |
||
5062 | public function setLibCritere8(?string $libCritere8): Constantes { |
||
5066 | |||
5067 | /** |
||
5068 | * Set the lib critere9. |
||
5069 | * |
||
5070 | * @param string|null $libCritere9 The lib critere9. |
||
5071 | * @return Constantes Returns this Constantes. |
||
5072 | */ |
||
5073 | public function setLibCritere9(?string $libCritere9): Constantes { |
||
5077 | |||
5078 | /** |
||
5079 | * Set the lib critere affaire1. |
||
5080 | * |
||
5081 | * @param string|null $libCritereAffaire1 The lib critere affaire1. |
||
5082 | * @return Constantes Returns this Constantes. |
||
5083 | */ |
||
5084 | public function setLibCritereAffaire1(?string $libCritereAffaire1): Constantes { |
||
5088 | |||
5089 | /** |
||
5090 | * Set the lib critere affaire10. |
||
5091 | * |
||
5092 | * @param string|null $libCritereAffaire10 The lib critere affaire10. |
||
5093 | * @return Constantes Returns this Constantes. |
||
5094 | */ |
||
5095 | public function setLibCritereAffaire10(?string $libCritereAffaire10): Constantes { |
||
5099 | |||
5100 | /** |
||
5101 | * Set the lib critere affaire2. |
||
5102 | * |
||
5103 | * @param string|null $libCritereAffaire2 The lib critere affaire2. |
||
5104 | * @return Constantes Returns this Constantes. |
||
5105 | */ |
||
5106 | public function setLibCritereAffaire2(?string $libCritereAffaire2): Constantes { |
||
5110 | |||
5111 | /** |
||
5112 | * Set the lib critere affaire3. |
||
5113 | * |
||
5114 | * @param string|null $libCritereAffaire3 The lib critere affaire3. |
||
5115 | * @return Constantes Returns this Constantes. |
||
5116 | */ |
||
5117 | public function setLibCritereAffaire3(?string $libCritereAffaire3): Constantes { |
||
5121 | |||
5122 | /** |
||
5123 | * Set the lib critere affaire4. |
||
5124 | * |
||
5125 | * @param string|null $libCritereAffaire4 The lib critere affaire4. |
||
5126 | * @return Constantes Returns this Constantes. |
||
5127 | */ |
||
5128 | public function setLibCritereAffaire4(?string $libCritereAffaire4): Constantes { |
||
5132 | |||
5133 | /** |
||
5134 | * Set the lib critere affaire5. |
||
5135 | * |
||
5136 | * @param string|null $libCritereAffaire5 The lib critere affaire5. |
||
5137 | * @return Constantes Returns this Constantes. |
||
5138 | */ |
||
5139 | public function setLibCritereAffaire5(?string $libCritereAffaire5): Constantes { |
||
5143 | |||
5144 | /** |
||
5145 | * Set the lib critere affaire6. |
||
5146 | * |
||
5147 | * @param string|null $libCritereAffaire6 The lib critere affaire6. |
||
5148 | * @return Constantes Returns this Constantes. |
||
5149 | */ |
||
5150 | public function setLibCritereAffaire6(?string $libCritereAffaire6): Constantes { |
||
5154 | |||
5155 | /** |
||
5156 | * Set the lib critere affaire7. |
||
5157 | * |
||
5158 | * @param string|null $libCritereAffaire7 The lib critere affaire7. |
||
5159 | * @return Constantes Returns this Constantes. |
||
5160 | */ |
||
5161 | public function setLibCritereAffaire7(?string $libCritereAffaire7): Constantes { |
||
5165 | |||
5166 | /** |
||
5167 | * Set the lib critere affaire8. |
||
5168 | * |
||
5169 | * @param string|null $libCritereAffaire8 The lib critere affaire8. |
||
5170 | * @return Constantes Returns this Constantes. |
||
5171 | */ |
||
5172 | public function setLibCritereAffaire8(?string $libCritereAffaire8): Constantes { |
||
5176 | |||
5177 | /** |
||
5178 | * Set the lib critere affaire9. |
||
5179 | * |
||
5180 | * @param string|null $libCritereAffaire9 The lib critere affaire9. |
||
5181 | * @return Constantes Returns this Constantes. |
||
5182 | */ |
||
5183 | public function setLibCritereAffaire9(?string $libCritereAffaire9): Constantes { |
||
5187 | |||
5188 | /** |
||
5189 | * Set the lib critere article1. |
||
5190 | * |
||
5191 | * @param string|null $libCritereArticle1 The lib critere article1. |
||
5192 | * @return Constantes Returns this Constantes. |
||
5193 | */ |
||
5194 | public function setLibCritereArticle1(?string $libCritereArticle1): Constantes { |
||
5198 | |||
5199 | /** |
||
5200 | * Set the lib critere article10. |
||
5201 | * |
||
5202 | * @param string|null $libCritereArticle10 The lib critere article10. |
||
5203 | * @return Constantes Returns this Constantes. |
||
5204 | */ |
||
5205 | public function setLibCritereArticle10(?string $libCritereArticle10): Constantes { |
||
5209 | |||
5210 | /** |
||
5211 | * Set the lib critere article2. |
||
5212 | * |
||
5213 | * @param string|null $libCritereArticle2 The lib critere article2. |
||
5214 | * @return Constantes Returns this Constantes. |
||
5215 | */ |
||
5216 | public function setLibCritereArticle2(?string $libCritereArticle2): Constantes { |
||
5220 | |||
5221 | /** |
||
5222 | * Set the lib critere article3. |
||
5223 | * |
||
5224 | * @param string|null $libCritereArticle3 The lib critere article3. |
||
5225 | * @return Constantes Returns this Constantes. |
||
5226 | */ |
||
5227 | public function setLibCritereArticle3(?string $libCritereArticle3): Constantes { |
||
5231 | |||
5232 | /** |
||
5233 | * Set the lib critere article4. |
||
5234 | * |
||
5235 | * @param string|null $libCritereArticle4 The lib critere article4. |
||
5236 | * @return Constantes Returns this Constantes. |
||
5237 | */ |
||
5238 | public function setLibCritereArticle4(?string $libCritereArticle4): Constantes { |
||
5242 | |||
5243 | /** |
||
5244 | * Set the lib critere article5. |
||
5245 | * |
||
5246 | * @param string|null $libCritereArticle5 The lib critere article5. |
||
5247 | * @return Constantes Returns this Constantes. |
||
5248 | */ |
||
5249 | public function setLibCritereArticle5(?string $libCritereArticle5): Constantes { |
||
5253 | |||
5254 | /** |
||
5255 | * Set the lib critere article6. |
||
5256 | * |
||
5257 | * @param string|null $libCritereArticle6 The lib critere article6. |
||
5258 | * @return Constantes Returns this Constantes. |
||
5259 | */ |
||
5260 | public function setLibCritereArticle6(?string $libCritereArticle6): Constantes { |
||
5264 | |||
5265 | /** |
||
5266 | * Set the lib critere article7. |
||
5267 | * |
||
5268 | * @param string|null $libCritereArticle7 The lib critere article7. |
||
5269 | * @return Constantes Returns this Constantes. |
||
5270 | */ |
||
5271 | public function setLibCritereArticle7(?string $libCritereArticle7): Constantes { |
||
5275 | |||
5276 | /** |
||
5277 | * Set the lib critere article8. |
||
5278 | * |
||
5279 | * @param string|null $libCritereArticle8 The lib critere article8. |
||
5280 | * @return Constantes Returns this Constantes. |
||
5281 | */ |
||
5282 | public function setLibCritereArticle8(?string $libCritereArticle8): Constantes { |
||
5286 | |||
5287 | /** |
||
5288 | * Set the lib critere article9. |
||
5289 | * |
||
5290 | * @param string|null $libCritereArticle9 The lib critere article9. |
||
5291 | * @return Constantes Returns this Constantes. |
||
5292 | */ |
||
5293 | public function setLibCritereArticle9(?string $libCritereArticle9): Constantes { |
||
5297 | |||
5298 | /** |
||
5299 | * Set the lib critere ent piece1. |
||
5300 | * |
||
5301 | * @param string|null $libCritereEntPiece1 The lib critere ent piece1. |
||
5302 | * @return Constantes Returns this Constantes. |
||
5303 | */ |
||
5304 | public function setLibCritereEntPiece1(?string $libCritereEntPiece1): Constantes { |
||
5308 | |||
5309 | /** |
||
5310 | * Set the lib critere ent piece10. |
||
5311 | * |
||
5312 | * @param string|null $libCritereEntPiece10 The lib critere ent piece10. |
||
5313 | * @return Constantes Returns this Constantes. |
||
5314 | */ |
||
5315 | public function setLibCritereEntPiece10(?string $libCritereEntPiece10): Constantes { |
||
5319 | |||
5320 | /** |
||
5321 | * Set the lib critere ent piece2. |
||
5322 | * |
||
5323 | * @param string|null $libCritereEntPiece2 The lib critere ent piece2. |
||
5324 | * @return Constantes Returns this Constantes. |
||
5325 | */ |
||
5326 | public function setLibCritereEntPiece2(?string $libCritereEntPiece2): Constantes { |
||
5330 | |||
5331 | /** |
||
5332 | * Set the lib critere ent piece3. |
||
5333 | * |
||
5334 | * @param string|null $libCritereEntPiece3 The lib critere ent piece3. |
||
5335 | * @return Constantes Returns this Constantes. |
||
5336 | */ |
||
5337 | public function setLibCritereEntPiece3(?string $libCritereEntPiece3): Constantes { |
||
5341 | |||
5342 | /** |
||
5343 | * Set the lib critere ent piece4. |
||
5344 | * |
||
5345 | * @param string|null $libCritereEntPiece4 The lib critere ent piece4. |
||
5346 | * @return Constantes Returns this Constantes. |
||
5347 | */ |
||
5348 | public function setLibCritereEntPiece4(?string $libCritereEntPiece4): Constantes { |
||
5352 | |||
5353 | /** |
||
5354 | * Set the lib critere ent piece5. |
||
5355 | * |
||
5356 | * @param string|null $libCritereEntPiece5 The lib critere ent piece5. |
||
5357 | * @return Constantes Returns this Constantes. |
||
5358 | */ |
||
5359 | public function setLibCritereEntPiece5(?string $libCritereEntPiece5): Constantes { |
||
5363 | |||
5364 | /** |
||
5365 | * Set the lib critere ent piece6. |
||
5366 | * |
||
5367 | * @param string|null $libCritereEntPiece6 The lib critere ent piece6. |
||
5368 | * @return Constantes Returns this Constantes. |
||
5369 | */ |
||
5370 | public function setLibCritereEntPiece6(?string $libCritereEntPiece6): Constantes { |
||
5374 | |||
5375 | /** |
||
5376 | * Set the lib critere ent piece7. |
||
5377 | * |
||
5378 | * @param string|null $libCritereEntPiece7 The lib critere ent piece7. |
||
5379 | * @return Constantes Returns this Constantes. |
||
5380 | */ |
||
5381 | public function setLibCritereEntPiece7(?string $libCritereEntPiece7): Constantes { |
||
5385 | |||
5386 | /** |
||
5387 | * Set the lib critere ent piece8. |
||
5388 | * |
||
5389 | * @param string|null $libCritereEntPiece8 The lib critere ent piece8. |
||
5390 | * @return Constantes Returns this Constantes. |
||
5391 | */ |
||
5392 | public function setLibCritereEntPiece8(?string $libCritereEntPiece8): Constantes { |
||
5396 | |||
5397 | /** |
||
5398 | * Set the lib critere ent piece9. |
||
5399 | * |
||
5400 | * @param string|null $libCritereEntPiece9 The lib critere ent piece9. |
||
5401 | * @return Constantes Returns this Constantes. |
||
5402 | */ |
||
5403 | public function setLibCritereEntPiece9(?string $libCritereEntPiece9): Constantes { |
||
5407 | |||
5408 | /** |
||
5409 | * Set the lib critere interloc. |
||
5410 | * |
||
5411 | * @param string|null $libCritereInterloc The lib critere interloc. |
||
5412 | * @return Constantes Returns this Constantes. |
||
5413 | */ |
||
5414 | public function setLibCritereInterloc(?string $libCritereInterloc): Constantes { |
||
5418 | |||
5419 | /** |
||
5420 | * Set the lib critere interloc2. |
||
5421 | * |
||
5422 | * @param string|null $libCritereInterloc2 The lib critere interloc2. |
||
5423 | * @return Constantes Returns this Constantes. |
||
5424 | */ |
||
5425 | public function setLibCritereInterloc2(?string $libCritereInterloc2): Constantes { |
||
5429 | |||
5430 | /** |
||
5431 | * Set the major heures trav1. |
||
5432 | * |
||
5433 | * @param float|null $majorHeuresTrav1 The major heures trav1. |
||
5434 | * @return Constantes Returns this Constantes. |
||
5435 | */ |
||
5436 | public function setMajorHeuresTrav1(?float $majorHeuresTrav1): Constantes { |
||
5440 | |||
5441 | /** |
||
5442 | * Set the major heures trav2. |
||
5443 | * |
||
5444 | * @param float|null $majorHeuresTrav2 The major heures trav2. |
||
5445 | * @return Constantes Returns this Constantes. |
||
5446 | */ |
||
5447 | public function setMajorHeuresTrav2(?float $majorHeuresTrav2): Constantes { |
||
5451 | |||
5452 | /** |
||
5453 | * Set the major heures trav3. |
||
5454 | * |
||
5455 | * @param float|null $majorHeuresTrav3 The major heures trav3. |
||
5456 | * @return Constantes Returns this Constantes. |
||
5457 | */ |
||
5458 | public function setMajorHeuresTrav3(?float $majorHeuresTrav3): Constantes { |
||
5462 | |||
5463 | /** |
||
5464 | * Set the major heures trav4. |
||
5465 | * |
||
5466 | * @param float|null $majorHeuresTrav4 The major heures trav4. |
||
5467 | * @return Constantes Returns this Constantes. |
||
5468 | */ |
||
5469 | public function setMajorHeuresTrav4(?float $majorHeuresTrav4): Constantes { |
||
5473 | |||
5474 | /** |
||
5475 | * Set the mnt ticket resto a. |
||
5476 | * |
||
5477 | * @param float|null $mntTicketRestoA The mnt ticket resto a. |
||
5478 | * @return Constantes Returns this Constantes. |
||
5479 | */ |
||
5480 | public function setMntTicketRestoA(?float $mntTicketRestoA): Constantes { |
||
5484 | |||
5485 | /** |
||
5486 | * Set the mnt ticket resto b. |
||
5487 | * |
||
5488 | * @param float|null $mntTicketRestoB The mnt ticket resto b. |
||
5489 | * @return Constantes Returns this Constantes. |
||
5490 | */ |
||
5491 | public function setMntTicketRestoB(?float $mntTicketRestoB): Constantes { |
||
5495 | |||
5496 | /** |
||
5497 | * Set the mnt ticket resto c. |
||
5498 | * |
||
5499 | * @param float|null $mntTicketRestoC The mnt ticket resto c. |
||
5500 | * @return Constantes Returns this Constantes. |
||
5501 | */ |
||
5502 | public function setMntTicketRestoC(?float $mntTicketRestoC): Constantes { |
||
5506 | |||
5507 | /** |
||
5508 | * Set the mnt ticket resto d. |
||
5509 | * |
||
5510 | * @param float|null $mntTicketRestoD The mnt ticket resto d. |
||
5511 | * @return Constantes Returns this Constantes. |
||
5512 | */ |
||
5513 | public function setMntTicketRestoD(?float $mntTicketRestoD): Constantes { |
||
5517 | |||
5518 | /** |
||
5519 | * Set the mnt ticket resto e. |
||
5520 | * |
||
5521 | * @param float|null $mntTicketRestoE The mnt ticket resto e. |
||
5522 | * @return Constantes Returns this Constantes. |
||
5523 | */ |
||
5524 | public function setMntTicketRestoE(?float $mntTicketRestoE): Constantes { |
||
5528 | |||
5529 | /** |
||
5530 | * Set the modif affaire. |
||
5531 | * |
||
5532 | * @param string|null $modifAffaire The modif affaire. |
||
5533 | * @return Constantes Returns this Constantes. |
||
5534 | */ |
||
5535 | public function setModifAffaire(?string $modifAffaire): Constantes { |
||
5539 | |||
5540 | /** |
||
5541 | * Set the modif article. |
||
5542 | * |
||
5543 | * @param string|null $modifArticle The modif article. |
||
5544 | * @return Constantes Returns this Constantes. |
||
5545 | */ |
||
5546 | public function setModifArticle(?string $modifArticle): Constantes { |
||
5550 | |||
5551 | /** |
||
5552 | * Set the modif bons travaux. |
||
5553 | * |
||
5554 | * @param string|null $modifBonsTravaux The modif bons travaux. |
||
5555 | * @return Constantes Returns this Constantes. |
||
5556 | */ |
||
5557 | public function setModifBonsTravaux(?string $modifBonsTravaux): Constantes { |
||
5561 | |||
5562 | /** |
||
5563 | * Set the modif chantier. |
||
5564 | * |
||
5565 | * @param string|null $modifChantier The modif chantier. |
||
5566 | * @return Constantes Returns this Constantes. |
||
5567 | */ |
||
5568 | public function setModifChantier(?string $modifChantier): Constantes { |
||
5572 | |||
5573 | /** |
||
5574 | * Set the modif client. |
||
5575 | * |
||
5576 | * @param string|null $modifClient The modif client. |
||
5577 | * @return Constantes Returns this Constantes. |
||
5578 | */ |
||
5579 | public function setModifClient(?string $modifClient): Constantes { |
||
5583 | |||
5584 | /** |
||
5585 | * Set the modif commission. |
||
5586 | * |
||
5587 | * @param string|null $modifCommission The modif commission. |
||
5588 | * @return Constantes Returns this Constantes. |
||
5589 | */ |
||
5590 | public function setModifCommission(?string $modifCommission): Constantes { |
||
5594 | |||
5595 | /** |
||
5596 | * Set the modif dossier fact. |
||
5597 | * |
||
5598 | * @param string|null $modifDossierFact The modif dossier fact. |
||
5599 | * @return Constantes Returns this Constantes. |
||
5600 | */ |
||
5601 | public function setModifDossierFact(?string $modifDossierFact): Constantes { |
||
5605 | |||
5606 | /** |
||
5607 | * Set the modif fournisseur. |
||
5608 | * |
||
5609 | * @param string|null $modifFournisseur The modif fournisseur. |
||
5610 | * @return Constantes Returns this Constantes. |
||
5611 | */ |
||
5612 | public function setModifFournisseur(?string $modifFournisseur): Constantes { |
||
5616 | |||
5617 | /** |
||
5618 | * Set the modif plan facturation. |
||
5619 | * |
||
5620 | * @param string|null $modifPlanFacturation The modif plan facturation. |
||
5621 | * @return Constantes Returns this Constantes. |
||
5622 | */ |
||
5623 | public function setModifPlanFacturation(?string $modifPlanFacturation): Constantes { |
||
5627 | |||
5628 | /** |
||
5629 | * Set the modif plan tache. |
||
5630 | * |
||
5631 | * @param string|null $modifPlanTache The modif plan tache. |
||
5632 | * @return Constantes Returns this Constantes. |
||
5633 | */ |
||
5634 | public function setModifPlanTache(?string $modifPlanTache): Constantes { |
||
5638 | |||
5639 | /** |
||
5640 | * Set the modif tache. |
||
5641 | * |
||
5642 | * @param string|null $modifTache The modif tache. |
||
5643 | * @return Constantes Returns this Constantes. |
||
5644 | */ |
||
5645 | public function setModifTache(?string $modifTache): Constantes { |
||
5649 | |||
5650 | /** |
||
5651 | * Set the modif tarif. |
||
5652 | * |
||
5653 | * @param string|null $modifTarif The modif tarif. |
||
5654 | * @return Constantes Returns this Constantes. |
||
5655 | */ |
||
5656 | public function setModifTarif(?string $modifTarif): Constantes { |
||
5660 | |||
5661 | /** |
||
5662 | * Set the monnaie. |
||
5663 | * |
||
5664 | * @param string|null $monnaie The monnaie. |
||
5665 | * @return Constantes Returns this Constantes. |
||
5666 | */ |
||
5667 | public function setMonnaie(?string $monnaie): Constantes { |
||
5671 | |||
5672 | /** |
||
5673 | * Set the nb dec monnaie. |
||
5674 | * |
||
5675 | * @param int|null $nbDecMonnaie The nb dec monnaie. |
||
5676 | * @return Constantes Returns this Constantes. |
||
5677 | */ |
||
5678 | public function setNbDecMonnaie(?int $nbDecMonnaie): Constantes { |
||
5682 | |||
5683 | /** |
||
5684 | * Set the no doss cpta. |
||
5685 | * |
||
5686 | * @param string|null $noDossCpta The no doss cpta. |
||
5687 | * @return Constantes Returns this Constantes. |
||
5688 | */ |
||
5689 | public function setNoDossCpta(?string $noDossCpta): Constantes { |
||
5693 | |||
5694 | /** |
||
5695 | * Set the no doss paie. |
||
5696 | * |
||
5697 | * @param string|null $noDossPaie The no doss paie. |
||
5698 | * @return Constantes Returns this Constantes. |
||
5699 | */ |
||
5700 | public function setNoDossPaie(?string $noDossPaie): Constantes { |
||
5704 | |||
5705 | /** |
||
5706 | * Set the prefixe aff. |
||
5707 | * |
||
5708 | * @param string|null $prefixeAff The prefixe aff. |
||
5709 | * @return Constantes Returns this Constantes. |
||
5710 | */ |
||
5711 | public function setPrefixeAff(?string $prefixeAff): Constantes { |
||
5715 | |||
5716 | /** |
||
5717 | * Set the priorite saisie aff. |
||
5718 | * |
||
5719 | * @param int|null $prioriteSaisieAff The priorite saisie aff. |
||
5720 | * @return Constantes Returns this Constantes. |
||
5721 | */ |
||
5722 | public function setPrioriteSaisieAff(?int $prioriteSaisieAff): Constantes { |
||
5726 | |||
5727 | /** |
||
5728 | * Set the priorite saisie client. |
||
5729 | * |
||
5730 | * @param int|null $prioriteSaisieClient The priorite saisie client. |
||
5731 | * @return Constantes Returns this Constantes. |
||
5732 | */ |
||
5733 | public function setPrioriteSaisieClient(?int $prioriteSaisieClient): Constantes { |
||
5737 | |||
5738 | /** |
||
5739 | * Set the priorite saisie frn. |
||
5740 | * |
||
5741 | * @param int|null $prioriteSaisieFrn The priorite saisie frn. |
||
5742 | * @return Constantes Returns this Constantes. |
||
5743 | */ |
||
5744 | public function setPrioriteSaisieFrn(?int $prioriteSaisieFrn): Constantes { |
||
5748 | |||
5749 | /** |
||
5750 | * Set the prochain cpte cli. |
||
5751 | * |
||
5752 | * @param string|null $prochainCpteCli The prochain cpte cli. |
||
5753 | * @return Constantes Returns this Constantes. |
||
5754 | */ |
||
5755 | public function setProchainCpteCli(?string $prochainCpteCli): Constantes { |
||
5759 | |||
5760 | /** |
||
5761 | * Set the prochain cpte frn. |
||
5762 | * |
||
5763 | * @param string|null $prochainCpteFrn The prochain cpte frn. |
||
5764 | * @return Constantes Returns this Constantes. |
||
5765 | */ |
||
5766 | public function setProchainCpteFrn(?string $prochainCpteFrn): Constantes { |
||
5770 | |||
5771 | /** |
||
5772 | * Set the prochain mois oblig. |
||
5773 | * |
||
5774 | * @param DateTime|null $prochainMoisOblig The prochain mois oblig. |
||
5775 | * @return Constantes Returns this Constantes. |
||
5776 | */ |
||
5777 | public function setProchainMoisOblig(?DateTime $prochainMoisOblig): Constantes { |
||
5781 | |||
5782 | /** |
||
5783 | * Set the prochain num aff. |
||
5784 | * |
||
5785 | * @param int|null $prochainNumAff The prochain num aff. |
||
5786 | * @return Constantes Returns this Constantes. |
||
5787 | */ |
||
5788 | public function setProchainNumAff(?int $prochainNumAff): Constantes { |
||
5792 | |||
5793 | /** |
||
5794 | * Set the px km a. |
||
5795 | * |
||
5796 | * @param float|null $pxKmA The px km a. |
||
5797 | * @return Constantes Returns this Constantes. |
||
5798 | */ |
||
5799 | public function setPxKmA(?float $pxKmA): Constantes { |
||
5803 | |||
5804 | /** |
||
5805 | * Set the px km b. |
||
5806 | * |
||
5807 | * @param float|null $pxKmB The px km b. |
||
5808 | * @return Constantes Returns this Constantes. |
||
5809 | */ |
||
5810 | public function setPxKmB(?float $pxKmB): Constantes { |
||
5814 | |||
5815 | /** |
||
5816 | * Set the px km c. |
||
5817 | * |
||
5818 | * @param float|null $pxKmC The px km c. |
||
5819 | * @return Constantes Returns this Constantes. |
||
5820 | */ |
||
5821 | public function setPxKmC(?float $pxKmC): Constantes { |
||
5825 | |||
5826 | /** |
||
5827 | * Set the px km d. |
||
5828 | * |
||
5829 | * @param float|null $pxKmD The px km d. |
||
5830 | * @return Constantes Returns this Constantes. |
||
5831 | */ |
||
5832 | public function setPxKmD(?float $pxKmD): Constantes { |
||
5836 | |||
5837 | /** |
||
5838 | * Set the px km e. |
||
5839 | * |
||
5840 | * @param float|null $pxKmE The px km e. |
||
5841 | * @return Constantes Returns this Constantes. |
||
5842 | */ |
||
5843 | public function setPxKmE(?float $pxKmE): Constantes { |
||
5847 | |||
5848 | /** |
||
5849 | * Set the qet code collaborateur dest. |
||
5850 | * |
||
5851 | * @param string|null $qetCodeCollaborateurDest The qet code collaborateur dest. |
||
5852 | * @return Constantes Returns this Constantes. |
||
5853 | */ |
||
5854 | public function setQetCodeCollaborateurDest(?string $qetCodeCollaborateurDest): Constantes { |
||
5858 | |||
5859 | /** |
||
5860 | * Set the qtel code mission. |
||
5861 | * |
||
5862 | * @param string|null $qtelCodeMission The qtel code mission. |
||
5863 | * @return Constantes Returns this Constantes. |
||
5864 | */ |
||
5865 | public function setQtelCodeMission(?string $qtelCodeMission): Constantes { |
||
5869 | |||
5870 | /** |
||
5871 | * Set the qtel code tache. |
||
5872 | * |
||
5873 | * @param string|null $qtelCodeTache The qtel code tache. |
||
5874 | * @return Constantes Returns this Constantes. |
||
5875 | */ |
||
5876 | public function setQtelCodeTache(?string $qtelCodeTache): Constantes { |
||
5880 | |||
5881 | /** |
||
5882 | * Set the qtel special. |
||
5883 | * |
||
5884 | * @param int|null $qtelSpecial The qtel special. |
||
5885 | * @return Constantes Returns this Constantes. |
||
5886 | */ |
||
5887 | public function setQtelSpecial(?int $qtelSpecial): Constantes { |
||
5891 | |||
5892 | /** |
||
5893 | * Set the rac data cpta. |
||
5894 | * |
||
5895 | * @param string|null $racDataCpta The rac data cpta. |
||
5896 | * @return Constantes Returns this Constantes. |
||
5897 | */ |
||
5898 | public function setRacDataCpta(?string $racDataCpta): Constantes { |
||
5902 | |||
5903 | /** |
||
5904 | * Set the rac data paie. |
||
5905 | * |
||
5906 | * @param string|null $racDataPaie The rac data paie. |
||
5907 | * @return Constantes Returns this Constantes. |
||
5908 | */ |
||
5909 | public function setRacDataPaie(?string $racDataPaie): Constantes { |
||
5913 | |||
5914 | /** |
||
5915 | * Set the radical compte cli. |
||
5916 | * |
||
5917 | * @param string|null $radicalCompteCli The radical compte cli. |
||
5918 | * @return Constantes Returns this Constantes. |
||
5919 | */ |
||
5920 | public function setRadicalCompteCli(?string $radicalCompteCli): Constantes { |
||
5924 | |||
5925 | /** |
||
5926 | * Set the radical compte frn. |
||
5927 | * |
||
5928 | * @param string|null $radicalCompteFrn The radical compte frn. |
||
5929 | * @return Constantes Returns this Constantes. |
||
5930 | */ |
||
5931 | public function setRadicalCompteFrn(?string $radicalCompteFrn): Constantes { |
||
5935 | |||
5936 | /** |
||
5937 | * Set the sais date fin. |
||
5938 | * |
||
5939 | * @param bool|null $saisDateFin The sais date fin. |
||
5940 | * @return Constantes Returns this Constantes. |
||
5941 | */ |
||
5942 | public function setSaisDateFin(?bool $saisDateFin): Constantes { |
||
5946 | |||
5947 | /** |
||
5948 | * Set the tdfc adhesion totale. |
||
5949 | * |
||
5950 | * @param bool|null $tdfcAdhesionTotale The tdfc adhesion totale. |
||
5951 | * @return Constantes Returns this Constantes. |
||
5952 | */ |
||
5953 | public function setTdfcAdhesionTotale(?bool $tdfcAdhesionTotale): Constantes { |
||
5957 | |||
5958 | /** |
||
5959 | * Set the tdfc emetteur. |
||
5960 | * |
||
5961 | * @param string|null $tdfcEmetteur The tdfc emetteur. |
||
5962 | * @return Constantes Returns this Constantes. |
||
5963 | */ |
||
5964 | public function setTdfcEmetteur(?string $tdfcEmetteur): Constantes { |
||
5968 | |||
5969 | /** |
||
5970 | * Set the tdfc facturant. |
||
5971 | * |
||
5972 | * @param string|null $tdfcFacturant The tdfc facturant. |
||
5973 | * @return Constantes Returns this Constantes. |
||
5974 | */ |
||
5975 | public function setTdfcFacturant(?string $tdfcFacturant): Constantes { |
||
5979 | |||
5980 | /** |
||
5981 | * Set the tdfc info trans. |
||
5982 | * |
||
5983 | * @param string|null $tdfcInfoTrans The tdfc info trans. |
||
5984 | * @return Constantes Returns this Constantes. |
||
5985 | */ |
||
5986 | public function setTdfcInfoTrans(?string $tdfcInfoTrans): Constantes { |
||
5990 | |||
5991 | /** |
||
5992 | * Set the tp interdit creat millesime. |
||
5993 | * |
||
5994 | * @param bool|null $tpInterditCreatMillesime The tp interdit creat millesime. |
||
5995 | * @return Constantes Returns this Constantes. |
||
5996 | */ |
||
5997 | public function setTpInterditCreatMillesime(?bool $tpInterditCreatMillesime): Constantes { |
||
6001 | |||
6002 | /** |
||
6003 | * Set the tp interdit creat mission. |
||
6004 | * |
||
6005 | * @param bool|null $tpInterditCreatMission The tp interdit creat mission. |
||
6006 | * @return Constantes Returns this Constantes. |
||
6007 | */ |
||
6008 | public function setTpInterditCreatMission(?bool $tpInterditCreatMission): Constantes { |
||
6012 | |||
6013 | /** |
||
6014 | * Set the tp pas clients sortis. |
||
6015 | * |
||
6016 | * @param bool|null $tpPasClientsSortis The tp pas clients sortis. |
||
6017 | * @return Constantes Returns this Constantes. |
||
6018 | */ |
||
6019 | public function setTpPasClientsSortis(?bool $tpPasClientsSortis): Constantes { |
||
6023 | |||
6024 | /** |
||
6025 | * Set the tp pas intervenants. |
||
6026 | * |
||
6027 | * @param bool|null $tpPasIntervenants The tp pas intervenants. |
||
6028 | * @return Constantes Returns this Constantes. |
||
6029 | */ |
||
6030 | public function setTpPasIntervenants(?bool $tpPasIntervenants): Constantes { |
||
6034 | |||
6035 | /** |
||
6036 | * Set the tp prix invisible. |
||
6037 | * |
||
6038 | * @param bool|null $tpPrixInvisible The tp prix invisible. |
||
6039 | * @return Constantes Returns this Constantes. |
||
6040 | */ |
||
6041 | public function setTpPrixInvisible(?bool $tpPrixInvisible): Constantes { |
||
6045 | |||
6046 | /** |
||
6047 | * Set the tp rempli pref auto. |
||
6048 | * |
||
6049 | * @param bool|null $tpRempliPrefAuto The tp rempli pref auto. |
||
6050 | * @return Constantes Returns this Constantes. |
||
6051 | */ |
||
6052 | public function setTpRempliPrefAuto(?bool $tpRempliPrefAuto): Constantes { |
||
6056 | |||
6057 | /** |
||
6058 | * Set the tp saisie dos. |
||
6059 | * |
||
6060 | * @param bool|null $tpSaisieDos The tp saisie dos. |
||
6061 | * @return Constantes Returns this Constantes. |
||
6062 | */ |
||
6063 | public function setTpSaisieDos(?bool $tpSaisieDos): Constantes { |
||
6067 | |||
6068 | /** |
||
6069 | * Set the tps passes interdit prix. |
||
6070 | * |
||
6071 | * @param bool|null $tpsPassesInterditPrix The tps passes interdit prix. |
||
6072 | * @return Constantes Returns this Constantes. |
||
6073 | */ |
||
6074 | public function setTpsPassesInterditPrix(?bool $tpsPassesInterditPrix): Constantes { |
||
6078 | } |
||
6079 |