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 | * 35 heures. |
||
26 | * |
||
27 | * @var DateTime|null |
||
28 | */ |
||
29 | private $_35Heures; |
||
30 | |||
31 | /** |
||
32 | * Alertes paie dans pointage. |
||
33 | * |
||
34 | * @var bool|null |
||
35 | */ |
||
36 | private $alertesPaieDansPointage; |
||
37 | |||
38 | /** |
||
39 | * Alertes paie dans reclam. |
||
40 | * |
||
41 | * @var bool|null |
||
42 | */ |
||
43 | private $alertesPaieDansReclam; |
||
44 | |||
45 | /** |
||
46 | * Analytique nature agence. |
||
47 | * |
||
48 | * @var bool|null |
||
49 | */ |
||
50 | private $analytiqueNatureAgence; |
||
51 | |||
52 | /** |
||
53 | * Analytique par chantier. |
||
54 | * |
||
55 | * @var bool|null |
||
56 | */ |
||
57 | private $analytiqueParChantier; |
||
58 | |||
59 | /** |
||
60 | * Archiver devis. |
||
61 | * |
||
62 | * @var bool|null |
||
63 | */ |
||
64 | private $archiverDevis; |
||
65 | |||
66 | /** |
||
67 | * Archiver facture. |
||
68 | * |
||
69 | * @var bool|null |
||
70 | */ |
||
71 | private $archiverFacture; |
||
72 | |||
73 | /** |
||
74 | * Arrondi sur pu. |
||
75 | * |
||
76 | * @var bool|null |
||
77 | */ |
||
78 | private $arrondiSurPu; |
||
79 | |||
80 | /** |
||
81 | * Autoriser da sans maj stock. |
||
82 | * |
||
83 | * @var bool|null |
||
84 | */ |
||
85 | private $autoriserDaSansMajStock; |
||
86 | |||
87 | /** |
||
88 | * Autoriser dep bud cha cde type. |
||
89 | * |
||
90 | * @var bool|null |
||
91 | */ |
||
92 | private $autoriserDepBudChaCdeType; |
||
93 | |||
94 | /** |
||
95 | * Autoriser mensu tache vide. |
||
96 | * |
||
97 | * @var bool|null |
||
98 | */ |
||
99 | private $autoriserMensuTacheVide; |
||
100 | |||
101 | /** |
||
102 | * Bl num fact. |
||
103 | * |
||
104 | * @var int|null |
||
105 | */ |
||
106 | private $blNumFact; |
||
107 | |||
108 | /** |
||
109 | * Bl prefixe. |
||
110 | * |
||
111 | * @var string|null |
||
112 | */ |
||
113 | private $blPrefixe; |
||
114 | |||
115 | /** |
||
116 | * Br num fact. |
||
117 | * |
||
118 | * @var int|null |
||
119 | */ |
||
120 | private $brNumFact; |
||
121 | |||
122 | /** |
||
123 | * Br prefixe. |
||
124 | * |
||
125 | * @var string|null |
||
126 | */ |
||
127 | private $brPrefixe; |
||
128 | |||
129 | /** |
||
130 | * Bs num fact. |
||
131 | * |
||
132 | * @var int|null |
||
133 | */ |
||
134 | private $bsNumFact; |
||
135 | |||
136 | /** |
||
137 | * Bs prefixe. |
||
138 | * |
||
139 | * @var string|null |
||
140 | */ |
||
141 | private $bsPrefixe; |
||
142 | |||
143 | /** |
||
144 | * Cdd mensu total heures. |
||
145 | * |
||
146 | * @var bool|null |
||
147 | */ |
||
148 | private $cddMensuTotalHeures; |
||
149 | |||
150 | /** |
||
151 | * Cp sans provisions. |
||
152 | * |
||
153 | * @var bool|null |
||
154 | */ |
||
155 | private $cpSansProvisions; |
||
156 | |||
157 | /** |
||
158 | * Cde client num fact. |
||
159 | * |
||
160 | * @var int|null |
||
161 | */ |
||
162 | private $cdeClientNumFact; |
||
163 | |||
164 | /** |
||
165 | * Cde client prefixe. |
||
166 | * |
||
167 | * @var string|null |
||
168 | */ |
||
169 | private $cdeClientPrefixe; |
||
170 | |||
171 | /** |
||
172 | * Cde frn num fact. |
||
173 | * |
||
174 | * @var int|null |
||
175 | */ |
||
176 | private $cdeFrnNumFact; |
||
177 | |||
178 | /** |
||
179 | * Cde frn prefixe. |
||
180 | * |
||
181 | * @var string|null |
||
182 | */ |
||
183 | private $cdeFrnPrefixe; |
||
184 | |||
185 | /** |
||
186 | * Centralisation vente. |
||
187 | * |
||
188 | * @var bool|null |
||
189 | */ |
||
190 | private $centralisationVente; |
||
191 | |||
192 | /** |
||
193 | * Charge mensuelle sans tache. |
||
194 | * |
||
195 | * @var bool|null |
||
196 | */ |
||
197 | private $chargeMensuelleSansTache; |
||
198 | |||
199 | /** |
||
200 | * Chemin doss compta. |
||
201 | * |
||
202 | * @var string|null |
||
203 | */ |
||
204 | private $cheminDossCompta; |
||
205 | |||
206 | /** |
||
207 | * Cle debloquer periode cloturee. |
||
208 | * |
||
209 | * @var string|null |
||
210 | */ |
||
211 | private $cleDebloquerPeriodeCloturee; |
||
212 | |||
213 | /** |
||
214 | * Code abs cp sans solde. |
||
215 | * |
||
216 | * @var string|null |
||
217 | */ |
||
218 | private $codeAbsCpSansSolde; |
||
219 | |||
220 | /** |
||
221 | * Code abs def jf. |
||
222 | * |
||
223 | * @var string|null |
||
224 | */ |
||
225 | private $codeAbsDefJf; |
||
226 | |||
227 | /** |
||
228 | * Code abs def jf moins3. |
||
229 | * |
||
230 | * @var string|null |
||
231 | */ |
||
232 | private $codeAbsDefJfMoins3; |
||
233 | |||
234 | /** |
||
235 | * Code abs fermeture chantier. |
||
236 | * |
||
237 | * @var string|null |
||
238 | */ |
||
239 | private $codeAbsFermetureChantier; |
||
240 | |||
241 | /** |
||
242 | * Code abs pointage defaut. |
||
243 | * |
||
244 | * @var string|null |
||
245 | */ |
||
246 | private $codeAbsPointageDefaut; |
||
247 | |||
248 | /** |
||
249 | * Code collabo valid. |
||
250 | * |
||
251 | * @var string|null |
||
252 | */ |
||
253 | private $codeCollaboValid; |
||
254 | |||
255 | /** |
||
256 | * Code collaborateur. |
||
257 | * |
||
258 | * @var string|null |
||
259 | */ |
||
260 | private $codeCollaborateur; |
||
261 | |||
262 | /** |
||
263 | * Code depot par defaut. |
||
264 | * |
||
265 | * @var string|null |
||
266 | */ |
||
267 | private $codeDepotParDefaut; |
||
268 | |||
269 | /** |
||
270 | * Code ics. |
||
271 | * |
||
272 | * @var string|null |
||
273 | */ |
||
274 | private $codeIcs; |
||
275 | |||
276 | /** |
||
277 | * Code ja. |
||
278 | * |
||
279 | * @var string|null |
||
280 | */ |
||
281 | private $codeJa; |
||
282 | |||
283 | /** |
||
284 | * Code jv negoce. |
||
285 | * |
||
286 | * @var string|null |
||
287 | */ |
||
288 | private $codeJvNegoce; |
||
289 | |||
290 | /** |
||
291 | * Code jv prestation. |
||
292 | * |
||
293 | * @var string|null |
||
294 | */ |
||
295 | private $codeJvPrestation; |
||
296 | |||
297 | /** |
||
298 | * Code liv par defaut. |
||
299 | * |
||
300 | * @var string|null |
||
301 | */ |
||
302 | private $codeLivParDefaut; |
||
303 | |||
304 | /** |
||
305 | * Code prime chantier1. |
||
306 | * |
||
307 | * @var string|null |
||
308 | */ |
||
309 | private $codePrimeChantier1; |
||
310 | |||
311 | /** |
||
312 | * Code prime chantier2. |
||
313 | * |
||
314 | * @var string|null |
||
315 | */ |
||
316 | private $codePrimeChantier2; |
||
317 | |||
318 | /** |
||
319 | * Code prime chantier3. |
||
320 | * |
||
321 | * @var string|null |
||
322 | */ |
||
323 | private $codePrimeChantier3; |
||
324 | |||
325 | /** |
||
326 | * Code prime dimanche1. |
||
327 | * |
||
328 | * @var string|null |
||
329 | */ |
||
330 | private $codePrimeDimanche1; |
||
331 | |||
332 | /** |
||
333 | * Code prime dimanche1 type2. |
||
334 | * |
||
335 | * @var string|null |
||
336 | */ |
||
337 | private $codePrimeDimanche1Type2; |
||
338 | |||
339 | /** |
||
340 | * Code prime dimanche2. |
||
341 | * |
||
342 | * @var string|null |
||
343 | */ |
||
344 | private $codePrimeDimanche2; |
||
345 | |||
346 | /** |
||
347 | * Code prime forfait. |
||
348 | * |
||
349 | * @var string|null |
||
350 | */ |
||
351 | private $codePrimeForfait; |
||
352 | |||
353 | /** |
||
354 | * Code prime h compl. |
||
355 | * |
||
356 | * @var string|null |
||
357 | */ |
||
358 | private $codePrimeHCompl; |
||
359 | |||
360 | /** |
||
361 | * Code prime h compl2. |
||
362 | * |
||
363 | * @var string|null |
||
364 | */ |
||
365 | private $codePrimeHCompl2; |
||
366 | |||
367 | /** |
||
368 | * Code prime jf1. |
||
369 | * |
||
370 | * @var string|null |
||
371 | */ |
||
372 | private $codePrimeJf1; |
||
373 | |||
374 | /** |
||
375 | * Code prime jf1 type2. |
||
376 | * |
||
377 | * @var string|null |
||
378 | */ |
||
379 | private $codePrimeJf1Type2; |
||
380 | |||
381 | /** |
||
382 | * Code prime jf2. |
||
383 | * |
||
384 | * @var string|null |
||
385 | */ |
||
386 | private $codePrimeJf2; |
||
387 | |||
388 | /** |
||
389 | * Code prime jf mai. |
||
390 | * |
||
391 | * @var string|null |
||
392 | */ |
||
393 | private $codePrimeJfMai; |
||
394 | |||
395 | /** |
||
396 | * Code prime nuit1. |
||
397 | * |
||
398 | * @var string|null |
||
399 | */ |
||
400 | private $codePrimeNuit1; |
||
401 | |||
402 | /** |
||
403 | * Code prime nuit1 type2. |
||
404 | * |
||
405 | * @var string|null |
||
406 | */ |
||
407 | private $codePrimeNuit1Type2; |
||
408 | |||
409 | /** |
||
410 | * Code prime nuit2. |
||
411 | * |
||
412 | * @var string|null |
||
413 | */ |
||
414 | private $codePrimeNuit2; |
||
415 | |||
416 | /** |
||
417 | * Code prime paniers. |
||
418 | * |
||
419 | * @var string|null |
||
420 | */ |
||
421 | private $codePrimePaniers; |
||
422 | |||
423 | /** |
||
424 | * Code prime rs. |
||
425 | * |
||
426 | * @var string|null |
||
427 | */ |
||
428 | private $codePrimeRs; |
||
429 | |||
430 | /** |
||
431 | * Code prime tp. |
||
432 | * |
||
433 | * @var string|null |
||
434 | */ |
||
435 | private $codePrimeTp; |
||
436 | |||
437 | /** |
||
438 | * Code reg jv neg debut. |
||
439 | * |
||
440 | * @var string|null |
||
441 | */ |
||
442 | private $codeRegJvNegDebut; |
||
443 | |||
444 | /** |
||
445 | * Code reg jv neg fin. |
||
446 | * |
||
447 | * @var string|null |
||
448 | */ |
||
449 | private $codeRegJvNegFin; |
||
450 | |||
451 | /** |
||
452 | * Code reg jv prest debut. |
||
453 | * |
||
454 | * @var string|null |
||
455 | */ |
||
456 | private $codeRegJvPrestDebut; |
||
457 | |||
458 | /** |
||
459 | * Code reg jv prest fin. |
||
460 | * |
||
461 | * @var string|null |
||
462 | */ |
||
463 | private $codeRegJvPrestFin; |
||
464 | |||
465 | /** |
||
466 | * Code tache defaut. |
||
467 | * |
||
468 | * @var string|null |
||
469 | */ |
||
470 | private $codeTacheDefaut; |
||
471 | |||
472 | /** |
||
473 | * Collectif def. |
||
474 | * |
||
475 | * @var string|null |
||
476 | */ |
||
477 | private $collectifDef; |
||
478 | |||
479 | /** |
||
480 | * Collectif def fournisseur. |
||
481 | * |
||
482 | * @var string|null |
||
483 | */ |
||
484 | private $collectifDefFournisseur; |
||
485 | |||
486 | /** |
||
487 | * Commentaire journee solidarite. |
||
488 | * |
||
489 | * @var string|null |
||
490 | */ |
||
491 | private $commentaireJourneeSolidarite; |
||
492 | |||
493 | /** |
||
494 | * Compte collectif achat. |
||
495 | * |
||
496 | * @var string|null |
||
497 | */ |
||
498 | private $compteCollectifAchat; |
||
499 | |||
500 | /** |
||
501 | * Compte collectif vente. |
||
502 | * |
||
503 | * @var string|null |
||
504 | */ |
||
505 | private $compteCollectifVente; |
||
506 | |||
507 | /** |
||
508 | * Compte escompte ca exonere. |
||
509 | * |
||
510 | * @var string|null |
||
511 | */ |
||
512 | private $compteEscompteCaExonere; |
||
513 | |||
514 | /** |
||
515 | * Compte escompte soumis tva. |
||
516 | * |
||
517 | * @var string|null |
||
518 | */ |
||
519 | private $compteEscompteSoumisTva; |
||
520 | |||
521 | /** |
||
522 | * Compte tva achat. |
||
523 | * |
||
524 | * @var string|null |
||
525 | */ |
||
526 | private $compteTvaAchat; |
||
527 | |||
528 | /** |
||
529 | * Compte tva taxe deee. |
||
530 | * |
||
531 | * @var string|null |
||
532 | */ |
||
533 | private $compteTvaTaxeDeee; |
||
534 | |||
535 | /** |
||
536 | * Compte tva vente. |
||
537 | * |
||
538 | * @var string|null |
||
539 | */ |
||
540 | private $compteTvaVente; |
||
541 | |||
542 | /** |
||
543 | * Compte ventil taxe deee. |
||
544 | * |
||
545 | * @var string|null |
||
546 | */ |
||
547 | private $compteVentilTaxeDeee; |
||
548 | |||
549 | /** |
||
550 | * Compter samedi tf cp paie. |
||
551 | * |
||
552 | * @var bool|null |
||
553 | */ |
||
554 | private $compterSamediTfCpPaie; |
||
555 | |||
556 | /** |
||
557 | * Controler cde frn. |
||
558 | * |
||
559 | * @var bool|null |
||
560 | */ |
||
561 | private $controlerCdeFrn; |
||
562 | |||
563 | /** |
||
564 | * Controler charges mensuelles. |
||
565 | * |
||
566 | * @var bool|null |
||
567 | */ |
||
568 | private $controlerChargesMensuelles; |
||
569 | |||
570 | /** |
||
571 | * Controler code reg. |
||
572 | * |
||
573 | * @var bool|null |
||
574 | */ |
||
575 | private $controlerCodeReg; |
||
576 | |||
577 | /** |
||
578 | * Controler dep hc max. |
||
579 | * |
||
580 | * @var bool|null |
||
581 | */ |
||
582 | private $controlerDepHcMax; |
||
583 | |||
584 | /** |
||
585 | * Controler dep hc plus mois. |
||
586 | * |
||
587 | * @var bool|null |
||
588 | */ |
||
589 | private $controlerDepHcPlusMois; |
||
590 | |||
591 | /** |
||
592 | * Creer alerte paie def en paie. |
||
593 | * |
||
594 | * @var bool|null |
||
595 | */ |
||
596 | private $creerAlertePaieDefEnPaie; |
||
597 | |||
598 | /** |
||
599 | * Ctrl auto cp. |
||
600 | * |
||
601 | * @var bool|null |
||
602 | */ |
||
603 | private $ctrlAutoCp; |
||
604 | |||
605 | /** |
||
606 | * Ctrl auto cp avec anticipation. |
||
607 | * |
||
608 | * @var bool|null |
||
609 | */ |
||
610 | private $ctrlAutoCpAvecAnticipation; |
||
611 | |||
612 | /** |
||
613 | * Date appli gestion heures en plus. |
||
614 | * |
||
615 | * @var DateTime|null |
||
616 | */ |
||
617 | private $dateAppliGestionHeuresEnPlus; |
||
618 | |||
619 | /** |
||
620 | * Date journee solidarite. |
||
621 | * |
||
622 | * @var DateTime|null |
||
623 | */ |
||
624 | private $dateJourneeSolidarite; |
||
625 | |||
626 | /** |
||
627 | * Date validation synchro. |
||
628 | * |
||
629 | * @var DateTime|null |
||
630 | */ |
||
631 | private $dateValidationSynchro; |
||
632 | |||
633 | /** |
||
634 | * Dec mois prep fact. |
||
635 | * |
||
636 | * @var int|null |
||
637 | */ |
||
638 | private $decMoisPrepFact; |
||
639 | |||
640 | /** |
||
641 | * Dernier compte client. |
||
642 | * |
||
643 | * @var string|null |
||
644 | */ |
||
645 | private $dernierCompteClient; |
||
646 | |||
647 | /** |
||
648 | * Dernier compte frn. |
||
649 | * |
||
650 | * @var string|null |
||
651 | */ |
||
652 | private $dernierCompteFrn; |
||
653 | |||
654 | /** |
||
655 | * Discr. |
||
656 | * |
||
657 | * @var string|null |
||
658 | */ |
||
659 | private $discr; |
||
660 | |||
661 | /** |
||
662 | * Doss compta. |
||
663 | * |
||
664 | * @var string|null |
||
665 | */ |
||
666 | private $dossCompta; |
||
667 | |||
668 | /** |
||
669 | * Doss paie. |
||
670 | * |
||
671 | * @var string|null |
||
672 | */ |
||
673 | private $dossPaie; |
||
674 | |||
675 | /** |
||
676 | * Es code abs entree. |
||
677 | * |
||
678 | * @var string|null |
||
679 | */ |
||
680 | private $esCodeAbsEntree; |
||
681 | |||
682 | /** |
||
683 | * Es code abs sortie. |
||
684 | * |
||
685 | * @var string|null |
||
686 | */ |
||
687 | private $esCodeAbsSortie; |
||
688 | |||
689 | /** |
||
690 | * Es heures reelles. |
||
691 | * |
||
692 | * @var bool|null |
||
693 | */ |
||
694 | private $esHeuresReelles; |
||
695 | |||
696 | /** |
||
697 | * Etablissements paie. |
||
698 | * |
||
699 | * @var string|null |
||
700 | */ |
||
701 | private $etablissementsPaie; |
||
702 | |||
703 | /** |
||
704 | * Etat. |
||
705 | * |
||
706 | * @var string|null |
||
707 | */ |
||
708 | private $etat; |
||
709 | |||
710 | /** |
||
711 | * Euro. |
||
712 | * |
||
713 | * @var bool|null |
||
714 | */ |
||
715 | private $euro; |
||
716 | |||
717 | /** |
||
718 | * Facturation prorata heures. |
||
719 | * |
||
720 | * @var bool|null |
||
721 | */ |
||
722 | private $facturationProrataHeures; |
||
723 | |||
724 | /** |
||
725 | * Folio ja. |
||
726 | * |
||
727 | * @var string|null |
||
728 | */ |
||
729 | private $folioJa; |
||
730 | |||
731 | /** |
||
732 | * Folio jv negoce. |
||
733 | * |
||
734 | * @var string|null |
||
735 | */ |
||
736 | private $folioJvNegoce; |
||
737 | |||
738 | /** |
||
739 | * Folio jv prestation. |
||
740 | * |
||
741 | * @var string|null |
||
742 | */ |
||
743 | private $folioJvPrestation; |
||
744 | |||
745 | /** |
||
746 | * Gerer num cpt chantier. |
||
747 | * |
||
748 | * @var bool|null |
||
749 | */ |
||
750 | private $gererNumCptChantier; |
||
751 | |||
752 | /** |
||
753 | * Gestion h compl. |
||
754 | * |
||
755 | * @var bool|null |
||
756 | */ |
||
757 | private $gestionHCompl; |
||
758 | |||
759 | /** |
||
760 | * Gestion h sup mens. |
||
761 | * |
||
762 | * @var bool|null |
||
763 | */ |
||
764 | private $gestionHSupMens; |
||
765 | |||
766 | /** |
||
767 | * Gestion h sup mensuelle. |
||
768 | * |
||
769 | * @var bool|null |
||
770 | */ |
||
771 | private $gestionHSupMensuelle; |
||
772 | |||
773 | /** |
||
774 | * Gestion maj dim. |
||
775 | * |
||
776 | * @var string|null |
||
777 | */ |
||
778 | private $gestionMajDim; |
||
779 | |||
780 | /** |
||
781 | * Gestion maj jf. |
||
782 | * |
||
783 | * @var string|null |
||
784 | */ |
||
785 | private $gestionMajJf; |
||
786 | |||
787 | /** |
||
788 | * Gestion maj nuit. |
||
789 | * |
||
790 | * @var string|null |
||
791 | */ |
||
792 | private $gestionMajNuit; |
||
793 | |||
794 | /** |
||
795 | * Gestion multi depot. |
||
796 | * |
||
797 | * @var bool|null |
||
798 | */ |
||
799 | private $gestionMultiDepot; |
||
800 | |||
801 | /** |
||
802 | * Gestion quotas. |
||
803 | * |
||
804 | * @var bool|null |
||
805 | */ |
||
806 | private $gestionQuotas; |
||
807 | |||
808 | /** |
||
809 | * Gestion specif jf. |
||
810 | * |
||
811 | * @var bool|null |
||
812 | */ |
||
813 | private $gestionSpecifJf; |
||
814 | |||
815 | /** |
||
816 | * Gestion specif majo jf. |
||
817 | * |
||
818 | * @var bool|null |
||
819 | */ |
||
820 | private $gestionSpecifMajoJf; |
||
821 | |||
822 | /** |
||
823 | * H deb nuit. |
||
824 | * |
||
825 | * @var DateTime|null |
||
826 | */ |
||
827 | private $hDebNuit; |
||
828 | |||
829 | /** |
||
830 | * H deb nuit trav nuit. |
||
831 | * |
||
832 | * @var DateTime|null |
||
833 | */ |
||
834 | private $hDebNuitTravNuit; |
||
835 | |||
836 | /** |
||
837 | * H fin nuit. |
||
838 | * |
||
839 | * @var DateTime|null |
||
840 | */ |
||
841 | private $hFinNuit; |
||
842 | |||
843 | /** |
||
844 | * H fin nuit trav nuit. |
||
845 | * |
||
846 | * @var DateTime|null |
||
847 | */ |
||
848 | private $hFinNuitTravNuit; |
||
849 | |||
850 | /** |
||
851 | * Heures absence mensualise. |
||
852 | * |
||
853 | * @var bool|null |
||
854 | */ |
||
855 | private $heuresAbsenceMensualise; |
||
856 | |||
857 | /** |
||
858 | * Heures rempl egales mens titulaire. |
||
859 | * |
||
860 | * @var bool|null |
||
861 | */ |
||
862 | private $heuresRemplEgalesMensTitulaire; |
||
863 | |||
864 | /** |
||
865 | * Increment compte auto. |
||
866 | * |
||
867 | * @var int|null |
||
868 | */ |
||
869 | private $incrementCompteAuto; |
||
870 | |||
871 | /** |
||
872 | * Liaison compta win. |
||
873 | * |
||
874 | * @var bool|null |
||
875 | */ |
||
876 | private $liaisonComptaWin; |
||
877 | |||
878 | /** |
||
879 | * Lib critere bool1. |
||
880 | * |
||
881 | * @var string|null |
||
882 | */ |
||
883 | private $libCritereBool1; |
||
884 | |||
885 | /** |
||
886 | * Lib critere bool2. |
||
887 | * |
||
888 | * @var string|null |
||
889 | */ |
||
890 | private $libCritereBool2; |
||
891 | |||
892 | /** |
||
893 | * Lib critere byte1. |
||
894 | * |
||
895 | * @var string|null |
||
896 | */ |
||
897 | private $libCritereByte1; |
||
898 | |||
899 | /** |
||
900 | * Lib critere num1. |
||
901 | * |
||
902 | * @var string|null |
||
903 | */ |
||
904 | private $libCritereNum1; |
||
905 | |||
906 | /** |
||
907 | * Lib critere num2. |
||
908 | * |
||
909 | * @var string|null |
||
910 | */ |
||
911 | private $libCritereNum2; |
||
912 | |||
913 | /** |
||
914 | * Lib critere num3. |
||
915 | * |
||
916 | * @var string|null |
||
917 | */ |
||
918 | private $libCritereNum3; |
||
919 | |||
920 | /** |
||
921 | * Lib critere num4. |
||
922 | * |
||
923 | * @var string|null |
||
924 | */ |
||
925 | private $libCritereNum4; |
||
926 | |||
927 | /** |
||
928 | * Lib critere num5. |
||
929 | * |
||
930 | * @var string|null |
||
931 | */ |
||
932 | private $libCritereNum5; |
||
933 | |||
934 | /** |
||
935 | * Lib critere tab1. |
||
936 | * |
||
937 | * @var string|null |
||
938 | */ |
||
939 | private $libCritereTab1; |
||
940 | |||
941 | /** |
||
942 | * Lib critere tab2. |
||
943 | * |
||
944 | * @var string|null |
||
945 | */ |
||
946 | private $libCritereTab2; |
||
947 | |||
948 | /** |
||
949 | * Lib critere tab3. |
||
950 | * |
||
951 | * @var string|null |
||
952 | */ |
||
953 | private $libCritereTab3; |
||
954 | |||
955 | /** |
||
956 | * Lib critere tab4. |
||
957 | * |
||
958 | * @var string|null |
||
959 | */ |
||
960 | private $libCritereTab4; |
||
961 | |||
962 | /** |
||
963 | * Lib critere tab5. |
||
964 | * |
||
965 | * @var string|null |
||
966 | */ |
||
967 | private $libCritereTab5; |
||
968 | |||
969 | /** |
||
970 | * Lib critere txt1. |
||
971 | * |
||
972 | * @var string|null |
||
973 | */ |
||
974 | private $libCritereTxt1; |
||
975 | |||
976 | /** |
||
977 | * Lib critere txt2. |
||
978 | * |
||
979 | * @var string|null |
||
980 | */ |
||
981 | private $libCritereTxt2; |
||
982 | |||
983 | /** |
||
984 | * Lib critere txt3. |
||
985 | * |
||
986 | * @var string|null |
||
987 | */ |
||
988 | private $libCritereTxt3; |
||
989 | |||
990 | /** |
||
991 | * Lib critere txt4. |
||
992 | * |
||
993 | * @var string|null |
||
994 | */ |
||
995 | private $libCritereTxt4; |
||
996 | |||
997 | /** |
||
998 | * Lib critere txt5. |
||
999 | * |
||
1000 | * @var string|null |
||
1001 | */ |
||
1002 | private $libCritereTxt5; |
||
1003 | |||
1004 | /** |
||
1005 | * Libelle auto avoir. |
||
1006 | * |
||
1007 | * @var string|null |
||
1008 | */ |
||
1009 | private $libelleAutoAvoir; |
||
1010 | |||
1011 | /** |
||
1012 | * Libelle auto facture. |
||
1013 | * |
||
1014 | * @var string|null |
||
1015 | */ |
||
1016 | private $libelleAutoFacture; |
||
1017 | |||
1018 | /** |
||
1019 | * Libelle heures surcroit. |
||
1020 | * |
||
1021 | * @var string|null |
||
1022 | */ |
||
1023 | private $libelleHeuresSurcroit; |
||
1024 | |||
1025 | /** |
||
1026 | * Libelle transfert. |
||
1027 | * |
||
1028 | * @var string|null |
||
1029 | */ |
||
1030 | private $libelleTransfert; |
||
1031 | |||
1032 | /** |
||
1033 | * Libelle transfert achat. |
||
1034 | * |
||
1035 | * @var string|null |
||
1036 | */ |
||
1037 | private $libelleTransfertAchat; |
||
1038 | |||
1039 | /** |
||
1040 | * Liv cde frn depot unique. |
||
1041 | * |
||
1042 | * @var bool|null |
||
1043 | */ |
||
1044 | private $livCdeFrnDepotUnique; |
||
1045 | |||
1046 | /** |
||
1047 | * Maj dernier passage bt. |
||
1048 | * |
||
1049 | * @var bool|null |
||
1050 | */ |
||
1051 | private $majDernierPassageBt; |
||
1052 | |||
1053 | /** |
||
1054 | * Mail attestations. |
||
1055 | * |
||
1056 | * @var string|null |
||
1057 | */ |
||
1058 | private $mailAttestations; |
||
1059 | |||
1060 | /** |
||
1061 | * Mail factures. |
||
1062 | * |
||
1063 | * @var string|null |
||
1064 | */ |
||
1065 | private $mailFactures; |
||
1066 | |||
1067 | /** |
||
1068 | * Maj dernier prix achat. |
||
1069 | * |
||
1070 | * @var bool|null |
||
1071 | */ |
||
1072 | private $majDernierPrixAchat; |
||
1073 | |||
1074 | /** |
||
1075 | * Maj pamp. |
||
1076 | * |
||
1077 | * @var bool|null |
||
1078 | */ |
||
1079 | private $majPamp; |
||
1080 | |||
1081 | /** |
||
1082 | * Majoration cascade. |
||
1083 | * |
||
1084 | * @var bool|null |
||
1085 | */ |
||
1086 | private $majorationCascade; |
||
1087 | |||
1088 | /** |
||
1089 | * Majoration h plus. |
||
1090 | * |
||
1091 | * @var string|null |
||
1092 | */ |
||
1093 | private $majorationHPlus; |
||
1094 | |||
1095 | /** |
||
1096 | * Marge niveau edition. |
||
1097 | * |
||
1098 | * @var string|null |
||
1099 | */ |
||
1100 | private $margeNiveauEdition; |
||
1101 | |||
1102 | /** |
||
1103 | * Marge pourcent charge. |
||
1104 | * |
||
1105 | * @var float|null |
||
1106 | */ |
||
1107 | private $margePourcentCharge; |
||
1108 | |||
1109 | /** |
||
1110 | * Marge sal insp prorata ca. |
||
1111 | * |
||
1112 | * @var bool|null |
||
1113 | */ |
||
1114 | private $margeSalInspProrataCa; |
||
1115 | |||
1116 | /** |
||
1117 | * Mensualisation tache. |
||
1118 | * |
||
1119 | * @var bool|null |
||
1120 | */ |
||
1121 | private $mensualisationTache; |
||
1122 | |||
1123 | /** |
||
1124 | * Mode calcul proposition cde. |
||
1125 | * |
||
1126 | * @var string|null |
||
1127 | */ |
||
1128 | private $modeCalculPropositionCde; |
||
1129 | |||
1130 | /** |
||
1131 | * Modele devis. |
||
1132 | * |
||
1133 | * @var string|null |
||
1134 | */ |
||
1135 | private $modeleDevis; |
||
1136 | |||
1137 | /** |
||
1138 | * Modele devis tech. |
||
1139 | * |
||
1140 | * @var string|null |
||
1141 | */ |
||
1142 | private $modeleDevisTech; |
||
1143 | |||
1144 | /** |
||
1145 | * Modele facture. |
||
1146 | * |
||
1147 | * @var string|null |
||
1148 | */ |
||
1149 | private $modeleFacture; |
||
1150 | |||
1151 | /** |
||
1152 | * Mt cpta negatif. |
||
1153 | * |
||
1154 | * @var bool|null |
||
1155 | */ |
||
1156 | private $mtCptaNegatif; |
||
1157 | |||
1158 | /** |
||
1159 | * N der document. |
||
1160 | * |
||
1161 | * @var int|null |
||
1162 | */ |
||
1163 | private $nDerDocument; |
||
1164 | |||
1165 | /** |
||
1166 | * Nb caracteres ligne fact. |
||
1167 | * |
||
1168 | * @var string|null |
||
1169 | */ |
||
1170 | private $nbCaracteresLigneFact; |
||
1171 | |||
1172 | /** |
||
1173 | * Nb decimales prix unitaire. |
||
1174 | * |
||
1175 | * @var string|null |
||
1176 | */ |
||
1177 | private $nbDecimalesPrixUnitaire; |
||
1178 | |||
1179 | /** |
||
1180 | * Nb decimales quantite. |
||
1181 | * |
||
1182 | * @var string|null |
||
1183 | */ |
||
1184 | private $nbDecimalesQuantite; |
||
1185 | |||
1186 | /** |
||
1187 | * Nb entiers prix unitaire. |
||
1188 | * |
||
1189 | * @var string|null |
||
1190 | */ |
||
1191 | private $nbEntiersPrixUnitaire; |
||
1192 | |||
1193 | /** |
||
1194 | * Nb entiers quantite. |
||
1195 | * |
||
1196 | * @var string|null |
||
1197 | */ |
||
1198 | private $nbEntiersQuantite; |
||
1199 | |||
1200 | /** |
||
1201 | * Nb jour cp acquis. |
||
1202 | * |
||
1203 | * @var float|null |
||
1204 | */ |
||
1205 | private $nbJourCpAcquis; |
||
1206 | |||
1207 | /** |
||
1208 | * Nb jours abs proratisation dcp. |
||
1209 | * |
||
1210 | * @var int|null |
||
1211 | */ |
||
1212 | private $nbJoursAbsProratisationDcp; |
||
1213 | |||
1214 | /** |
||
1215 | * Nb mois consecutifs. |
||
1216 | * |
||
1217 | * @var int|null |
||
1218 | */ |
||
1219 | private $nbMoisConsecutifs; |
||
1220 | |||
1221 | /** |
||
1222 | * Nom fact nb lignes. |
||
1223 | * |
||
1224 | * @var string|null |
||
1225 | */ |
||
1226 | private $nomFactNbLignes; |
||
1227 | |||
1228 | /** |
||
1229 | * Nom fichier ascii achat. |
||
1230 | * |
||
1231 | * @var string|null |
||
1232 | */ |
||
1233 | private $nomFichierAsciiAchat; |
||
1234 | |||
1235 | /** |
||
1236 | * Nom fichier ascii vente. |
||
1237 | * |
||
1238 | * @var string|null |
||
1239 | */ |
||
1240 | private $nomFichierAsciiVente; |
||
1241 | |||
1242 | /** |
||
1243 | * Note0 non conforme. |
||
1244 | * |
||
1245 | * @var bool|null |
||
1246 | */ |
||
1247 | private $note0NonConforme; |
||
1248 | |||
1249 | /** |
||
1250 | * Num bt. |
||
1251 | * |
||
1252 | * @var int|null |
||
1253 | */ |
||
1254 | private $numBt; |
||
1255 | |||
1256 | /** |
||
1257 | * Num critere bt num1. |
||
1258 | * |
||
1259 | * @var string|null |
||
1260 | */ |
||
1261 | private $numCritereBtNum1; |
||
1262 | |||
1263 | /** |
||
1264 | * Num critere bt num2. |
||
1265 | * |
||
1266 | * @var string|null |
||
1267 | */ |
||
1268 | private $numCritereBtNum2; |
||
1269 | |||
1270 | /** |
||
1271 | * Num critere chantier filtre1. |
||
1272 | * |
||
1273 | * @var string|null |
||
1274 | */ |
||
1275 | private $numCritereChantierFiltre1; |
||
1276 | |||
1277 | /** |
||
1278 | * Num devis. |
||
1279 | * |
||
1280 | * @var int|null |
||
1281 | */ |
||
1282 | private $numDevis; |
||
1283 | |||
1284 | /** |
||
1285 | * Num fact. |
||
1286 | * |
||
1287 | * @var int|null |
||
1288 | */ |
||
1289 | private $numFact; |
||
1290 | |||
1291 | /** |
||
1292 | * Num fact vm. |
||
1293 | * |
||
1294 | * @var int|null |
||
1295 | */ |
||
1296 | private $numFactVm; |
||
1297 | |||
1298 | /** |
||
1299 | * Numero fiche controle. |
||
1300 | * |
||
1301 | * @var int|null |
||
1302 | */ |
||
1303 | private $numeroFicheControle; |
||
1304 | |||
1305 | /** |
||
1306 | * Pa par fournisseur. |
||
1307 | * |
||
1308 | * @var bool|null |
||
1309 | */ |
||
1310 | private $paParFournisseur; |
||
1311 | |||
1312 | /** |
||
1313 | * Pj envoi mail. |
||
1314 | * |
||
1315 | * @var string|null |
||
1316 | */ |
||
1317 | private $pjEnvoiMail; |
||
1318 | |||
1319 | /** |
||
1320 | * Pj envoi mail attestation. |
||
1321 | * |
||
1322 | * @var string|null |
||
1323 | */ |
||
1324 | private $pjEnvoiMailAttestation; |
||
1325 | |||
1326 | /** |
||
1327 | * Pas num cpt par dossier. |
||
1328 | * |
||
1329 | * @var bool|null |
||
1330 | */ |
||
1331 | private $pasNumCptParDossier; |
||
1332 | |||
1333 | /** |
||
1334 | * Pdf bt coefficient. |
||
1335 | * |
||
1336 | * @var float|null |
||
1337 | */ |
||
1338 | private $pdfBtCoefficient; |
||
1339 | |||
1340 | /** |
||
1341 | * Pdf bt date passage. |
||
1342 | * |
||
1343 | * @var bool|null |
||
1344 | */ |
||
1345 | private $pdfBtDatePassage; |
||
1346 | |||
1347 | /** |
||
1348 | * Pdf bt descriptif. |
||
1349 | * |
||
1350 | * @var bool|null |
||
1351 | */ |
||
1352 | private $pdfBtDescriptif; |
||
1353 | |||
1354 | /** |
||
1355 | * Pdf bt employes corps. |
||
1356 | * |
||
1357 | * @var bool|null |
||
1358 | */ |
||
1359 | private $pdfBtEmployesCorps; |
||
1360 | |||
1361 | /** |
||
1362 | * Pdf bt employes ref. |
||
1363 | * |
||
1364 | * @var bool|null |
||
1365 | */ |
||
1366 | private $pdfBtEmployesRef; |
||
1367 | |||
1368 | /** |
||
1369 | * Pdf bt facturer ala validation. |
||
1370 | * |
||
1371 | * @var bool|null |
||
1372 | */ |
||
1373 | private $pdfBtFacturerAlaValidation; |
||
1374 | |||
1375 | /** |
||
1376 | * Pdf bt format saisie qte pu. |
||
1377 | * |
||
1378 | * @var bool|null |
||
1379 | */ |
||
1380 | private $pdfBtFormatSaisieQtePu; |
||
1381 | |||
1382 | /** |
||
1383 | * Pdf bt libelle date. |
||
1384 | * |
||
1385 | * @var string|null |
||
1386 | */ |
||
1387 | private $pdfBtLibelleDate; |
||
1388 | |||
1389 | /** |
||
1390 | * Pdf bt nom chantier. |
||
1391 | * |
||
1392 | * @var bool|null |
||
1393 | */ |
||
1394 | private $pdfBtNomChantier; |
||
1395 | |||
1396 | /** |
||
1397 | * Pdf bt periode validite. |
||
1398 | * |
||
1399 | * @var bool|null |
||
1400 | */ |
||
1401 | private $pdfBtPeriodeValidite; |
||
1402 | |||
1403 | /** |
||
1404 | * Pdf bt prix achat. |
||
1405 | * |
||
1406 | * @var float|null |
||
1407 | */ |
||
1408 | private $pdfBtPrixAchat; |
||
1409 | |||
1410 | /** |
||
1411 | * Pdf bt reprendre libelle date. |
||
1412 | * |
||
1413 | * @var bool|null |
||
1414 | */ |
||
1415 | private $pdfBtReprendreLibelleDate; |
||
1416 | |||
1417 | /** |
||
1418 | * Pdf bt taux horaire. |
||
1419 | * |
||
1420 | * @var float|null |
||
1421 | */ |
||
1422 | private $pdfBtTauxHoraire; |
||
1423 | |||
1424 | /** |
||
1425 | * Point bt employes sortis. |
||
1426 | * |
||
1427 | * @var bool|null |
||
1428 | */ |
||
1429 | private $pointBtEmployesSortis; |
||
1430 | |||
1431 | /** |
||
1432 | * Poste1. |
||
1433 | * |
||
1434 | * @var string|null |
||
1435 | */ |
||
1436 | private $poste1; |
||
1437 | |||
1438 | /** |
||
1439 | * Poste2. |
||
1440 | * |
||
1441 | * @var string|null |
||
1442 | */ |
||
1443 | private $poste2; |
||
1444 | |||
1445 | /** |
||
1446 | * Poste3. |
||
1447 | * |
||
1448 | * @var string|null |
||
1449 | */ |
||
1450 | private $poste3; |
||
1451 | |||
1452 | /** |
||
1453 | * Poste4. |
||
1454 | * |
||
1455 | * @var string|null |
||
1456 | */ |
||
1457 | private $poste4; |
||
1458 | |||
1459 | /** |
||
1460 | * Poste5. |
||
1461 | * |
||
1462 | * @var string|null |
||
1463 | */ |
||
1464 | private $poste5; |
||
1465 | |||
1466 | /** |
||
1467 | * Pourc maj h compl. |
||
1468 | * |
||
1469 | * @var float|null |
||
1470 | */ |
||
1471 | private $pourcMajHCompl; |
||
1472 | |||
1473 | /** |
||
1474 | * Pourc maj h compl2. |
||
1475 | * |
||
1476 | * @var float|null |
||
1477 | */ |
||
1478 | private $pourcMajHCompl2; |
||
1479 | |||
1480 | /** |
||
1481 | * Pourcent dep hc max. |
||
1482 | * |
||
1483 | * @var float|null |
||
1484 | */ |
||
1485 | private $pourcentDepHcMax; |
||
1486 | |||
1487 | /** |
||
1488 | * Pourcent dep hc plus mois. |
||
1489 | * |
||
1490 | * @var float|null |
||
1491 | */ |
||
1492 | private $pourcentDepHcPlusMois; |
||
1493 | |||
1494 | /** |
||
1495 | * Pourcentage repos remplacement. |
||
1496 | * |
||
1497 | * @var float|null |
||
1498 | */ |
||
1499 | private $pourcentageReposRemplacement; |
||
1500 | |||
1501 | /** |
||
1502 | * Prefixe. |
||
1503 | * |
||
1504 | * @var string|null |
||
1505 | */ |
||
1506 | private $prefixe; |
||
1507 | |||
1508 | /** |
||
1509 | * Prefixe devis. |
||
1510 | * |
||
1511 | * @var string|null |
||
1512 | */ |
||
1513 | private $prefixeDevis; |
||
1514 | |||
1515 | /** |
||
1516 | * Preparer chantier pret only. |
||
1517 | * |
||
1518 | * @var bool|null |
||
1519 | */ |
||
1520 | private $preparerChantierPretOnly; |
||
1521 | |||
1522 | /** |
||
1523 | * Prix defaut achat. |
||
1524 | * |
||
1525 | * @var int|null |
||
1526 | */ |
||
1527 | private $prixDefautAchat; |
||
1528 | |||
1529 | /** |
||
1530 | * Prix defaut entree directe. |
||
1531 | * |
||
1532 | * @var int|null |
||
1533 | */ |
||
1534 | private $prixDefautEntreeDirecte; |
||
1535 | |||
1536 | /** |
||
1537 | * Prix defaut inventaire. |
||
1538 | * |
||
1539 | * @var int|null |
||
1540 | */ |
||
1541 | private $prixDefautInventaire; |
||
1542 | |||
1543 | /** |
||
1544 | * Prix defaut sortie directe. |
||
1545 | * |
||
1546 | * @var int|null |
||
1547 | */ |
||
1548 | private $prixDefautSortieDirecte; |
||
1549 | |||
1550 | /** |
||
1551 | * Prix defaut vente. |
||
1552 | * |
||
1553 | * @var int|null |
||
1554 | */ |
||
1555 | private $prixDefautVente; |
||
1556 | |||
1557 | /** |
||
1558 | * Prochain numero pj. |
||
1559 | * |
||
1560 | * @var int|null |
||
1561 | */ |
||
1562 | private $prochainNumeroPj; |
||
1563 | |||
1564 | /** |
||
1565 | * Prorata heures creer ligne. |
||
1566 | * |
||
1567 | * @var bool|null |
||
1568 | */ |
||
1569 | private $prorataHeuresCreerLigne; |
||
1570 | |||
1571 | /** |
||
1572 | * Prorata heures designation moins. |
||
1573 | * |
||
1574 | * @var string|null |
||
1575 | */ |
||
1576 | private $prorataHeuresDesignationMoins; |
||
1577 | |||
1578 | /** |
||
1579 | * Prorata heures designation plus. |
||
1580 | * |
||
1581 | * @var string|null |
||
1582 | */ |
||
1583 | private $prorataHeuresDesignationPlus; |
||
1584 | |||
1585 | /** |
||
1586 | * Prorata heures option. |
||
1587 | * |
||
1588 | * @var string|null |
||
1589 | */ |
||
1590 | private $prorataHeuresOption; |
||
1591 | |||
1592 | /** |
||
1593 | * Prov cp infos emp. |
||
1594 | * |
||
1595 | * @var bool|null |
||
1596 | */ |
||
1597 | private $provCpInfosEmp; |
||
1598 | |||
1599 | /** |
||
1600 | * Provisions cp. |
||
1601 | * |
||
1602 | * @var bool|null |
||
1603 | */ |
||
1604 | private $provisionsCp; |
||
1605 | |||
1606 | /** |
||
1607 | * Qualite nb criteres. |
||
1608 | * |
||
1609 | * @var string|null |
||
1610 | */ |
||
1611 | private $qualiteNbCriteres; |
||
1612 | |||
1613 | /** |
||
1614 | * Qualite nb notes. |
||
1615 | * |
||
1616 | * @var string|null |
||
1617 | */ |
||
1618 | private $qualiteNbNotes; |
||
1619 | |||
1620 | /** |
||
1621 | * Qualite satisfaction generale. |
||
1622 | * |
||
1623 | * @var bool|null |
||
1624 | */ |
||
1625 | private $qualiteSatisfactionGenerale; |
||
1626 | |||
1627 | /** |
||
1628 | * Rt fdans fact dev. |
||
1629 | * |
||
1630 | * @var bool|null |
||
1631 | */ |
||
1632 | private $rtFdansFactDev; |
||
1633 | |||
1634 | /** |
||
1635 | * Reference mensu contrat proprete. |
||
1636 | * |
||
1637 | * @var bool|null |
||
1638 | */ |
||
1639 | private $referenceMensuContratProprete; |
||
1640 | |||
1641 | /** |
||
1642 | * Remplacant abs jf pas auto. |
||
1643 | * |
||
1644 | * @var bool|null |
||
1645 | */ |
||
1646 | private $remplacantAbsJfPasAuto; |
||
1647 | |||
1648 | /** |
||
1649 | * Remplacant travaille pas jf. |
||
1650 | * |
||
1651 | * @var bool|null |
||
1652 | */ |
||
1653 | private $remplacantTravaillePasJf; |
||
1654 | |||
1655 | /** |
||
1656 | * Remplacement hcjf. |
||
1657 | * |
||
1658 | * @var bool|null |
||
1659 | */ |
||
1660 | private $remplacementHcjf; |
||
1661 | |||
1662 | /** |
||
1663 | * Repos compensateur pour travailleur nuit. |
||
1664 | * |
||
1665 | * @var bool|null |
||
1666 | */ |
||
1667 | private $reposCompensateurPourTravailleurNuit; |
||
1668 | |||
1669 | /** |
||
1670 | * Saisir absences sur hc. |
||
1671 | * |
||
1672 | * @var bool|null |
||
1673 | */ |
||
1674 | private $saisirAbsencesSurHc; |
||
1675 | |||
1676 | /** |
||
1677 | * Saisir code chantier achat. |
||
1678 | * |
||
1679 | * @var bool|null |
||
1680 | */ |
||
1681 | private $saisirCodeChantierAchat; |
||
1682 | |||
1683 | /** |
||
1684 | * Saisir num bt. |
||
1685 | * |
||
1686 | * @var bool|null |
||
1687 | */ |
||
1688 | private $saisirNumBt; |
||
1689 | |||
1690 | /** |
||
1691 | * Services paie. |
||
1692 | * |
||
1693 | * @var string|null |
||
1694 | */ |
||
1695 | private $servicesPaie; |
||
1696 | |||
1697 | /** |
||
1698 | * Seuil majo h compl. |
||
1699 | * |
||
1700 | * @var float|null |
||
1701 | */ |
||
1702 | private $seuilMajoHCompl; |
||
1703 | |||
1704 | /** |
||
1705 | * Taux escompte. |
||
1706 | * |
||
1707 | * @var float|null |
||
1708 | */ |
||
1709 | private $tauxEscompte; |
||
1710 | |||
1711 | /** |
||
1712 | * Taux majo hc33. |
||
1713 | * |
||
1714 | * @var float|null |
||
1715 | */ |
||
1716 | private $tauxMajoHc33; |
||
1717 | |||
1718 | /** |
||
1719 | * Taux majoration h compl. |
||
1720 | * |
||
1721 | * @var float|null |
||
1722 | */ |
||
1723 | private $tauxMajorationHCompl; |
||
1724 | |||
1725 | /** |
||
1726 | * Taux tva achat. |
||
1727 | * |
||
1728 | * @var float|null |
||
1729 | */ |
||
1730 | private $tauxTvaAchat; |
||
1731 | |||
1732 | /** |
||
1733 | * Taux tva taxe deee. |
||
1734 | * |
||
1735 | * @var float|null |
||
1736 | */ |
||
1737 | private $tauxTvaTaxeDeee; |
||
1738 | |||
1739 | /** |
||
1740 | * Taux tva vente. |
||
1741 | * |
||
1742 | * @var float|null |
||
1743 | */ |
||
1744 | private $tauxTvaVente; |
||
1745 | |||
1746 | /** |
||
1747 | * Type rempl defaut. |
||
1748 | * |
||
1749 | * @var string|null |
||
1750 | */ |
||
1751 | private $typeRemplDefaut; |
||
1752 | |||
1753 | /** |
||
1754 | * Type transfert vente. |
||
1755 | * |
||
1756 | * @var string|null |
||
1757 | */ |
||
1758 | private $typeTransfertVente; |
||
1759 | |||
1760 | /** |
||
1761 | * Uniq id synchro. |
||
1762 | * |
||
1763 | * @var string|null |
||
1764 | */ |
||
1765 | private $uniqIdSynchro; |
||
1766 | |||
1767 | /** |
||
1768 | * Utiliser stock mini. |
||
1769 | * |
||
1770 | * @var bool|null |
||
1771 | */ |
||
1772 | private $utiliserStockMini; |
||
1773 | |||
1774 | /** |
||
1775 | * Visualiser pointage bt valides. |
||
1776 | * |
||
1777 | * @var bool|null |
||
1778 | */ |
||
1779 | private $visualiserPointageBtValides; |
||
1780 | |||
1781 | |||
1782 | /** |
||
1783 | * Constructor. |
||
1784 | */ |
||
1785 | public function __construct() { |
||
1788 | |||
1789 | /** |
||
1790 | * Get the 35 heures. |
||
1791 | * |
||
1792 | * @return DateTime|null Returns the 35 heures. |
||
1793 | */ |
||
1794 | public function get35Heures(): ?DateTime{ |
||
1797 | |||
1798 | /** |
||
1799 | * Get the alertes paie dans pointage. |
||
1800 | * |
||
1801 | * @return bool|null Returns the alertes paie dans pointage. |
||
1802 | */ |
||
1803 | public function getAlertesPaieDansPointage(): ?bool{ |
||
1806 | |||
1807 | /** |
||
1808 | * Get the alertes paie dans reclam. |
||
1809 | * |
||
1810 | * @return bool|null Returns the alertes paie dans reclam. |
||
1811 | */ |
||
1812 | public function getAlertesPaieDansReclam(): ?bool{ |
||
1815 | |||
1816 | /** |
||
1817 | * Get the analytique nature agence. |
||
1818 | * |
||
1819 | * @return bool|null Returns the analytique nature agence. |
||
1820 | */ |
||
1821 | public function getAnalytiqueNatureAgence(): ?bool{ |
||
1824 | |||
1825 | /** |
||
1826 | * Get the analytique par chantier. |
||
1827 | * |
||
1828 | * @return bool|null Returns the analytique par chantier. |
||
1829 | */ |
||
1830 | public function getAnalytiqueParChantier(): ?bool{ |
||
1833 | |||
1834 | /** |
||
1835 | * Get the archiver devis. |
||
1836 | * |
||
1837 | * @return bool|null Returns the archiver devis. |
||
1838 | */ |
||
1839 | public function getArchiverDevis(): ?bool{ |
||
1842 | |||
1843 | /** |
||
1844 | * Get the archiver facture. |
||
1845 | * |
||
1846 | * @return bool|null Returns the archiver facture. |
||
1847 | */ |
||
1848 | public function getArchiverFacture(): ?bool{ |
||
1851 | |||
1852 | /** |
||
1853 | * Get the arrondi sur pu. |
||
1854 | * |
||
1855 | * @return bool|null Returns the arrondi sur pu. |
||
1856 | */ |
||
1857 | public function getArrondiSurPu(): ?bool{ |
||
1860 | |||
1861 | /** |
||
1862 | * Get the autoriser da sans maj stock. |
||
1863 | * |
||
1864 | * @return bool|null Returns the autoriser da sans maj stock. |
||
1865 | */ |
||
1866 | public function getAutoriserDaSansMajStock(): ?bool{ |
||
1869 | |||
1870 | /** |
||
1871 | * Get the autoriser dep bud cha cde type. |
||
1872 | * |
||
1873 | * @return bool|null Returns the autoriser dep bud cha cde type. |
||
1874 | */ |
||
1875 | public function getAutoriserDepBudChaCdeType(): ?bool{ |
||
1878 | |||
1879 | /** |
||
1880 | * Get the autoriser mensu tache vide. |
||
1881 | * |
||
1882 | * @return bool|null Returns the autoriser mensu tache vide. |
||
1883 | */ |
||
1884 | public function getAutoriserMensuTacheVide(): ?bool{ |
||
1887 | |||
1888 | /** |
||
1889 | * Get the bl num fact. |
||
1890 | * |
||
1891 | * @return int|null Returns the bl num fact. |
||
1892 | */ |
||
1893 | public function getBlNumFact(): ?int{ |
||
1896 | |||
1897 | /** |
||
1898 | * Get the bl prefixe. |
||
1899 | * |
||
1900 | * @return string|null Returns the bl prefixe. |
||
1901 | */ |
||
1902 | public function getBlPrefixe(): ?string{ |
||
1905 | |||
1906 | /** |
||
1907 | * Get the br num fact. |
||
1908 | * |
||
1909 | * @return int|null Returns the br num fact. |
||
1910 | */ |
||
1911 | public function getBrNumFact(): ?int{ |
||
1914 | |||
1915 | /** |
||
1916 | * Get the br prefixe. |
||
1917 | * |
||
1918 | * @return string|null Returns the br prefixe. |
||
1919 | */ |
||
1920 | public function getBrPrefixe(): ?string{ |
||
1923 | |||
1924 | /** |
||
1925 | * Get the bs num fact. |
||
1926 | * |
||
1927 | * @return int|null Returns the bs num fact. |
||
1928 | */ |
||
1929 | public function getBsNumFact(): ?int{ |
||
1932 | |||
1933 | /** |
||
1934 | * Get the bs prefixe. |
||
1935 | * |
||
1936 | * @return string|null Returns the bs prefixe. |
||
1937 | */ |
||
1938 | public function getBsPrefixe(): ?string{ |
||
1941 | |||
1942 | /** |
||
1943 | * Get the cdd mensu total heures. |
||
1944 | * |
||
1945 | * @return bool|null Returns the cdd mensu total heures. |
||
1946 | */ |
||
1947 | public function getCddMensuTotalHeures(): ?bool{ |
||
1950 | |||
1951 | /** |
||
1952 | * Get the cp sans provisions. |
||
1953 | * |
||
1954 | * @return bool|null Returns the cp sans provisions. |
||
1955 | */ |
||
1956 | public function getCpSansProvisions(): ?bool{ |
||
1959 | |||
1960 | /** |
||
1961 | * Get the cde client num fact. |
||
1962 | * |
||
1963 | * @return int|null Returns the cde client num fact. |
||
1964 | */ |
||
1965 | public function getCdeClientNumFact(): ?int{ |
||
1968 | |||
1969 | /** |
||
1970 | * Get the cde client prefixe. |
||
1971 | * |
||
1972 | * @return string|null Returns the cde client prefixe. |
||
1973 | */ |
||
1974 | public function getCdeClientPrefixe(): ?string{ |
||
1977 | |||
1978 | /** |
||
1979 | * Get the cde frn num fact. |
||
1980 | * |
||
1981 | * @return int|null Returns the cde frn num fact. |
||
1982 | */ |
||
1983 | public function getCdeFrnNumFact(): ?int{ |
||
1986 | |||
1987 | /** |
||
1988 | * Get the cde frn prefixe. |
||
1989 | * |
||
1990 | * @return string|null Returns the cde frn prefixe. |
||
1991 | */ |
||
1992 | public function getCdeFrnPrefixe(): ?string{ |
||
1995 | |||
1996 | /** |
||
1997 | * Get the centralisation vente. |
||
1998 | * |
||
1999 | * @return bool|null Returns the centralisation vente. |
||
2000 | */ |
||
2001 | public function getCentralisationVente(): ?bool{ |
||
2004 | |||
2005 | /** |
||
2006 | * Get the charge mensuelle sans tache. |
||
2007 | * |
||
2008 | * @return bool|null Returns the charge mensuelle sans tache. |
||
2009 | */ |
||
2010 | public function getChargeMensuelleSansTache(): ?bool{ |
||
2013 | |||
2014 | /** |
||
2015 | * Get the chemin doss compta. |
||
2016 | * |
||
2017 | * @return string|null Returns the chemin doss compta. |
||
2018 | */ |
||
2019 | public function getCheminDossCompta(): ?string{ |
||
2022 | |||
2023 | /** |
||
2024 | * Get the cle debloquer periode cloturee. |
||
2025 | * |
||
2026 | * @return string|null Returns the cle debloquer periode cloturee. |
||
2027 | */ |
||
2028 | public function getCleDebloquerPeriodeCloturee(): ?string{ |
||
2031 | |||
2032 | /** |
||
2033 | * Get the code abs cp sans solde. |
||
2034 | * |
||
2035 | * @return string|null Returns the code abs cp sans solde. |
||
2036 | */ |
||
2037 | public function getCodeAbsCpSansSolde(): ?string{ |
||
2040 | |||
2041 | /** |
||
2042 | * Get the code abs def jf. |
||
2043 | * |
||
2044 | * @return string|null Returns the code abs def jf. |
||
2045 | */ |
||
2046 | public function getCodeAbsDefJf(): ?string{ |
||
2049 | |||
2050 | /** |
||
2051 | * Get the code abs def jf moins3. |
||
2052 | * |
||
2053 | * @return string|null Returns the code abs def jf moins3. |
||
2054 | */ |
||
2055 | public function getCodeAbsDefJfMoins3(): ?string{ |
||
2058 | |||
2059 | /** |
||
2060 | * Get the code abs fermeture chantier. |
||
2061 | * |
||
2062 | * @return string|null Returns the code abs fermeture chantier. |
||
2063 | */ |
||
2064 | public function getCodeAbsFermetureChantier(): ?string{ |
||
2067 | |||
2068 | /** |
||
2069 | * Get the code abs pointage defaut. |
||
2070 | * |
||
2071 | * @return string|null Returns the code abs pointage defaut. |
||
2072 | */ |
||
2073 | public function getCodeAbsPointageDefaut(): ?string{ |
||
2076 | |||
2077 | /** |
||
2078 | * Get the code collabo valid. |
||
2079 | * |
||
2080 | * @return string|null Returns the code collabo valid. |
||
2081 | */ |
||
2082 | public function getCodeCollaboValid(): ?string{ |
||
2085 | |||
2086 | /** |
||
2087 | * Get the code collaborateur. |
||
2088 | * |
||
2089 | * @return string|null Returns the code collaborateur. |
||
2090 | */ |
||
2091 | public function getCodeCollaborateur(): ?string{ |
||
2094 | |||
2095 | /** |
||
2096 | * Get the code depot par defaut. |
||
2097 | * |
||
2098 | * @return string|null Returns the code depot par defaut. |
||
2099 | */ |
||
2100 | public function getCodeDepotParDefaut(): ?string{ |
||
2103 | |||
2104 | /** |
||
2105 | * Get the code ics. |
||
2106 | * |
||
2107 | * @return string|null Returns the code ics. |
||
2108 | */ |
||
2109 | public function getCodeIcs(): ?string{ |
||
2112 | |||
2113 | /** |
||
2114 | * Get the code ja. |
||
2115 | * |
||
2116 | * @return string|null Returns the code ja. |
||
2117 | */ |
||
2118 | public function getCodeJa(): ?string{ |
||
2121 | |||
2122 | /** |
||
2123 | * Get the code jv negoce. |
||
2124 | * |
||
2125 | * @return string|null Returns the code jv negoce. |
||
2126 | */ |
||
2127 | public function getCodeJvNegoce(): ?string{ |
||
2130 | |||
2131 | /** |
||
2132 | * Get the code jv prestation. |
||
2133 | * |
||
2134 | * @return string|null Returns the code jv prestation. |
||
2135 | */ |
||
2136 | public function getCodeJvPrestation(): ?string{ |
||
2139 | |||
2140 | /** |
||
2141 | * Get the code liv par defaut. |
||
2142 | * |
||
2143 | * @return string|null Returns the code liv par defaut. |
||
2144 | */ |
||
2145 | public function getCodeLivParDefaut(): ?string{ |
||
2148 | |||
2149 | /** |
||
2150 | * Get the code prime chantier1. |
||
2151 | * |
||
2152 | * @return string|null Returns the code prime chantier1. |
||
2153 | */ |
||
2154 | public function getCodePrimeChantier1(): ?string{ |
||
2157 | |||
2158 | /** |
||
2159 | * Get the code prime chantier2. |
||
2160 | * |
||
2161 | * @return string|null Returns the code prime chantier2. |
||
2162 | */ |
||
2163 | public function getCodePrimeChantier2(): ?string{ |
||
2166 | |||
2167 | /** |
||
2168 | * Get the code prime chantier3. |
||
2169 | * |
||
2170 | * @return string|null Returns the code prime chantier3. |
||
2171 | */ |
||
2172 | public function getCodePrimeChantier3(): ?string{ |
||
2175 | |||
2176 | /** |
||
2177 | * Get the code prime dimanche1. |
||
2178 | * |
||
2179 | * @return string|null Returns the code prime dimanche1. |
||
2180 | */ |
||
2181 | public function getCodePrimeDimanche1(): ?string{ |
||
2184 | |||
2185 | /** |
||
2186 | * Get the code prime dimanche1 type2. |
||
2187 | * |
||
2188 | * @return string|null Returns the code prime dimanche1 type2. |
||
2189 | */ |
||
2190 | public function getCodePrimeDimanche1Type2(): ?string{ |
||
2193 | |||
2194 | /** |
||
2195 | * Get the code prime dimanche2. |
||
2196 | * |
||
2197 | * @return string|null Returns the code prime dimanche2. |
||
2198 | */ |
||
2199 | public function getCodePrimeDimanche2(): ?string{ |
||
2202 | |||
2203 | /** |
||
2204 | * Get the code prime forfait. |
||
2205 | * |
||
2206 | * @return string|null Returns the code prime forfait. |
||
2207 | */ |
||
2208 | public function getCodePrimeForfait(): ?string{ |
||
2211 | |||
2212 | /** |
||
2213 | * Get the code prime h compl. |
||
2214 | * |
||
2215 | * @return string|null Returns the code prime h compl. |
||
2216 | */ |
||
2217 | public function getCodePrimeHCompl(): ?string{ |
||
2220 | |||
2221 | /** |
||
2222 | * Get the code prime h compl2. |
||
2223 | * |
||
2224 | * @return string|null Returns the code prime h compl2. |
||
2225 | */ |
||
2226 | public function getCodePrimeHCompl2(): ?string{ |
||
2229 | |||
2230 | /** |
||
2231 | * Get the code prime jf1. |
||
2232 | * |
||
2233 | * @return string|null Returns the code prime jf1. |
||
2234 | */ |
||
2235 | public function getCodePrimeJf1(): ?string{ |
||
2238 | |||
2239 | /** |
||
2240 | * Get the code prime jf1 type2. |
||
2241 | * |
||
2242 | * @return string|null Returns the code prime jf1 type2. |
||
2243 | */ |
||
2244 | public function getCodePrimeJf1Type2(): ?string{ |
||
2247 | |||
2248 | /** |
||
2249 | * Get the code prime jf2. |
||
2250 | * |
||
2251 | * @return string|null Returns the code prime jf2. |
||
2252 | */ |
||
2253 | public function getCodePrimeJf2(): ?string{ |
||
2256 | |||
2257 | /** |
||
2258 | * Get the code prime jf mai. |
||
2259 | * |
||
2260 | * @return string|null Returns the code prime jf mai. |
||
2261 | */ |
||
2262 | public function getCodePrimeJfMai(): ?string{ |
||
2265 | |||
2266 | /** |
||
2267 | * Get the code prime nuit1. |
||
2268 | * |
||
2269 | * @return string|null Returns the code prime nuit1. |
||
2270 | */ |
||
2271 | public function getCodePrimeNuit1(): ?string{ |
||
2274 | |||
2275 | /** |
||
2276 | * Get the code prime nuit1 type2. |
||
2277 | * |
||
2278 | * @return string|null Returns the code prime nuit1 type2. |
||
2279 | */ |
||
2280 | public function getCodePrimeNuit1Type2(): ?string{ |
||
2283 | |||
2284 | /** |
||
2285 | * Get the code prime nuit2. |
||
2286 | * |
||
2287 | * @return string|null Returns the code prime nuit2. |
||
2288 | */ |
||
2289 | public function getCodePrimeNuit2(): ?string{ |
||
2292 | |||
2293 | /** |
||
2294 | * Get the code prime paniers. |
||
2295 | * |
||
2296 | * @return string|null Returns the code prime paniers. |
||
2297 | */ |
||
2298 | public function getCodePrimePaniers(): ?string{ |
||
2301 | |||
2302 | /** |
||
2303 | * Get the code prime rs. |
||
2304 | * |
||
2305 | * @return string|null Returns the code prime rs. |
||
2306 | */ |
||
2307 | public function getCodePrimeRs(): ?string{ |
||
2310 | |||
2311 | /** |
||
2312 | * Get the code prime tp. |
||
2313 | * |
||
2314 | * @return string|null Returns the code prime tp. |
||
2315 | */ |
||
2316 | public function getCodePrimeTp(): ?string{ |
||
2319 | |||
2320 | /** |
||
2321 | * Get the code reg jv neg debut. |
||
2322 | * |
||
2323 | * @return string|null Returns the code reg jv neg debut. |
||
2324 | */ |
||
2325 | public function getCodeRegJvNegDebut(): ?string{ |
||
2328 | |||
2329 | /** |
||
2330 | * Get the code reg jv neg fin. |
||
2331 | * |
||
2332 | * @return string|null Returns the code reg jv neg fin. |
||
2333 | */ |
||
2334 | public function getCodeRegJvNegFin(): ?string{ |
||
2337 | |||
2338 | /** |
||
2339 | * Get the code reg jv prest debut. |
||
2340 | * |
||
2341 | * @return string|null Returns the code reg jv prest debut. |
||
2342 | */ |
||
2343 | public function getCodeRegJvPrestDebut(): ?string{ |
||
2346 | |||
2347 | /** |
||
2348 | * Get the code reg jv prest fin. |
||
2349 | * |
||
2350 | * @return string|null Returns the code reg jv prest fin. |
||
2351 | */ |
||
2352 | public function getCodeRegJvPrestFin(): ?string{ |
||
2355 | |||
2356 | /** |
||
2357 | * Get the code tache defaut. |
||
2358 | * |
||
2359 | * @return string|null Returns the code tache defaut. |
||
2360 | */ |
||
2361 | public function getCodeTacheDefaut(): ?string{ |
||
2364 | |||
2365 | /** |
||
2366 | * Get the collectif def. |
||
2367 | * |
||
2368 | * @return string|null Returns the collectif def. |
||
2369 | */ |
||
2370 | public function getCollectifDef(): ?string{ |
||
2373 | |||
2374 | /** |
||
2375 | * Get the collectif def fournisseur. |
||
2376 | * |
||
2377 | * @return string|null Returns the collectif def fournisseur. |
||
2378 | */ |
||
2379 | public function getCollectifDefFournisseur(): ?string{ |
||
2382 | |||
2383 | /** |
||
2384 | * Get the commentaire journee solidarite. |
||
2385 | * |
||
2386 | * @return string|null Returns the commentaire journee solidarite. |
||
2387 | */ |
||
2388 | public function getCommentaireJourneeSolidarite(): ?string{ |
||
2391 | |||
2392 | /** |
||
2393 | * Get the compte collectif achat. |
||
2394 | * |
||
2395 | * @return string|null Returns the compte collectif achat. |
||
2396 | */ |
||
2397 | public function getCompteCollectifAchat(): ?string{ |
||
2400 | |||
2401 | /** |
||
2402 | * Get the compte collectif vente. |
||
2403 | * |
||
2404 | * @return string|null Returns the compte collectif vente. |
||
2405 | */ |
||
2406 | public function getCompteCollectifVente(): ?string{ |
||
2409 | |||
2410 | /** |
||
2411 | * Get the compte escompte ca exonere. |
||
2412 | * |
||
2413 | * @return string|null Returns the compte escompte ca exonere. |
||
2414 | */ |
||
2415 | public function getCompteEscompteCaExonere(): ?string{ |
||
2418 | |||
2419 | /** |
||
2420 | * Get the compte escompte soumis tva. |
||
2421 | * |
||
2422 | * @return string|null Returns the compte escompte soumis tva. |
||
2423 | */ |
||
2424 | public function getCompteEscompteSoumisTva(): ?string{ |
||
2427 | |||
2428 | /** |
||
2429 | * Get the compte tva achat. |
||
2430 | * |
||
2431 | * @return string|null Returns the compte tva achat. |
||
2432 | */ |
||
2433 | public function getCompteTvaAchat(): ?string{ |
||
2436 | |||
2437 | /** |
||
2438 | * Get the compte tva taxe deee. |
||
2439 | * |
||
2440 | * @return string|null Returns the compte tva taxe deee. |
||
2441 | */ |
||
2442 | public function getCompteTvaTaxeDeee(): ?string{ |
||
2445 | |||
2446 | /** |
||
2447 | * Get the compte tva vente. |
||
2448 | * |
||
2449 | * @return string|null Returns the compte tva vente. |
||
2450 | */ |
||
2451 | public function getCompteTvaVente(): ?string{ |
||
2454 | |||
2455 | /** |
||
2456 | * Get the compte ventil taxe deee. |
||
2457 | * |
||
2458 | * @return string|null Returns the compte ventil taxe deee. |
||
2459 | */ |
||
2460 | public function getCompteVentilTaxeDeee(): ?string{ |
||
2463 | |||
2464 | /** |
||
2465 | * Get the compter samedi tf cp paie. |
||
2466 | * |
||
2467 | * @return bool|null Returns the compter samedi tf cp paie. |
||
2468 | */ |
||
2469 | public function getCompterSamediTfCpPaie(): ?bool{ |
||
2472 | |||
2473 | /** |
||
2474 | * Get the controler cde frn. |
||
2475 | * |
||
2476 | * @return bool|null Returns the controler cde frn. |
||
2477 | */ |
||
2478 | public function getControlerCdeFrn(): ?bool{ |
||
2481 | |||
2482 | /** |
||
2483 | * Get the controler charges mensuelles. |
||
2484 | * |
||
2485 | * @return bool|null Returns the controler charges mensuelles. |
||
2486 | */ |
||
2487 | public function getControlerChargesMensuelles(): ?bool{ |
||
2490 | |||
2491 | /** |
||
2492 | * Get the controler code reg. |
||
2493 | * |
||
2494 | * @return bool|null Returns the controler code reg. |
||
2495 | */ |
||
2496 | public function getControlerCodeReg(): ?bool{ |
||
2499 | |||
2500 | /** |
||
2501 | * Get the controler dep hc max. |
||
2502 | * |
||
2503 | * @return bool|null Returns the controler dep hc max. |
||
2504 | */ |
||
2505 | public function getControlerDepHcMax(): ?bool{ |
||
2508 | |||
2509 | /** |
||
2510 | * Get the controler dep hc plus mois. |
||
2511 | * |
||
2512 | * @return bool|null Returns the controler dep hc plus mois. |
||
2513 | */ |
||
2514 | public function getControlerDepHcPlusMois(): ?bool{ |
||
2517 | |||
2518 | /** |
||
2519 | * Get the creer alerte paie def en paie. |
||
2520 | * |
||
2521 | * @return bool|null Returns the creer alerte paie def en paie. |
||
2522 | */ |
||
2523 | public function getCreerAlertePaieDefEnPaie(): ?bool{ |
||
2526 | |||
2527 | /** |
||
2528 | * Get the ctrl auto cp. |
||
2529 | * |
||
2530 | * @return bool|null Returns the ctrl auto cp. |
||
2531 | */ |
||
2532 | public function getCtrlAutoCp(): ?bool{ |
||
2535 | |||
2536 | /** |
||
2537 | * Get the ctrl auto cp avec anticipation. |
||
2538 | * |
||
2539 | * @return bool|null Returns the ctrl auto cp avec anticipation. |
||
2540 | */ |
||
2541 | public function getCtrlAutoCpAvecAnticipation(): ?bool{ |
||
2544 | |||
2545 | /** |
||
2546 | * Get the date appli gestion heures en plus. |
||
2547 | * |
||
2548 | * @return DateTime|null Returns the date appli gestion heures en plus. |
||
2549 | */ |
||
2550 | public function getDateAppliGestionHeuresEnPlus(): ?DateTime{ |
||
2553 | |||
2554 | /** |
||
2555 | * Get the date journee solidarite. |
||
2556 | * |
||
2557 | * @return DateTime|null Returns the date journee solidarite. |
||
2558 | */ |
||
2559 | public function getDateJourneeSolidarite(): ?DateTime{ |
||
2562 | |||
2563 | /** |
||
2564 | * Get the date validation synchro. |
||
2565 | * |
||
2566 | * @return DateTime|null Returns the date validation synchro. |
||
2567 | */ |
||
2568 | public function getDateValidationSynchro(): ?DateTime{ |
||
2571 | |||
2572 | /** |
||
2573 | * Get the dec mois prep fact. |
||
2574 | * |
||
2575 | * @return int|null Returns the dec mois prep fact. |
||
2576 | */ |
||
2577 | public function getDecMoisPrepFact(): ?int{ |
||
2580 | |||
2581 | /** |
||
2582 | * Get the dernier compte client. |
||
2583 | * |
||
2584 | * @return string|null Returns the dernier compte client. |
||
2585 | */ |
||
2586 | public function getDernierCompteClient(): ?string{ |
||
2589 | |||
2590 | /** |
||
2591 | * Get the dernier compte frn. |
||
2592 | * |
||
2593 | * @return string|null Returns the dernier compte frn. |
||
2594 | */ |
||
2595 | public function getDernierCompteFrn(): ?string{ |
||
2598 | |||
2599 | /** |
||
2600 | * Get the discr. |
||
2601 | * |
||
2602 | * @return string|null Returns the discr. |
||
2603 | */ |
||
2604 | public function getDiscr(): ?string{ |
||
2607 | |||
2608 | /** |
||
2609 | * Get the doss compta. |
||
2610 | * |
||
2611 | * @return string|null Returns the doss compta. |
||
2612 | */ |
||
2613 | public function getDossCompta(): ?string{ |
||
2616 | |||
2617 | /** |
||
2618 | * Get the doss paie. |
||
2619 | * |
||
2620 | * @return string|null Returns the doss paie. |
||
2621 | */ |
||
2622 | public function getDossPaie(): ?string{ |
||
2625 | |||
2626 | /** |
||
2627 | * Get the es code abs entree. |
||
2628 | * |
||
2629 | * @return string|null Returns the es code abs entree. |
||
2630 | */ |
||
2631 | public function getEsCodeAbsEntree(): ?string{ |
||
2634 | |||
2635 | /** |
||
2636 | * Get the es code abs sortie. |
||
2637 | * |
||
2638 | * @return string|null Returns the es code abs sortie. |
||
2639 | */ |
||
2640 | public function getEsCodeAbsSortie(): ?string{ |
||
2643 | |||
2644 | /** |
||
2645 | * Get the es heures reelles. |
||
2646 | * |
||
2647 | * @return bool|null Returns the es heures reelles. |
||
2648 | */ |
||
2649 | public function getEsHeuresReelles(): ?bool{ |
||
2652 | |||
2653 | /** |
||
2654 | * Get the etablissements paie. |
||
2655 | * |
||
2656 | * @return string|null Returns the etablissements paie. |
||
2657 | */ |
||
2658 | public function getEtablissementsPaie(): ?string{ |
||
2661 | |||
2662 | /** |
||
2663 | * Get the etat. |
||
2664 | * |
||
2665 | * @return string|null Returns the etat. |
||
2666 | */ |
||
2667 | public function getEtat(): ?string{ |
||
2670 | |||
2671 | /** |
||
2672 | * Get the euro. |
||
2673 | * |
||
2674 | * @return bool|null Returns the euro. |
||
2675 | */ |
||
2676 | public function getEuro(): ?bool{ |
||
2679 | |||
2680 | /** |
||
2681 | * Get the facturation prorata heures. |
||
2682 | * |
||
2683 | * @return bool|null Returns the facturation prorata heures. |
||
2684 | */ |
||
2685 | public function getFacturationProrataHeures(): ?bool{ |
||
2688 | |||
2689 | /** |
||
2690 | * Get the folio ja. |
||
2691 | * |
||
2692 | * @return string|null Returns the folio ja. |
||
2693 | */ |
||
2694 | public function getFolioJa(): ?string{ |
||
2697 | |||
2698 | /** |
||
2699 | * Get the folio jv negoce. |
||
2700 | * |
||
2701 | * @return string|null Returns the folio jv negoce. |
||
2702 | */ |
||
2703 | public function getFolioJvNegoce(): ?string{ |
||
2706 | |||
2707 | /** |
||
2708 | * Get the folio jv prestation. |
||
2709 | * |
||
2710 | * @return string|null Returns the folio jv prestation. |
||
2711 | */ |
||
2712 | public function getFolioJvPrestation(): ?string{ |
||
2715 | |||
2716 | /** |
||
2717 | * Get the gerer num cpt chantier. |
||
2718 | * |
||
2719 | * @return bool|null Returns the gerer num cpt chantier. |
||
2720 | */ |
||
2721 | public function getGererNumCptChantier(): ?bool{ |
||
2724 | |||
2725 | /** |
||
2726 | * Get the gestion h compl. |
||
2727 | * |
||
2728 | * @return bool|null Returns the gestion h compl. |
||
2729 | */ |
||
2730 | public function getGestionHCompl(): ?bool{ |
||
2733 | |||
2734 | /** |
||
2735 | * Get the gestion h sup mens. |
||
2736 | * |
||
2737 | * @return bool|null Returns the gestion h sup mens. |
||
2738 | */ |
||
2739 | public function getGestionHSupMens(): ?bool{ |
||
2742 | |||
2743 | /** |
||
2744 | * Get the gestion h sup mensuelle. |
||
2745 | * |
||
2746 | * @return bool|null Returns the gestion h sup mensuelle. |
||
2747 | */ |
||
2748 | public function getGestionHSupMensuelle(): ?bool{ |
||
2751 | |||
2752 | /** |
||
2753 | * Get the gestion maj dim. |
||
2754 | * |
||
2755 | * @return string|null Returns the gestion maj dim. |
||
2756 | */ |
||
2757 | public function getGestionMajDim(): ?string{ |
||
2760 | |||
2761 | /** |
||
2762 | * Get the gestion maj jf. |
||
2763 | * |
||
2764 | * @return string|null Returns the gestion maj jf. |
||
2765 | */ |
||
2766 | public function getGestionMajJf(): ?string{ |
||
2769 | |||
2770 | /** |
||
2771 | * Get the gestion maj nuit. |
||
2772 | * |
||
2773 | * @return string|null Returns the gestion maj nuit. |
||
2774 | */ |
||
2775 | public function getGestionMajNuit(): ?string{ |
||
2778 | |||
2779 | /** |
||
2780 | * Get the gestion multi depot. |
||
2781 | * |
||
2782 | * @return bool|null Returns the gestion multi depot. |
||
2783 | */ |
||
2784 | public function getGestionMultiDepot(): ?bool{ |
||
2787 | |||
2788 | /** |
||
2789 | * Get the gestion quotas. |
||
2790 | * |
||
2791 | * @return bool|null Returns the gestion quotas. |
||
2792 | */ |
||
2793 | public function getGestionQuotas(): ?bool{ |
||
2796 | |||
2797 | /** |
||
2798 | * Get the gestion specif jf. |
||
2799 | * |
||
2800 | * @return bool|null Returns the gestion specif jf. |
||
2801 | */ |
||
2802 | public function getGestionSpecifJf(): ?bool{ |
||
2805 | |||
2806 | /** |
||
2807 | * Get the gestion specif majo jf. |
||
2808 | * |
||
2809 | * @return bool|null Returns the gestion specif majo jf. |
||
2810 | */ |
||
2811 | public function getGestionSpecifMajoJf(): ?bool{ |
||
2814 | |||
2815 | /** |
||
2816 | * Get the h deb nuit. |
||
2817 | * |
||
2818 | * @return DateTime|null Returns the h deb nuit. |
||
2819 | */ |
||
2820 | public function getHDebNuit(): ?DateTime{ |
||
2823 | |||
2824 | /** |
||
2825 | * Get the h deb nuit trav nuit. |
||
2826 | * |
||
2827 | * @return DateTime|null Returns the h deb nuit trav nuit. |
||
2828 | */ |
||
2829 | public function getHDebNuitTravNuit(): ?DateTime{ |
||
2832 | |||
2833 | /** |
||
2834 | * Get the h fin nuit. |
||
2835 | * |
||
2836 | * @return DateTime|null Returns the h fin nuit. |
||
2837 | */ |
||
2838 | public function getHFinNuit(): ?DateTime{ |
||
2841 | |||
2842 | /** |
||
2843 | * Get the h fin nuit trav nuit. |
||
2844 | * |
||
2845 | * @return DateTime|null Returns the h fin nuit trav nuit. |
||
2846 | */ |
||
2847 | public function getHFinNuitTravNuit(): ?DateTime{ |
||
2850 | |||
2851 | /** |
||
2852 | * Get the heures absence mensualise. |
||
2853 | * |
||
2854 | * @return bool|null Returns the heures absence mensualise. |
||
2855 | */ |
||
2856 | public function getHeuresAbsenceMensualise(): ?bool{ |
||
2859 | |||
2860 | /** |
||
2861 | * Get the heures rempl egales mens titulaire. |
||
2862 | * |
||
2863 | * @return bool|null Returns the heures rempl egales mens titulaire. |
||
2864 | */ |
||
2865 | public function getHeuresRemplEgalesMensTitulaire(): ?bool{ |
||
2868 | |||
2869 | /** |
||
2870 | * Get the increment compte auto. |
||
2871 | * |
||
2872 | * @return int|null Returns the increment compte auto. |
||
2873 | */ |
||
2874 | public function getIncrementCompteAuto(): ?int{ |
||
2877 | |||
2878 | /** |
||
2879 | * Get the liaison compta win. |
||
2880 | * |
||
2881 | * @return bool|null Returns the liaison compta win. |
||
2882 | */ |
||
2883 | public function getLiaisonComptaWin(): ?bool{ |
||
2886 | |||
2887 | /** |
||
2888 | * Get the lib critere bool1. |
||
2889 | * |
||
2890 | * @return string|null Returns the lib critere bool1. |
||
2891 | */ |
||
2892 | public function getLibCritereBool1(): ?string{ |
||
2895 | |||
2896 | /** |
||
2897 | * Get the lib critere bool2. |
||
2898 | * |
||
2899 | * @return string|null Returns the lib critere bool2. |
||
2900 | */ |
||
2901 | public function getLibCritereBool2(): ?string{ |
||
2904 | |||
2905 | /** |
||
2906 | * Get the lib critere byte1. |
||
2907 | * |
||
2908 | * @return string|null Returns the lib critere byte1. |
||
2909 | */ |
||
2910 | public function getLibCritereByte1(): ?string{ |
||
2913 | |||
2914 | /** |
||
2915 | * Get the lib critere num1. |
||
2916 | * |
||
2917 | * @return string|null Returns the lib critere num1. |
||
2918 | */ |
||
2919 | public function getLibCritereNum1(): ?string{ |
||
2922 | |||
2923 | /** |
||
2924 | * Get the lib critere num2. |
||
2925 | * |
||
2926 | * @return string|null Returns the lib critere num2. |
||
2927 | */ |
||
2928 | public function getLibCritereNum2(): ?string{ |
||
2931 | |||
2932 | /** |
||
2933 | * Get the lib critere num3. |
||
2934 | * |
||
2935 | * @return string|null Returns the lib critere num3. |
||
2936 | */ |
||
2937 | public function getLibCritereNum3(): ?string{ |
||
2940 | |||
2941 | /** |
||
2942 | * Get the lib critere num4. |
||
2943 | * |
||
2944 | * @return string|null Returns the lib critere num4. |
||
2945 | */ |
||
2946 | public function getLibCritereNum4(): ?string{ |
||
2949 | |||
2950 | /** |
||
2951 | * Get the lib critere num5. |
||
2952 | * |
||
2953 | * @return string|null Returns the lib critere num5. |
||
2954 | */ |
||
2955 | public function getLibCritereNum5(): ?string{ |
||
2958 | |||
2959 | /** |
||
2960 | * Get the lib critere tab1. |
||
2961 | * |
||
2962 | * @return string|null Returns the lib critere tab1. |
||
2963 | */ |
||
2964 | public function getLibCritereTab1(): ?string{ |
||
2967 | |||
2968 | /** |
||
2969 | * Get the lib critere tab2. |
||
2970 | * |
||
2971 | * @return string|null Returns the lib critere tab2. |
||
2972 | */ |
||
2973 | public function getLibCritereTab2(): ?string{ |
||
2976 | |||
2977 | /** |
||
2978 | * Get the lib critere tab3. |
||
2979 | * |
||
2980 | * @return string|null Returns the lib critere tab3. |
||
2981 | */ |
||
2982 | public function getLibCritereTab3(): ?string{ |
||
2985 | |||
2986 | /** |
||
2987 | * Get the lib critere tab4. |
||
2988 | * |
||
2989 | * @return string|null Returns the lib critere tab4. |
||
2990 | */ |
||
2991 | public function getLibCritereTab4(): ?string{ |
||
2994 | |||
2995 | /** |
||
2996 | * Get the lib critere tab5. |
||
2997 | * |
||
2998 | * @return string|null Returns the lib critere tab5. |
||
2999 | */ |
||
3000 | public function getLibCritereTab5(): ?string{ |
||
3003 | |||
3004 | /** |
||
3005 | * Get the lib critere txt1. |
||
3006 | * |
||
3007 | * @return string|null Returns the lib critere txt1. |
||
3008 | */ |
||
3009 | public function getLibCritereTxt1(): ?string{ |
||
3012 | |||
3013 | /** |
||
3014 | * Get the lib critere txt2. |
||
3015 | * |
||
3016 | * @return string|null Returns the lib critere txt2. |
||
3017 | */ |
||
3018 | public function getLibCritereTxt2(): ?string{ |
||
3021 | |||
3022 | /** |
||
3023 | * Get the lib critere txt3. |
||
3024 | * |
||
3025 | * @return string|null Returns the lib critere txt3. |
||
3026 | */ |
||
3027 | public function getLibCritereTxt3(): ?string{ |
||
3030 | |||
3031 | /** |
||
3032 | * Get the lib critere txt4. |
||
3033 | * |
||
3034 | * @return string|null Returns the lib critere txt4. |
||
3035 | */ |
||
3036 | public function getLibCritereTxt4(): ?string{ |
||
3039 | |||
3040 | /** |
||
3041 | * Get the lib critere txt5. |
||
3042 | * |
||
3043 | * @return string|null Returns the lib critere txt5. |
||
3044 | */ |
||
3045 | public function getLibCritereTxt5(): ?string{ |
||
3048 | |||
3049 | /** |
||
3050 | * Get the libelle auto avoir. |
||
3051 | * |
||
3052 | * @return string|null Returns the libelle auto avoir. |
||
3053 | */ |
||
3054 | public function getLibelleAutoAvoir(): ?string{ |
||
3057 | |||
3058 | /** |
||
3059 | * Get the libelle auto facture. |
||
3060 | * |
||
3061 | * @return string|null Returns the libelle auto facture. |
||
3062 | */ |
||
3063 | public function getLibelleAutoFacture(): ?string{ |
||
3066 | |||
3067 | /** |
||
3068 | * Get the libelle heures surcroit. |
||
3069 | * |
||
3070 | * @return string|null Returns the libelle heures surcroit. |
||
3071 | */ |
||
3072 | public function getLibelleHeuresSurcroit(): ?string{ |
||
3075 | |||
3076 | /** |
||
3077 | * Get the libelle transfert. |
||
3078 | * |
||
3079 | * @return string|null Returns the libelle transfert. |
||
3080 | */ |
||
3081 | public function getLibelleTransfert(): ?string{ |
||
3084 | |||
3085 | /** |
||
3086 | * Get the libelle transfert achat. |
||
3087 | * |
||
3088 | * @return string|null Returns the libelle transfert achat. |
||
3089 | */ |
||
3090 | public function getLibelleTransfertAchat(): ?string{ |
||
3093 | |||
3094 | /** |
||
3095 | * Get the liv cde frn depot unique. |
||
3096 | * |
||
3097 | * @return bool|null Returns the liv cde frn depot unique. |
||
3098 | */ |
||
3099 | public function getLivCdeFrnDepotUnique(): ?bool{ |
||
3102 | |||
3103 | /** |
||
3104 | * Get the maj dernier passage bt. |
||
3105 | * |
||
3106 | * @return bool|null Returns the maj dernier passage bt. |
||
3107 | */ |
||
3108 | public function getMajDernierPassageBt(): ?bool{ |
||
3111 | |||
3112 | /** |
||
3113 | * Get the mail attestations. |
||
3114 | * |
||
3115 | * @return string|null Returns the mail attestations. |
||
3116 | */ |
||
3117 | public function getMailAttestations(): ?string{ |
||
3120 | |||
3121 | /** |
||
3122 | * Get the mail factures. |
||
3123 | * |
||
3124 | * @return string|null Returns the mail factures. |
||
3125 | */ |
||
3126 | public function getMailFactures(): ?string{ |
||
3129 | |||
3130 | /** |
||
3131 | * Get the maj dernier prix achat. |
||
3132 | * |
||
3133 | * @return bool|null Returns the maj dernier prix achat. |
||
3134 | */ |
||
3135 | public function getMajDernierPrixAchat(): ?bool{ |
||
3138 | |||
3139 | /** |
||
3140 | * Get the maj pamp. |
||
3141 | * |
||
3142 | * @return bool|null Returns the maj pamp. |
||
3143 | */ |
||
3144 | public function getMajPamp(): ?bool{ |
||
3147 | |||
3148 | /** |
||
3149 | * Get the majoration cascade. |
||
3150 | * |
||
3151 | * @return bool|null Returns the majoration cascade. |
||
3152 | */ |
||
3153 | public function getMajorationCascade(): ?bool{ |
||
3156 | |||
3157 | /** |
||
3158 | * Get the majoration h plus. |
||
3159 | * |
||
3160 | * @return string|null Returns the majoration h plus. |
||
3161 | */ |
||
3162 | public function getMajorationHPlus(): ?string{ |
||
3165 | |||
3166 | /** |
||
3167 | * Get the marge niveau edition. |
||
3168 | * |
||
3169 | * @return string|null Returns the marge niveau edition. |
||
3170 | */ |
||
3171 | public function getMargeNiveauEdition(): ?string{ |
||
3174 | |||
3175 | /** |
||
3176 | * Get the marge pourcent charge. |
||
3177 | * |
||
3178 | * @return float|null Returns the marge pourcent charge. |
||
3179 | */ |
||
3180 | public function getMargePourcentCharge(): ?float{ |
||
3183 | |||
3184 | /** |
||
3185 | * Get the marge sal insp prorata ca. |
||
3186 | * |
||
3187 | * @return bool|null Returns the marge sal insp prorata ca. |
||
3188 | */ |
||
3189 | public function getMargeSalInspProrataCa(): ?bool{ |
||
3192 | |||
3193 | /** |
||
3194 | * Get the mensualisation tache. |
||
3195 | * |
||
3196 | * @return bool|null Returns the mensualisation tache. |
||
3197 | */ |
||
3198 | public function getMensualisationTache(): ?bool{ |
||
3201 | |||
3202 | /** |
||
3203 | * Get the mode calcul proposition cde. |
||
3204 | * |
||
3205 | * @return string|null Returns the mode calcul proposition cde. |
||
3206 | */ |
||
3207 | public function getModeCalculPropositionCde(): ?string{ |
||
3210 | |||
3211 | /** |
||
3212 | * Get the modele devis. |
||
3213 | * |
||
3214 | * @return string|null Returns the modele devis. |
||
3215 | */ |
||
3216 | public function getModeleDevis(): ?string{ |
||
3219 | |||
3220 | /** |
||
3221 | * Get the modele devis tech. |
||
3222 | * |
||
3223 | * @return string|null Returns the modele devis tech. |
||
3224 | */ |
||
3225 | public function getModeleDevisTech(): ?string{ |
||
3228 | |||
3229 | /** |
||
3230 | * Get the modele facture. |
||
3231 | * |
||
3232 | * @return string|null Returns the modele facture. |
||
3233 | */ |
||
3234 | public function getModeleFacture(): ?string{ |
||
3237 | |||
3238 | /** |
||
3239 | * Get the mt cpta negatif. |
||
3240 | * |
||
3241 | * @return bool|null Returns the mt cpta negatif. |
||
3242 | */ |
||
3243 | public function getMtCptaNegatif(): ?bool{ |
||
3246 | |||
3247 | /** |
||
3248 | * Get the n der document. |
||
3249 | * |
||
3250 | * @return int|null Returns the n der document. |
||
3251 | */ |
||
3252 | public function getNDerDocument(): ?int{ |
||
3255 | |||
3256 | /** |
||
3257 | * Get the nb caracteres ligne fact. |
||
3258 | * |
||
3259 | * @return string|null Returns the nb caracteres ligne fact. |
||
3260 | */ |
||
3261 | public function getNbCaracteresLigneFact(): ?string{ |
||
3264 | |||
3265 | /** |
||
3266 | * Get the nb decimales prix unitaire. |
||
3267 | * |
||
3268 | * @return string|null Returns the nb decimales prix unitaire. |
||
3269 | */ |
||
3270 | public function getNbDecimalesPrixUnitaire(): ?string{ |
||
3273 | |||
3274 | /** |
||
3275 | * Get the nb decimales quantite. |
||
3276 | * |
||
3277 | * @return string|null Returns the nb decimales quantite. |
||
3278 | */ |
||
3279 | public function getNbDecimalesQuantite(): ?string{ |
||
3282 | |||
3283 | /** |
||
3284 | * Get the nb entiers prix unitaire. |
||
3285 | * |
||
3286 | * @return string|null Returns the nb entiers prix unitaire. |
||
3287 | */ |
||
3288 | public function getNbEntiersPrixUnitaire(): ?string{ |
||
3291 | |||
3292 | /** |
||
3293 | * Get the nb entiers quantite. |
||
3294 | * |
||
3295 | * @return string|null Returns the nb entiers quantite. |
||
3296 | */ |
||
3297 | public function getNbEntiersQuantite(): ?string{ |
||
3300 | |||
3301 | /** |
||
3302 | * Get the nb jour cp acquis. |
||
3303 | * |
||
3304 | * @return float|null Returns the nb jour cp acquis. |
||
3305 | */ |
||
3306 | public function getNbJourCpAcquis(): ?float{ |
||
3309 | |||
3310 | /** |
||
3311 | * Get the nb jours abs proratisation dcp. |
||
3312 | * |
||
3313 | * @return int|null Returns the nb jours abs proratisation dcp. |
||
3314 | */ |
||
3315 | public function getNbJoursAbsProratisationDcp(): ?int{ |
||
3318 | |||
3319 | /** |
||
3320 | * Get the nb mois consecutifs. |
||
3321 | * |
||
3322 | * @return int|null Returns the nb mois consecutifs. |
||
3323 | */ |
||
3324 | public function getNbMoisConsecutifs(): ?int{ |
||
3327 | |||
3328 | /** |
||
3329 | * Get the nom fact nb lignes. |
||
3330 | * |
||
3331 | * @return string|null Returns the nom fact nb lignes. |
||
3332 | */ |
||
3333 | public function getNomFactNbLignes(): ?string{ |
||
3336 | |||
3337 | /** |
||
3338 | * Get the nom fichier ascii achat. |
||
3339 | * |
||
3340 | * @return string|null Returns the nom fichier ascii achat. |
||
3341 | */ |
||
3342 | public function getNomFichierAsciiAchat(): ?string{ |
||
3345 | |||
3346 | /** |
||
3347 | * Get the nom fichier ascii vente. |
||
3348 | * |
||
3349 | * @return string|null Returns the nom fichier ascii vente. |
||
3350 | */ |
||
3351 | public function getNomFichierAsciiVente(): ?string{ |
||
3354 | |||
3355 | /** |
||
3356 | * Get the note0 non conforme. |
||
3357 | * |
||
3358 | * @return bool|null Returns the note0 non conforme. |
||
3359 | */ |
||
3360 | public function getNote0NonConforme(): ?bool{ |
||
3363 | |||
3364 | /** |
||
3365 | * Get the num bt. |
||
3366 | * |
||
3367 | * @return int|null Returns the num bt. |
||
3368 | */ |
||
3369 | public function getNumBt(): ?int{ |
||
3372 | |||
3373 | /** |
||
3374 | * Get the num critere bt num1. |
||
3375 | * |
||
3376 | * @return string|null Returns the num critere bt num1. |
||
3377 | */ |
||
3378 | public function getNumCritereBtNum1(): ?string{ |
||
3381 | |||
3382 | /** |
||
3383 | * Get the num critere bt num2. |
||
3384 | * |
||
3385 | * @return string|null Returns the num critere bt num2. |
||
3386 | */ |
||
3387 | public function getNumCritereBtNum2(): ?string{ |
||
3390 | |||
3391 | /** |
||
3392 | * Get the num critere chantier filtre1. |
||
3393 | * |
||
3394 | * @return string|null Returns the num critere chantier filtre1. |
||
3395 | */ |
||
3396 | public function getNumCritereChantierFiltre1(): ?string{ |
||
3399 | |||
3400 | /** |
||
3401 | * Get the num devis. |
||
3402 | * |
||
3403 | * @return int|null Returns the num devis. |
||
3404 | */ |
||
3405 | public function getNumDevis(): ?int{ |
||
3408 | |||
3409 | /** |
||
3410 | * Get the num fact. |
||
3411 | * |
||
3412 | * @return int|null Returns the num fact. |
||
3413 | */ |
||
3414 | public function getNumFact(): ?int{ |
||
3417 | |||
3418 | /** |
||
3419 | * Get the num fact vm. |
||
3420 | * |
||
3421 | * @return int|null Returns the num fact vm. |
||
3422 | */ |
||
3423 | public function getNumFactVm(): ?int{ |
||
3426 | |||
3427 | /** |
||
3428 | * Get the numero fiche controle. |
||
3429 | * |
||
3430 | * @return int|null Returns the numero fiche controle. |
||
3431 | */ |
||
3432 | public function getNumeroFicheControle(): ?int{ |
||
3435 | |||
3436 | /** |
||
3437 | * Get the pa par fournisseur. |
||
3438 | * |
||
3439 | * @return bool|null Returns the pa par fournisseur. |
||
3440 | */ |
||
3441 | public function getPaParFournisseur(): ?bool{ |
||
3444 | |||
3445 | /** |
||
3446 | * Get the pj envoi mail. |
||
3447 | * |
||
3448 | * @return string|null Returns the pj envoi mail. |
||
3449 | */ |
||
3450 | public function getPjEnvoiMail(): ?string{ |
||
3453 | |||
3454 | /** |
||
3455 | * Get the pj envoi mail attestation. |
||
3456 | * |
||
3457 | * @return string|null Returns the pj envoi mail attestation. |
||
3458 | */ |
||
3459 | public function getPjEnvoiMailAttestation(): ?string{ |
||
3462 | |||
3463 | /** |
||
3464 | * Get the pas num cpt par dossier. |
||
3465 | * |
||
3466 | * @return bool|null Returns the pas num cpt par dossier. |
||
3467 | */ |
||
3468 | public function getPasNumCptParDossier(): ?bool{ |
||
3471 | |||
3472 | /** |
||
3473 | * Get the pdf bt coefficient. |
||
3474 | * |
||
3475 | * @return float|null Returns the pdf bt coefficient. |
||
3476 | */ |
||
3477 | public function getPdfBtCoefficient(): ?float{ |
||
3480 | |||
3481 | /** |
||
3482 | * Get the pdf bt date passage. |
||
3483 | * |
||
3484 | * @return bool|null Returns the pdf bt date passage. |
||
3485 | */ |
||
3486 | public function getPdfBtDatePassage(): ?bool{ |
||
3489 | |||
3490 | /** |
||
3491 | * Get the pdf bt descriptif. |
||
3492 | * |
||
3493 | * @return bool|null Returns the pdf bt descriptif. |
||
3494 | */ |
||
3495 | public function getPdfBtDescriptif(): ?bool{ |
||
3498 | |||
3499 | /** |
||
3500 | * Get the pdf bt employes corps. |
||
3501 | * |
||
3502 | * @return bool|null Returns the pdf bt employes corps. |
||
3503 | */ |
||
3504 | public function getPdfBtEmployesCorps(): ?bool{ |
||
3507 | |||
3508 | /** |
||
3509 | * Get the pdf bt employes ref. |
||
3510 | * |
||
3511 | * @return bool|null Returns the pdf bt employes ref. |
||
3512 | */ |
||
3513 | public function getPdfBtEmployesRef(): ?bool{ |
||
3516 | |||
3517 | /** |
||
3518 | * Get the pdf bt facturer ala validation. |
||
3519 | * |
||
3520 | * @return bool|null Returns the pdf bt facturer ala validation. |
||
3521 | */ |
||
3522 | public function getPdfBtFacturerAlaValidation(): ?bool{ |
||
3525 | |||
3526 | /** |
||
3527 | * Get the pdf bt format saisie qte pu. |
||
3528 | * |
||
3529 | * @return bool|null Returns the pdf bt format saisie qte pu. |
||
3530 | */ |
||
3531 | public function getPdfBtFormatSaisieQtePu(): ?bool{ |
||
3534 | |||
3535 | /** |
||
3536 | * Get the pdf bt libelle date. |
||
3537 | * |
||
3538 | * @return string|null Returns the pdf bt libelle date. |
||
3539 | */ |
||
3540 | public function getPdfBtLibelleDate(): ?string{ |
||
3543 | |||
3544 | /** |
||
3545 | * Get the pdf bt nom chantier. |
||
3546 | * |
||
3547 | * @return bool|null Returns the pdf bt nom chantier. |
||
3548 | */ |
||
3549 | public function getPdfBtNomChantier(): ?bool{ |
||
3552 | |||
3553 | /** |
||
3554 | * Get the pdf bt periode validite. |
||
3555 | * |
||
3556 | * @return bool|null Returns the pdf bt periode validite. |
||
3557 | */ |
||
3558 | public function getPdfBtPeriodeValidite(): ?bool{ |
||
3561 | |||
3562 | /** |
||
3563 | * Get the pdf bt prix achat. |
||
3564 | * |
||
3565 | * @return float|null Returns the pdf bt prix achat. |
||
3566 | */ |
||
3567 | public function getPdfBtPrixAchat(): ?float{ |
||
3570 | |||
3571 | /** |
||
3572 | * Get the pdf bt reprendre libelle date. |
||
3573 | * |
||
3574 | * @return bool|null Returns the pdf bt reprendre libelle date. |
||
3575 | */ |
||
3576 | public function getPdfBtReprendreLibelleDate(): ?bool{ |
||
3579 | |||
3580 | /** |
||
3581 | * Get the pdf bt taux horaire. |
||
3582 | * |
||
3583 | * @return float|null Returns the pdf bt taux horaire. |
||
3584 | */ |
||
3585 | public function getPdfBtTauxHoraire(): ?float{ |
||
3588 | |||
3589 | /** |
||
3590 | * Get the point bt employes sortis. |
||
3591 | * |
||
3592 | * @return bool|null Returns the point bt employes sortis. |
||
3593 | */ |
||
3594 | public function getPointBtEmployesSortis(): ?bool{ |
||
3597 | |||
3598 | /** |
||
3599 | * Get the poste1. |
||
3600 | * |
||
3601 | * @return string|null Returns the poste1. |
||
3602 | */ |
||
3603 | public function getPoste1(): ?string{ |
||
3606 | |||
3607 | /** |
||
3608 | * Get the poste2. |
||
3609 | * |
||
3610 | * @return string|null Returns the poste2. |
||
3611 | */ |
||
3612 | public function getPoste2(): ?string{ |
||
3615 | |||
3616 | /** |
||
3617 | * Get the poste3. |
||
3618 | * |
||
3619 | * @return string|null Returns the poste3. |
||
3620 | */ |
||
3621 | public function getPoste3(): ?string{ |
||
3624 | |||
3625 | /** |
||
3626 | * Get the poste4. |
||
3627 | * |
||
3628 | * @return string|null Returns the poste4. |
||
3629 | */ |
||
3630 | public function getPoste4(): ?string{ |
||
3633 | |||
3634 | /** |
||
3635 | * Get the poste5. |
||
3636 | * |
||
3637 | * @return string|null Returns the poste5. |
||
3638 | */ |
||
3639 | public function getPoste5(): ?string{ |
||
3642 | |||
3643 | /** |
||
3644 | * Get the pourc maj h compl. |
||
3645 | * |
||
3646 | * @return float|null Returns the pourc maj h compl. |
||
3647 | */ |
||
3648 | public function getPourcMajHCompl(): ?float{ |
||
3651 | |||
3652 | /** |
||
3653 | * Get the pourc maj h compl2. |
||
3654 | * |
||
3655 | * @return float|null Returns the pourc maj h compl2. |
||
3656 | */ |
||
3657 | public function getPourcMajHCompl2(): ?float{ |
||
3660 | |||
3661 | /** |
||
3662 | * Get the pourcent dep hc max. |
||
3663 | * |
||
3664 | * @return float|null Returns the pourcent dep hc max. |
||
3665 | */ |
||
3666 | public function getPourcentDepHcMax(): ?float{ |
||
3669 | |||
3670 | /** |
||
3671 | * Get the pourcent dep hc plus mois. |
||
3672 | * |
||
3673 | * @return float|null Returns the pourcent dep hc plus mois. |
||
3674 | */ |
||
3675 | public function getPourcentDepHcPlusMois(): ?float{ |
||
3678 | |||
3679 | /** |
||
3680 | * Get the pourcentage repos remplacement. |
||
3681 | * |
||
3682 | * @return float|null Returns the pourcentage repos remplacement. |
||
3683 | */ |
||
3684 | public function getPourcentageReposRemplacement(): ?float{ |
||
3687 | |||
3688 | /** |
||
3689 | * Get the prefixe. |
||
3690 | * |
||
3691 | * @return string|null Returns the prefixe. |
||
3692 | */ |
||
3693 | public function getPrefixe(): ?string{ |
||
3696 | |||
3697 | /** |
||
3698 | * Get the prefixe devis. |
||
3699 | * |
||
3700 | * @return string|null Returns the prefixe devis. |
||
3701 | */ |
||
3702 | public function getPrefixeDevis(): ?string{ |
||
3705 | |||
3706 | /** |
||
3707 | * Get the preparer chantier pret only. |
||
3708 | * |
||
3709 | * @return bool|null Returns the preparer chantier pret only. |
||
3710 | */ |
||
3711 | public function getPreparerChantierPretOnly(): ?bool{ |
||
3714 | |||
3715 | /** |
||
3716 | * Get the prix defaut achat. |
||
3717 | * |
||
3718 | * @return int|null Returns the prix defaut achat. |
||
3719 | */ |
||
3720 | public function getPrixDefautAchat(): ?int{ |
||
3723 | |||
3724 | /** |
||
3725 | * Get the prix defaut entree directe. |
||
3726 | * |
||
3727 | * @return int|null Returns the prix defaut entree directe. |
||
3728 | */ |
||
3729 | public function getPrixDefautEntreeDirecte(): ?int{ |
||
3732 | |||
3733 | /** |
||
3734 | * Get the prix defaut inventaire. |
||
3735 | * |
||
3736 | * @return int|null Returns the prix defaut inventaire. |
||
3737 | */ |
||
3738 | public function getPrixDefautInventaire(): ?int{ |
||
3741 | |||
3742 | /** |
||
3743 | * Get the prix defaut sortie directe. |
||
3744 | * |
||
3745 | * @return int|null Returns the prix defaut sortie directe. |
||
3746 | */ |
||
3747 | public function getPrixDefautSortieDirecte(): ?int{ |
||
3750 | |||
3751 | /** |
||
3752 | * Get the prix defaut vente. |
||
3753 | * |
||
3754 | * @return int|null Returns the prix defaut vente. |
||
3755 | */ |
||
3756 | public function getPrixDefautVente(): ?int{ |
||
3759 | |||
3760 | /** |
||
3761 | * Get the prochain numero pj. |
||
3762 | * |
||
3763 | * @return int|null Returns the prochain numero pj. |
||
3764 | */ |
||
3765 | public function getProchainNumeroPj(): ?int{ |
||
3768 | |||
3769 | /** |
||
3770 | * Get the prorata heures creer ligne. |
||
3771 | * |
||
3772 | * @return bool|null Returns the prorata heures creer ligne. |
||
3773 | */ |
||
3774 | public function getProrataHeuresCreerLigne(): ?bool{ |
||
3777 | |||
3778 | /** |
||
3779 | * Get the prorata heures designation moins. |
||
3780 | * |
||
3781 | * @return string|null Returns the prorata heures designation moins. |
||
3782 | */ |
||
3783 | public function getProrataHeuresDesignationMoins(): ?string{ |
||
3786 | |||
3787 | /** |
||
3788 | * Get the prorata heures designation plus. |
||
3789 | * |
||
3790 | * @return string|null Returns the prorata heures designation plus. |
||
3791 | */ |
||
3792 | public function getProrataHeuresDesignationPlus(): ?string{ |
||
3795 | |||
3796 | /** |
||
3797 | * Get the prorata heures option. |
||
3798 | * |
||
3799 | * @return string|null Returns the prorata heures option. |
||
3800 | */ |
||
3801 | public function getProrataHeuresOption(): ?string{ |
||
3804 | |||
3805 | /** |
||
3806 | * Get the prov cp infos emp. |
||
3807 | * |
||
3808 | * @return bool|null Returns the prov cp infos emp. |
||
3809 | */ |
||
3810 | public function getProvCpInfosEmp(): ?bool{ |
||
3813 | |||
3814 | /** |
||
3815 | * Get the provisions cp. |
||
3816 | * |
||
3817 | * @return bool|null Returns the provisions cp. |
||
3818 | */ |
||
3819 | public function getProvisionsCp(): ?bool{ |
||
3822 | |||
3823 | /** |
||
3824 | * Get the qualite nb criteres. |
||
3825 | * |
||
3826 | * @return string|null Returns the qualite nb criteres. |
||
3827 | */ |
||
3828 | public function getQualiteNbCriteres(): ?string{ |
||
3831 | |||
3832 | /** |
||
3833 | * Get the qualite nb notes. |
||
3834 | * |
||
3835 | * @return string|null Returns the qualite nb notes. |
||
3836 | */ |
||
3837 | public function getQualiteNbNotes(): ?string{ |
||
3840 | |||
3841 | /** |
||
3842 | * Get the qualite satisfaction generale. |
||
3843 | * |
||
3844 | * @return bool|null Returns the qualite satisfaction generale. |
||
3845 | */ |
||
3846 | public function getQualiteSatisfactionGenerale(): ?bool{ |
||
3849 | |||
3850 | /** |
||
3851 | * Get the rt fdans fact dev. |
||
3852 | * |
||
3853 | * @return bool|null Returns the rt fdans fact dev. |
||
3854 | */ |
||
3855 | public function getRtFdansFactDev(): ?bool{ |
||
3858 | |||
3859 | /** |
||
3860 | * Get the reference mensu contrat proprete. |
||
3861 | * |
||
3862 | * @return bool|null Returns the reference mensu contrat proprete. |
||
3863 | */ |
||
3864 | public function getReferenceMensuContratProprete(): ?bool{ |
||
3867 | |||
3868 | /** |
||
3869 | * Get the remplacant abs jf pas auto. |
||
3870 | * |
||
3871 | * @return bool|null Returns the remplacant abs jf pas auto. |
||
3872 | */ |
||
3873 | public function getRemplacantAbsJfPasAuto(): ?bool{ |
||
3876 | |||
3877 | /** |
||
3878 | * Get the remplacant travaille pas jf. |
||
3879 | * |
||
3880 | * @return bool|null Returns the remplacant travaille pas jf. |
||
3881 | */ |
||
3882 | public function getRemplacantTravaillePasJf(): ?bool{ |
||
3885 | |||
3886 | /** |
||
3887 | * Get the remplacement hcjf. |
||
3888 | * |
||
3889 | * @return bool|null Returns the remplacement hcjf. |
||
3890 | */ |
||
3891 | public function getRemplacementHcjf(): ?bool{ |
||
3894 | |||
3895 | /** |
||
3896 | * Get the repos compensateur pour travailleur nuit. |
||
3897 | * |
||
3898 | * @return bool|null Returns the repos compensateur pour travailleur nuit. |
||
3899 | */ |
||
3900 | public function getReposCompensateurPourTravailleurNuit(): ?bool{ |
||
3903 | |||
3904 | /** |
||
3905 | * Get the saisir absences sur hc. |
||
3906 | * |
||
3907 | * @return bool|null Returns the saisir absences sur hc. |
||
3908 | */ |
||
3909 | public function getSaisirAbsencesSurHc(): ?bool{ |
||
3912 | |||
3913 | /** |
||
3914 | * Get the saisir code chantier achat. |
||
3915 | * |
||
3916 | * @return bool|null Returns the saisir code chantier achat. |
||
3917 | */ |
||
3918 | public function getSaisirCodeChantierAchat(): ?bool{ |
||
3921 | |||
3922 | /** |
||
3923 | * Get the saisir num bt. |
||
3924 | * |
||
3925 | * @return bool|null Returns the saisir num bt. |
||
3926 | */ |
||
3927 | public function getSaisirNumBt(): ?bool{ |
||
3930 | |||
3931 | /** |
||
3932 | * Get the services paie. |
||
3933 | * |
||
3934 | * @return string|null Returns the services paie. |
||
3935 | */ |
||
3936 | public function getServicesPaie(): ?string{ |
||
3939 | |||
3940 | /** |
||
3941 | * Get the seuil majo h compl. |
||
3942 | * |
||
3943 | * @return float|null Returns the seuil majo h compl. |
||
3944 | */ |
||
3945 | public function getSeuilMajoHCompl(): ?float{ |
||
3948 | |||
3949 | /** |
||
3950 | * Get the taux escompte. |
||
3951 | * |
||
3952 | * @return float|null Returns the taux escompte. |
||
3953 | */ |
||
3954 | public function getTauxEscompte(): ?float{ |
||
3957 | |||
3958 | /** |
||
3959 | * Get the taux majo hc33. |
||
3960 | * |
||
3961 | * @return float|null Returns the taux majo hc33. |
||
3962 | */ |
||
3963 | public function getTauxMajoHc33(): ?float{ |
||
3966 | |||
3967 | /** |
||
3968 | * Get the taux majoration h compl. |
||
3969 | * |
||
3970 | * @return float|null Returns the taux majoration h compl. |
||
3971 | */ |
||
3972 | public function getTauxMajorationHCompl(): ?float{ |
||
3975 | |||
3976 | /** |
||
3977 | * Get the taux tva achat. |
||
3978 | * |
||
3979 | * @return float|null Returns the taux tva achat. |
||
3980 | */ |
||
3981 | public function getTauxTvaAchat(): ?float{ |
||
3984 | |||
3985 | /** |
||
3986 | * Get the taux tva taxe deee. |
||
3987 | * |
||
3988 | * @return float|null Returns the taux tva taxe deee. |
||
3989 | */ |
||
3990 | public function getTauxTvaTaxeDeee(): ?float{ |
||
3993 | |||
3994 | /** |
||
3995 | * Get the taux tva vente. |
||
3996 | * |
||
3997 | * @return float|null Returns the taux tva vente. |
||
3998 | */ |
||
3999 | public function getTauxTvaVente(): ?float{ |
||
4002 | |||
4003 | /** |
||
4004 | * Get the type rempl defaut. |
||
4005 | * |
||
4006 | * @return string|null Returns the type rempl defaut. |
||
4007 | */ |
||
4008 | public function getTypeRemplDefaut(): ?string{ |
||
4011 | |||
4012 | /** |
||
4013 | * Get the type transfert vente. |
||
4014 | * |
||
4015 | * @return string|null Returns the type transfert vente. |
||
4016 | */ |
||
4017 | public function getTypeTransfertVente(): ?string{ |
||
4020 | |||
4021 | /** |
||
4022 | * Get the uniq id synchro. |
||
4023 | * |
||
4024 | * @return string|null Returns the uniq id synchro. |
||
4025 | */ |
||
4026 | public function getUniqIdSynchro(): ?string{ |
||
4029 | |||
4030 | /** |
||
4031 | * Get the utiliser stock mini. |
||
4032 | * |
||
4033 | * @return bool|null Returns the utiliser stock mini. |
||
4034 | */ |
||
4035 | public function getUtiliserStockMini(): ?bool{ |
||
4038 | |||
4039 | /** |
||
4040 | * Get the visualiser pointage bt valides. |
||
4041 | * |
||
4042 | * @return bool|null Returns the visualiser pointage bt valides. |
||
4043 | */ |
||
4044 | public function getVisualiserPointageBtValides(): ?bool{ |
||
4047 | |||
4048 | /** |
||
4049 | * Set the 35 heures. |
||
4050 | * |
||
4051 | * @param DateTime|null $_35Heures The 35 heures. |
||
4052 | * @return Constantes Returns this Constantes. |
||
4053 | */ |
||
4054 | public function set35Heures(?DateTime $_35Heures): Constantes { |
||
4058 | |||
4059 | /** |
||
4060 | * Set the alertes paie dans pointage. |
||
4061 | * |
||
4062 | * @param bool|null $alertesPaieDansPointage The alertes paie dans pointage. |
||
4063 | * @return Constantes Returns this Constantes. |
||
4064 | */ |
||
4065 | public function setAlertesPaieDansPointage(?bool $alertesPaieDansPointage): Constantes { |
||
4069 | |||
4070 | /** |
||
4071 | * Set the alertes paie dans reclam. |
||
4072 | * |
||
4073 | * @param bool|null $alertesPaieDansReclam The alertes paie dans reclam. |
||
4074 | * @return Constantes Returns this Constantes. |
||
4075 | */ |
||
4076 | public function setAlertesPaieDansReclam(?bool $alertesPaieDansReclam): Constantes { |
||
4080 | |||
4081 | /** |
||
4082 | * Set the analytique nature agence. |
||
4083 | * |
||
4084 | * @param bool|null $analytiqueNatureAgence The analytique nature agence. |
||
4085 | * @return Constantes Returns this Constantes. |
||
4086 | */ |
||
4087 | public function setAnalytiqueNatureAgence(?bool $analytiqueNatureAgence): Constantes { |
||
4091 | |||
4092 | /** |
||
4093 | * Set the analytique par chantier. |
||
4094 | * |
||
4095 | * @param bool|null $analytiqueParChantier The analytique par chantier. |
||
4096 | * @return Constantes Returns this Constantes. |
||
4097 | */ |
||
4098 | public function setAnalytiqueParChantier(?bool $analytiqueParChantier): Constantes { |
||
4102 | |||
4103 | /** |
||
4104 | * Set the archiver devis. |
||
4105 | * |
||
4106 | * @param bool|null $archiverDevis The archiver devis. |
||
4107 | * @return Constantes Returns this Constantes. |
||
4108 | */ |
||
4109 | public function setArchiverDevis(?bool $archiverDevis): Constantes { |
||
4113 | |||
4114 | /** |
||
4115 | * Set the archiver facture. |
||
4116 | * |
||
4117 | * @param bool|null $archiverFacture The archiver facture. |
||
4118 | * @return Constantes Returns this Constantes. |
||
4119 | */ |
||
4120 | public function setArchiverFacture(?bool $archiverFacture): Constantes { |
||
4124 | |||
4125 | /** |
||
4126 | * Set the arrondi sur pu. |
||
4127 | * |
||
4128 | * @param bool|null $arrondiSurPu The arrondi sur pu. |
||
4129 | * @return Constantes Returns this Constantes. |
||
4130 | */ |
||
4131 | public function setArrondiSurPu(?bool $arrondiSurPu): Constantes { |
||
4135 | |||
4136 | /** |
||
4137 | * Set the autoriser da sans maj stock. |
||
4138 | * |
||
4139 | * @param bool|null $autoriserDaSansMajStock The autoriser da sans maj stock. |
||
4140 | * @return Constantes Returns this Constantes. |
||
4141 | */ |
||
4142 | public function setAutoriserDaSansMajStock(?bool $autoriserDaSansMajStock): Constantes { |
||
4146 | |||
4147 | /** |
||
4148 | * Set the autoriser dep bud cha cde type. |
||
4149 | * |
||
4150 | * @param bool|null $autoriserDepBudChaCdeType The autoriser dep bud cha cde type. |
||
4151 | * @return Constantes Returns this Constantes. |
||
4152 | */ |
||
4153 | public function setAutoriserDepBudChaCdeType(?bool $autoriserDepBudChaCdeType): Constantes { |
||
4157 | |||
4158 | /** |
||
4159 | * Set the autoriser mensu tache vide. |
||
4160 | * |
||
4161 | * @param bool|null $autoriserMensuTacheVide The autoriser mensu tache vide. |
||
4162 | * @return Constantes Returns this Constantes. |
||
4163 | */ |
||
4164 | public function setAutoriserMensuTacheVide(?bool $autoriserMensuTacheVide): Constantes { |
||
4168 | |||
4169 | /** |
||
4170 | * Set the bl num fact. |
||
4171 | * |
||
4172 | * @param int|null $blNumFact The bl num fact. |
||
4173 | * @return Constantes Returns this Constantes. |
||
4174 | */ |
||
4175 | public function setBlNumFact(?int $blNumFact): Constantes { |
||
4179 | |||
4180 | /** |
||
4181 | * Set the bl prefixe. |
||
4182 | * |
||
4183 | * @param string|null $blPrefixe The bl prefixe. |
||
4184 | * @return Constantes Returns this Constantes. |
||
4185 | */ |
||
4186 | public function setBlPrefixe(?string $blPrefixe): Constantes { |
||
4190 | |||
4191 | /** |
||
4192 | * Set the br num fact. |
||
4193 | * |
||
4194 | * @param int|null $brNumFact The br num fact. |
||
4195 | * @return Constantes Returns this Constantes. |
||
4196 | */ |
||
4197 | public function setBrNumFact(?int $brNumFact): Constantes { |
||
4201 | |||
4202 | /** |
||
4203 | * Set the br prefixe. |
||
4204 | * |
||
4205 | * @param string|null $brPrefixe The br prefixe. |
||
4206 | * @return Constantes Returns this Constantes. |
||
4207 | */ |
||
4208 | public function setBrPrefixe(?string $brPrefixe): Constantes { |
||
4212 | |||
4213 | /** |
||
4214 | * Set the bs num fact. |
||
4215 | * |
||
4216 | * @param int|null $bsNumFact The bs num fact. |
||
4217 | * @return Constantes Returns this Constantes. |
||
4218 | */ |
||
4219 | public function setBsNumFact(?int $bsNumFact): Constantes { |
||
4223 | |||
4224 | /** |
||
4225 | * Set the bs prefixe. |
||
4226 | * |
||
4227 | * @param string|null $bsPrefixe The bs prefixe. |
||
4228 | * @return Constantes Returns this Constantes. |
||
4229 | */ |
||
4230 | public function setBsPrefixe(?string $bsPrefixe): Constantes { |
||
4234 | |||
4235 | /** |
||
4236 | * Set the cdd mensu total heures. |
||
4237 | * |
||
4238 | * @param bool|null $cddMensuTotalHeures The cdd mensu total heures. |
||
4239 | * @return Constantes Returns this Constantes. |
||
4240 | */ |
||
4241 | public function setCddMensuTotalHeures(?bool $cddMensuTotalHeures): Constantes { |
||
4245 | |||
4246 | /** |
||
4247 | * Set the cp sans provisions. |
||
4248 | * |
||
4249 | * @param bool|null $cpSansProvisions The cp sans provisions. |
||
4250 | * @return Constantes Returns this Constantes. |
||
4251 | */ |
||
4252 | public function setCpSansProvisions(?bool $cpSansProvisions): Constantes { |
||
4256 | |||
4257 | /** |
||
4258 | * Set the cde client num fact. |
||
4259 | * |
||
4260 | * @param int|null $cdeClientNumFact The cde client num fact. |
||
4261 | * @return Constantes Returns this Constantes. |
||
4262 | */ |
||
4263 | public function setCdeClientNumFact(?int $cdeClientNumFact): Constantes { |
||
4267 | |||
4268 | /** |
||
4269 | * Set the cde client prefixe. |
||
4270 | * |
||
4271 | * @param string|null $cdeClientPrefixe The cde client prefixe. |
||
4272 | * @return Constantes Returns this Constantes. |
||
4273 | */ |
||
4274 | public function setCdeClientPrefixe(?string $cdeClientPrefixe): Constantes { |
||
4278 | |||
4279 | /** |
||
4280 | * Set the cde frn num fact. |
||
4281 | * |
||
4282 | * @param int|null $cdeFrnNumFact The cde frn num fact. |
||
4283 | * @return Constantes Returns this Constantes. |
||
4284 | */ |
||
4285 | public function setCdeFrnNumFact(?int $cdeFrnNumFact): Constantes { |
||
4289 | |||
4290 | /** |
||
4291 | * Set the cde frn prefixe. |
||
4292 | * |
||
4293 | * @param string|null $cdeFrnPrefixe The cde frn prefixe. |
||
4294 | * @return Constantes Returns this Constantes. |
||
4295 | */ |
||
4296 | public function setCdeFrnPrefixe(?string $cdeFrnPrefixe): Constantes { |
||
4300 | |||
4301 | /** |
||
4302 | * Set the centralisation vente. |
||
4303 | * |
||
4304 | * @param bool|null $centralisationVente The centralisation vente. |
||
4305 | * @return Constantes Returns this Constantes. |
||
4306 | */ |
||
4307 | public function setCentralisationVente(?bool $centralisationVente): Constantes { |
||
4311 | |||
4312 | /** |
||
4313 | * Set the charge mensuelle sans tache. |
||
4314 | * |
||
4315 | * @param bool|null $chargeMensuelleSansTache The charge mensuelle sans tache. |
||
4316 | * @return Constantes Returns this Constantes. |
||
4317 | */ |
||
4318 | public function setChargeMensuelleSansTache(?bool $chargeMensuelleSansTache): Constantes { |
||
4322 | |||
4323 | /** |
||
4324 | * Set the chemin doss compta. |
||
4325 | * |
||
4326 | * @param string|null $cheminDossCompta The chemin doss compta. |
||
4327 | * @return Constantes Returns this Constantes. |
||
4328 | */ |
||
4329 | public function setCheminDossCompta(?string $cheminDossCompta): Constantes { |
||
4333 | |||
4334 | /** |
||
4335 | * Set the cle debloquer periode cloturee. |
||
4336 | * |
||
4337 | * @param string|null $cleDebloquerPeriodeCloturee The cle debloquer periode cloturee. |
||
4338 | * @return Constantes Returns this Constantes. |
||
4339 | */ |
||
4340 | public function setCleDebloquerPeriodeCloturee(?string $cleDebloquerPeriodeCloturee): Constantes { |
||
4344 | |||
4345 | /** |
||
4346 | * Set the code abs cp sans solde. |
||
4347 | * |
||
4348 | * @param string|null $codeAbsCpSansSolde The code abs cp sans solde. |
||
4349 | * @return Constantes Returns this Constantes. |
||
4350 | */ |
||
4351 | public function setCodeAbsCpSansSolde(?string $codeAbsCpSansSolde): Constantes { |
||
4355 | |||
4356 | /** |
||
4357 | * Set the code abs def jf. |
||
4358 | * |
||
4359 | * @param string|null $codeAbsDefJf The code abs def jf. |
||
4360 | * @return Constantes Returns this Constantes. |
||
4361 | */ |
||
4362 | public function setCodeAbsDefJf(?string $codeAbsDefJf): Constantes { |
||
4366 | |||
4367 | /** |
||
4368 | * Set the code abs def jf moins3. |
||
4369 | * |
||
4370 | * @param string|null $codeAbsDefJfMoins3 The code abs def jf moins3. |
||
4371 | * @return Constantes Returns this Constantes. |
||
4372 | */ |
||
4373 | public function setCodeAbsDefJfMoins3(?string $codeAbsDefJfMoins3): Constantes { |
||
4377 | |||
4378 | /** |
||
4379 | * Set the code abs fermeture chantier. |
||
4380 | * |
||
4381 | * @param string|null $codeAbsFermetureChantier The code abs fermeture chantier. |
||
4382 | * @return Constantes Returns this Constantes. |
||
4383 | */ |
||
4384 | public function setCodeAbsFermetureChantier(?string $codeAbsFermetureChantier): Constantes { |
||
4388 | |||
4389 | /** |
||
4390 | * Set the code abs pointage defaut. |
||
4391 | * |
||
4392 | * @param string|null $codeAbsPointageDefaut The code abs pointage defaut. |
||
4393 | * @return Constantes Returns this Constantes. |
||
4394 | */ |
||
4395 | public function setCodeAbsPointageDefaut(?string $codeAbsPointageDefaut): Constantes { |
||
4399 | |||
4400 | /** |
||
4401 | * Set the code collabo valid. |
||
4402 | * |
||
4403 | * @param string|null $codeCollaboValid The code collabo valid. |
||
4404 | * @return Constantes Returns this Constantes. |
||
4405 | */ |
||
4406 | public function setCodeCollaboValid(?string $codeCollaboValid): Constantes { |
||
4410 | |||
4411 | /** |
||
4412 | * Set the code collaborateur. |
||
4413 | * |
||
4414 | * @param string|null $codeCollaborateur The code collaborateur. |
||
4415 | * @return Constantes Returns this Constantes. |
||
4416 | */ |
||
4417 | public function setCodeCollaborateur(?string $codeCollaborateur): Constantes { |
||
4421 | |||
4422 | /** |
||
4423 | * Set the code depot par defaut. |
||
4424 | * |
||
4425 | * @param string|null $codeDepotParDefaut The code depot par defaut. |
||
4426 | * @return Constantes Returns this Constantes. |
||
4427 | */ |
||
4428 | public function setCodeDepotParDefaut(?string $codeDepotParDefaut): Constantes { |
||
4432 | |||
4433 | /** |
||
4434 | * Set the code ics. |
||
4435 | * |
||
4436 | * @param string|null $codeIcs The code ics. |
||
4437 | * @return Constantes Returns this Constantes. |
||
4438 | */ |
||
4439 | public function setCodeIcs(?string $codeIcs): Constantes { |
||
4443 | |||
4444 | /** |
||
4445 | * Set the code ja. |
||
4446 | * |
||
4447 | * @param string|null $codeJa The code ja. |
||
4448 | * @return Constantes Returns this Constantes. |
||
4449 | */ |
||
4450 | public function setCodeJa(?string $codeJa): Constantes { |
||
4454 | |||
4455 | /** |
||
4456 | * Set the code jv negoce. |
||
4457 | * |
||
4458 | * @param string|null $codeJvNegoce The code jv negoce. |
||
4459 | * @return Constantes Returns this Constantes. |
||
4460 | */ |
||
4461 | public function setCodeJvNegoce(?string $codeJvNegoce): Constantes { |
||
4465 | |||
4466 | /** |
||
4467 | * Set the code jv prestation. |
||
4468 | * |
||
4469 | * @param string|null $codeJvPrestation The code jv prestation. |
||
4470 | * @return Constantes Returns this Constantes. |
||
4471 | */ |
||
4472 | public function setCodeJvPrestation(?string $codeJvPrestation): Constantes { |
||
4476 | |||
4477 | /** |
||
4478 | * Set the code liv par defaut. |
||
4479 | * |
||
4480 | * @param string|null $codeLivParDefaut The code liv par defaut. |
||
4481 | * @return Constantes Returns this Constantes. |
||
4482 | */ |
||
4483 | public function setCodeLivParDefaut(?string $codeLivParDefaut): Constantes { |
||
4487 | |||
4488 | /** |
||
4489 | * Set the code prime chantier1. |
||
4490 | * |
||
4491 | * @param string|null $codePrimeChantier1 The code prime chantier1. |
||
4492 | * @return Constantes Returns this Constantes. |
||
4493 | */ |
||
4494 | public function setCodePrimeChantier1(?string $codePrimeChantier1): Constantes { |
||
4498 | |||
4499 | /** |
||
4500 | * Set the code prime chantier2. |
||
4501 | * |
||
4502 | * @param string|null $codePrimeChantier2 The code prime chantier2. |
||
4503 | * @return Constantes Returns this Constantes. |
||
4504 | */ |
||
4505 | public function setCodePrimeChantier2(?string $codePrimeChantier2): Constantes { |
||
4509 | |||
4510 | /** |
||
4511 | * Set the code prime chantier3. |
||
4512 | * |
||
4513 | * @param string|null $codePrimeChantier3 The code prime chantier3. |
||
4514 | * @return Constantes Returns this Constantes. |
||
4515 | */ |
||
4516 | public function setCodePrimeChantier3(?string $codePrimeChantier3): Constantes { |
||
4520 | |||
4521 | /** |
||
4522 | * Set the code prime dimanche1. |
||
4523 | * |
||
4524 | * @param string|null $codePrimeDimanche1 The code prime dimanche1. |
||
4525 | * @return Constantes Returns this Constantes. |
||
4526 | */ |
||
4527 | public function setCodePrimeDimanche1(?string $codePrimeDimanche1): Constantes { |
||
4531 | |||
4532 | /** |
||
4533 | * Set the code prime dimanche1 type2. |
||
4534 | * |
||
4535 | * @param string|null $codePrimeDimanche1Type2 The code prime dimanche1 type2. |
||
4536 | * @return Constantes Returns this Constantes. |
||
4537 | */ |
||
4538 | public function setCodePrimeDimanche1Type2(?string $codePrimeDimanche1Type2): Constantes { |
||
4542 | |||
4543 | /** |
||
4544 | * Set the code prime dimanche2. |
||
4545 | * |
||
4546 | * @param string|null $codePrimeDimanche2 The code prime dimanche2. |
||
4547 | * @return Constantes Returns this Constantes. |
||
4548 | */ |
||
4549 | public function setCodePrimeDimanche2(?string $codePrimeDimanche2): Constantes { |
||
4553 | |||
4554 | /** |
||
4555 | * Set the code prime forfait. |
||
4556 | * |
||
4557 | * @param string|null $codePrimeForfait The code prime forfait. |
||
4558 | * @return Constantes Returns this Constantes. |
||
4559 | */ |
||
4560 | public function setCodePrimeForfait(?string $codePrimeForfait): Constantes { |
||
4564 | |||
4565 | /** |
||
4566 | * Set the code prime h compl. |
||
4567 | * |
||
4568 | * @param string|null $codePrimeHCompl The code prime h compl. |
||
4569 | * @return Constantes Returns this Constantes. |
||
4570 | */ |
||
4571 | public function setCodePrimeHCompl(?string $codePrimeHCompl): Constantes { |
||
4575 | |||
4576 | /** |
||
4577 | * Set the code prime h compl2. |
||
4578 | * |
||
4579 | * @param string|null $codePrimeHCompl2 The code prime h compl2. |
||
4580 | * @return Constantes Returns this Constantes. |
||
4581 | */ |
||
4582 | public function setCodePrimeHCompl2(?string $codePrimeHCompl2): Constantes { |
||
4586 | |||
4587 | /** |
||
4588 | * Set the code prime jf1. |
||
4589 | * |
||
4590 | * @param string|null $codePrimeJf1 The code prime jf1. |
||
4591 | * @return Constantes Returns this Constantes. |
||
4592 | */ |
||
4593 | public function setCodePrimeJf1(?string $codePrimeJf1): Constantes { |
||
4597 | |||
4598 | /** |
||
4599 | * Set the code prime jf1 type2. |
||
4600 | * |
||
4601 | * @param string|null $codePrimeJf1Type2 The code prime jf1 type2. |
||
4602 | * @return Constantes Returns this Constantes. |
||
4603 | */ |
||
4604 | public function setCodePrimeJf1Type2(?string $codePrimeJf1Type2): Constantes { |
||
4608 | |||
4609 | /** |
||
4610 | * Set the code prime jf2. |
||
4611 | * |
||
4612 | * @param string|null $codePrimeJf2 The code prime jf2. |
||
4613 | * @return Constantes Returns this Constantes. |
||
4614 | */ |
||
4615 | public function setCodePrimeJf2(?string $codePrimeJf2): Constantes { |
||
4619 | |||
4620 | /** |
||
4621 | * Set the code prime jf mai. |
||
4622 | * |
||
4623 | * @param string|null $codePrimeJfMai The code prime jf mai. |
||
4624 | * @return Constantes Returns this Constantes. |
||
4625 | */ |
||
4626 | public function setCodePrimeJfMai(?string $codePrimeJfMai): Constantes { |
||
4630 | |||
4631 | /** |
||
4632 | * Set the code prime nuit1. |
||
4633 | * |
||
4634 | * @param string|null $codePrimeNuit1 The code prime nuit1. |
||
4635 | * @return Constantes Returns this Constantes. |
||
4636 | */ |
||
4637 | public function setCodePrimeNuit1(?string $codePrimeNuit1): Constantes { |
||
4641 | |||
4642 | /** |
||
4643 | * Set the code prime nuit1 type2. |
||
4644 | * |
||
4645 | * @param string|null $codePrimeNuit1Type2 The code prime nuit1 type2. |
||
4646 | * @return Constantes Returns this Constantes. |
||
4647 | */ |
||
4648 | public function setCodePrimeNuit1Type2(?string $codePrimeNuit1Type2): Constantes { |
||
4652 | |||
4653 | /** |
||
4654 | * Set the code prime nuit2. |
||
4655 | * |
||
4656 | * @param string|null $codePrimeNuit2 The code prime nuit2. |
||
4657 | * @return Constantes Returns this Constantes. |
||
4658 | */ |
||
4659 | public function setCodePrimeNuit2(?string $codePrimeNuit2): Constantes { |
||
4663 | |||
4664 | /** |
||
4665 | * Set the code prime paniers. |
||
4666 | * |
||
4667 | * @param string|null $codePrimePaniers The code prime paniers. |
||
4668 | * @return Constantes Returns this Constantes. |
||
4669 | */ |
||
4670 | public function setCodePrimePaniers(?string $codePrimePaniers): Constantes { |
||
4674 | |||
4675 | /** |
||
4676 | * Set the code prime rs. |
||
4677 | * |
||
4678 | * @param string|null $codePrimeRs The code prime rs. |
||
4679 | * @return Constantes Returns this Constantes. |
||
4680 | */ |
||
4681 | public function setCodePrimeRs(?string $codePrimeRs): Constantes { |
||
4685 | |||
4686 | /** |
||
4687 | * Set the code prime tp. |
||
4688 | * |
||
4689 | * @param string|null $codePrimeTp The code prime tp. |
||
4690 | * @return Constantes Returns this Constantes. |
||
4691 | */ |
||
4692 | public function setCodePrimeTp(?string $codePrimeTp): Constantes { |
||
4696 | |||
4697 | /** |
||
4698 | * Set the code reg jv neg debut. |
||
4699 | * |
||
4700 | * @param string|null $codeRegJvNegDebut The code reg jv neg debut. |
||
4701 | * @return Constantes Returns this Constantes. |
||
4702 | */ |
||
4703 | public function setCodeRegJvNegDebut(?string $codeRegJvNegDebut): Constantes { |
||
4707 | |||
4708 | /** |
||
4709 | * Set the code reg jv neg fin. |
||
4710 | * |
||
4711 | * @param string|null $codeRegJvNegFin The code reg jv neg fin. |
||
4712 | * @return Constantes Returns this Constantes. |
||
4713 | */ |
||
4714 | public function setCodeRegJvNegFin(?string $codeRegJvNegFin): Constantes { |
||
4718 | |||
4719 | /** |
||
4720 | * Set the code reg jv prest debut. |
||
4721 | * |
||
4722 | * @param string|null $codeRegJvPrestDebut The code reg jv prest debut. |
||
4723 | * @return Constantes Returns this Constantes. |
||
4724 | */ |
||
4725 | public function setCodeRegJvPrestDebut(?string $codeRegJvPrestDebut): Constantes { |
||
4729 | |||
4730 | /** |
||
4731 | * Set the code reg jv prest fin. |
||
4732 | * |
||
4733 | * @param string|null $codeRegJvPrestFin The code reg jv prest fin. |
||
4734 | * @return Constantes Returns this Constantes. |
||
4735 | */ |
||
4736 | public function setCodeRegJvPrestFin(?string $codeRegJvPrestFin): Constantes { |
||
4740 | |||
4741 | /** |
||
4742 | * Set the code tache defaut. |
||
4743 | * |
||
4744 | * @param string|null $codeTacheDefaut The code tache defaut. |
||
4745 | * @return Constantes Returns this Constantes. |
||
4746 | */ |
||
4747 | public function setCodeTacheDefaut(?string $codeTacheDefaut): Constantes { |
||
4751 | |||
4752 | /** |
||
4753 | * Set the collectif def. |
||
4754 | * |
||
4755 | * @param string|null $collectifDef The collectif def. |
||
4756 | * @return Constantes Returns this Constantes. |
||
4757 | */ |
||
4758 | public function setCollectifDef(?string $collectifDef): Constantes { |
||
4762 | |||
4763 | /** |
||
4764 | * Set the collectif def fournisseur. |
||
4765 | * |
||
4766 | * @param string|null $collectifDefFournisseur The collectif def fournisseur. |
||
4767 | * @return Constantes Returns this Constantes. |
||
4768 | */ |
||
4769 | public function setCollectifDefFournisseur(?string $collectifDefFournisseur): Constantes { |
||
4773 | |||
4774 | /** |
||
4775 | * Set the commentaire journee solidarite. |
||
4776 | * |
||
4777 | * @param string|null $commentaireJourneeSolidarite The commentaire journee solidarite. |
||
4778 | * @return Constantes Returns this Constantes. |
||
4779 | */ |
||
4780 | public function setCommentaireJourneeSolidarite(?string $commentaireJourneeSolidarite): Constantes { |
||
4784 | |||
4785 | /** |
||
4786 | * Set the compte collectif achat. |
||
4787 | * |
||
4788 | * @param string|null $compteCollectifAchat The compte collectif achat. |
||
4789 | * @return Constantes Returns this Constantes. |
||
4790 | */ |
||
4791 | public function setCompteCollectifAchat(?string $compteCollectifAchat): Constantes { |
||
4795 | |||
4796 | /** |
||
4797 | * Set the compte collectif vente. |
||
4798 | * |
||
4799 | * @param string|null $compteCollectifVente The compte collectif vente. |
||
4800 | * @return Constantes Returns this Constantes. |
||
4801 | */ |
||
4802 | public function setCompteCollectifVente(?string $compteCollectifVente): Constantes { |
||
4806 | |||
4807 | /** |
||
4808 | * Set the compte escompte ca exonere. |
||
4809 | * |
||
4810 | * @param string|null $compteEscompteCaExonere The compte escompte ca exonere. |
||
4811 | * @return Constantes Returns this Constantes. |
||
4812 | */ |
||
4813 | public function setCompteEscompteCaExonere(?string $compteEscompteCaExonere): Constantes { |
||
4817 | |||
4818 | /** |
||
4819 | * Set the compte escompte soumis tva. |
||
4820 | * |
||
4821 | * @param string|null $compteEscompteSoumisTva The compte escompte soumis tva. |
||
4822 | * @return Constantes Returns this Constantes. |
||
4823 | */ |
||
4824 | public function setCompteEscompteSoumisTva(?string $compteEscompteSoumisTva): Constantes { |
||
4828 | |||
4829 | /** |
||
4830 | * Set the compte tva achat. |
||
4831 | * |
||
4832 | * @param string|null $compteTvaAchat The compte tva achat. |
||
4833 | * @return Constantes Returns this Constantes. |
||
4834 | */ |
||
4835 | public function setCompteTvaAchat(?string $compteTvaAchat): Constantes { |
||
4839 | |||
4840 | /** |
||
4841 | * Set the compte tva taxe deee. |
||
4842 | * |
||
4843 | * @param string|null $compteTvaTaxeDeee The compte tva taxe deee. |
||
4844 | * @return Constantes Returns this Constantes. |
||
4845 | */ |
||
4846 | public function setCompteTvaTaxeDeee(?string $compteTvaTaxeDeee): Constantes { |
||
4850 | |||
4851 | /** |
||
4852 | * Set the compte tva vente. |
||
4853 | * |
||
4854 | * @param string|null $compteTvaVente The compte tva vente. |
||
4855 | * @return Constantes Returns this Constantes. |
||
4856 | */ |
||
4857 | public function setCompteTvaVente(?string $compteTvaVente): Constantes { |
||
4861 | |||
4862 | /** |
||
4863 | * Set the compte ventil taxe deee. |
||
4864 | * |
||
4865 | * @param string|null $compteVentilTaxeDeee The compte ventil taxe deee. |
||
4866 | * @return Constantes Returns this Constantes. |
||
4867 | */ |
||
4868 | public function setCompteVentilTaxeDeee(?string $compteVentilTaxeDeee): Constantes { |
||
4872 | |||
4873 | /** |
||
4874 | * Set the compter samedi tf cp paie. |
||
4875 | * |
||
4876 | * @param bool|null $compterSamediTfCpPaie The compter samedi tf cp paie. |
||
4877 | * @return Constantes Returns this Constantes. |
||
4878 | */ |
||
4879 | public function setCompterSamediTfCpPaie(?bool $compterSamediTfCpPaie): Constantes { |
||
4883 | |||
4884 | /** |
||
4885 | * Set the controler cde frn. |
||
4886 | * |
||
4887 | * @param bool|null $controlerCdeFrn The controler cde frn. |
||
4888 | * @return Constantes Returns this Constantes. |
||
4889 | */ |
||
4890 | public function setControlerCdeFrn(?bool $controlerCdeFrn): Constantes { |
||
4894 | |||
4895 | /** |
||
4896 | * Set the controler charges mensuelles. |
||
4897 | * |
||
4898 | * @param bool|null $controlerChargesMensuelles The controler charges mensuelles. |
||
4899 | * @return Constantes Returns this Constantes. |
||
4900 | */ |
||
4901 | public function setControlerChargesMensuelles(?bool $controlerChargesMensuelles): Constantes { |
||
4905 | |||
4906 | /** |
||
4907 | * Set the controler code reg. |
||
4908 | * |
||
4909 | * @param bool|null $controlerCodeReg The controler code reg. |
||
4910 | * @return Constantes Returns this Constantes. |
||
4911 | */ |
||
4912 | public function setControlerCodeReg(?bool $controlerCodeReg): Constantes { |
||
4916 | |||
4917 | /** |
||
4918 | * Set the controler dep hc max. |
||
4919 | * |
||
4920 | * @param bool|null $controlerDepHcMax The controler dep hc max. |
||
4921 | * @return Constantes Returns this Constantes. |
||
4922 | */ |
||
4923 | public function setControlerDepHcMax(?bool $controlerDepHcMax): Constantes { |
||
4927 | |||
4928 | /** |
||
4929 | * Set the controler dep hc plus mois. |
||
4930 | * |
||
4931 | * @param bool|null $controlerDepHcPlusMois The controler dep hc plus mois. |
||
4932 | * @return Constantes Returns this Constantes. |
||
4933 | */ |
||
4934 | public function setControlerDepHcPlusMois(?bool $controlerDepHcPlusMois): Constantes { |
||
4938 | |||
4939 | /** |
||
4940 | * Set the creer alerte paie def en paie. |
||
4941 | * |
||
4942 | * @param bool|null $creerAlertePaieDefEnPaie The creer alerte paie def en paie. |
||
4943 | * @return Constantes Returns this Constantes. |
||
4944 | */ |
||
4945 | public function setCreerAlertePaieDefEnPaie(?bool $creerAlertePaieDefEnPaie): Constantes { |
||
4949 | |||
4950 | /** |
||
4951 | * Set the ctrl auto cp. |
||
4952 | * |
||
4953 | * @param bool|null $ctrlAutoCp The ctrl auto cp. |
||
4954 | * @return Constantes Returns this Constantes. |
||
4955 | */ |
||
4956 | public function setCtrlAutoCp(?bool $ctrlAutoCp): Constantes { |
||
4960 | |||
4961 | /** |
||
4962 | * Set the ctrl auto cp avec anticipation. |
||
4963 | * |
||
4964 | * @param bool|null $ctrlAutoCpAvecAnticipation The ctrl auto cp avec anticipation. |
||
4965 | * @return Constantes Returns this Constantes. |
||
4966 | */ |
||
4967 | public function setCtrlAutoCpAvecAnticipation(?bool $ctrlAutoCpAvecAnticipation): Constantes { |
||
4971 | |||
4972 | /** |
||
4973 | * Set the date appli gestion heures en plus. |
||
4974 | * |
||
4975 | * @param DateTime|null $dateAppliGestionHeuresEnPlus The date appli gestion heures en plus. |
||
4976 | * @return Constantes Returns this Constantes. |
||
4977 | */ |
||
4978 | public function setDateAppliGestionHeuresEnPlus(?DateTime $dateAppliGestionHeuresEnPlus): Constantes { |
||
4982 | |||
4983 | /** |
||
4984 | * Set the date journee solidarite. |
||
4985 | * |
||
4986 | * @param DateTime|null $dateJourneeSolidarite The date journee solidarite. |
||
4987 | * @return Constantes Returns this Constantes. |
||
4988 | */ |
||
4989 | public function setDateJourneeSolidarite(?DateTime $dateJourneeSolidarite): Constantes { |
||
4993 | |||
4994 | /** |
||
4995 | * Set the date validation synchro. |
||
4996 | * |
||
4997 | * @param DateTime|null $dateValidationSynchro The date validation synchro. |
||
4998 | * @return Constantes Returns this Constantes. |
||
4999 | */ |
||
5000 | public function setDateValidationSynchro(?DateTime $dateValidationSynchro): Constantes { |
||
5004 | |||
5005 | /** |
||
5006 | * Set the dec mois prep fact. |
||
5007 | * |
||
5008 | * @param int|null $decMoisPrepFact The dec mois prep fact. |
||
5009 | * @return Constantes Returns this Constantes. |
||
5010 | */ |
||
5011 | public function setDecMoisPrepFact(?int $decMoisPrepFact): Constantes { |
||
5015 | |||
5016 | /** |
||
5017 | * Set the dernier compte client. |
||
5018 | * |
||
5019 | * @param string|null $dernierCompteClient The dernier compte client. |
||
5020 | * @return Constantes Returns this Constantes. |
||
5021 | */ |
||
5022 | public function setDernierCompteClient(?string $dernierCompteClient): Constantes { |
||
5026 | |||
5027 | /** |
||
5028 | * Set the dernier compte frn. |
||
5029 | * |
||
5030 | * @param string|null $dernierCompteFrn The dernier compte frn. |
||
5031 | * @return Constantes Returns this Constantes. |
||
5032 | */ |
||
5033 | public function setDernierCompteFrn(?string $dernierCompteFrn): Constantes { |
||
5037 | |||
5038 | /** |
||
5039 | * Set the discr. |
||
5040 | * |
||
5041 | * @param string|null $discr The discr. |
||
5042 | * @return Constantes Returns this Constantes. |
||
5043 | */ |
||
5044 | public function setDiscr(?string $discr): Constantes { |
||
5048 | |||
5049 | /** |
||
5050 | * Set the doss compta. |
||
5051 | * |
||
5052 | * @param string|null $dossCompta The doss compta. |
||
5053 | * @return Constantes Returns this Constantes. |
||
5054 | */ |
||
5055 | public function setDossCompta(?string $dossCompta): Constantes { |
||
5059 | |||
5060 | /** |
||
5061 | * Set the doss paie. |
||
5062 | * |
||
5063 | * @param string|null $dossPaie The doss paie. |
||
5064 | * @return Constantes Returns this Constantes. |
||
5065 | */ |
||
5066 | public function setDossPaie(?string $dossPaie): Constantes { |
||
5070 | |||
5071 | /** |
||
5072 | * Set the es code abs entree. |
||
5073 | * |
||
5074 | * @param string|null $esCodeAbsEntree The es code abs entree. |
||
5075 | * @return Constantes Returns this Constantes. |
||
5076 | */ |
||
5077 | public function setEsCodeAbsEntree(?string $esCodeAbsEntree): Constantes { |
||
5081 | |||
5082 | /** |
||
5083 | * Set the es code abs sortie. |
||
5084 | * |
||
5085 | * @param string|null $esCodeAbsSortie The es code abs sortie. |
||
5086 | * @return Constantes Returns this Constantes. |
||
5087 | */ |
||
5088 | public function setEsCodeAbsSortie(?string $esCodeAbsSortie): Constantes { |
||
5092 | |||
5093 | /** |
||
5094 | * Set the es heures reelles. |
||
5095 | * |
||
5096 | * @param bool|null $esHeuresReelles The es heures reelles. |
||
5097 | * @return Constantes Returns this Constantes. |
||
5098 | */ |
||
5099 | public function setEsHeuresReelles(?bool $esHeuresReelles): Constantes { |
||
5103 | |||
5104 | /** |
||
5105 | * Set the etablissements paie. |
||
5106 | * |
||
5107 | * @param string|null $etablissementsPaie The etablissements paie. |
||
5108 | * @return Constantes Returns this Constantes. |
||
5109 | */ |
||
5110 | public function setEtablissementsPaie(?string $etablissementsPaie): Constantes { |
||
5114 | |||
5115 | /** |
||
5116 | * Set the etat. |
||
5117 | * |
||
5118 | * @param string|null $etat The etat. |
||
5119 | * @return Constantes Returns this Constantes. |
||
5120 | */ |
||
5121 | public function setEtat(?string $etat): Constantes { |
||
5125 | |||
5126 | /** |
||
5127 | * Set the euro. |
||
5128 | * |
||
5129 | * @param bool|null $euro The euro. |
||
5130 | * @return Constantes Returns this Constantes. |
||
5131 | */ |
||
5132 | public function setEuro(?bool $euro): Constantes { |
||
5136 | |||
5137 | /** |
||
5138 | * Set the facturation prorata heures. |
||
5139 | * |
||
5140 | * @param bool|null $facturationProrataHeures The facturation prorata heures. |
||
5141 | * @return Constantes Returns this Constantes. |
||
5142 | */ |
||
5143 | public function setFacturationProrataHeures(?bool $facturationProrataHeures): Constantes { |
||
5147 | |||
5148 | /** |
||
5149 | * Set the folio ja. |
||
5150 | * |
||
5151 | * @param string|null $folioJa The folio ja. |
||
5152 | * @return Constantes Returns this Constantes. |
||
5153 | */ |
||
5154 | public function setFolioJa(?string $folioJa): Constantes { |
||
5158 | |||
5159 | /** |
||
5160 | * Set the folio jv negoce. |
||
5161 | * |
||
5162 | * @param string|null $folioJvNegoce The folio jv negoce. |
||
5163 | * @return Constantes Returns this Constantes. |
||
5164 | */ |
||
5165 | public function setFolioJvNegoce(?string $folioJvNegoce): Constantes { |
||
5169 | |||
5170 | /** |
||
5171 | * Set the folio jv prestation. |
||
5172 | * |
||
5173 | * @param string|null $folioJvPrestation The folio jv prestation. |
||
5174 | * @return Constantes Returns this Constantes. |
||
5175 | */ |
||
5176 | public function setFolioJvPrestation(?string $folioJvPrestation): Constantes { |
||
5180 | |||
5181 | /** |
||
5182 | * Set the gerer num cpt chantier. |
||
5183 | * |
||
5184 | * @param bool|null $gererNumCptChantier The gerer num cpt chantier. |
||
5185 | * @return Constantes Returns this Constantes. |
||
5186 | */ |
||
5187 | public function setGererNumCptChantier(?bool $gererNumCptChantier): Constantes { |
||
5191 | |||
5192 | /** |
||
5193 | * Set the gestion h compl. |
||
5194 | * |
||
5195 | * @param bool|null $gestionHCompl The gestion h compl. |
||
5196 | * @return Constantes Returns this Constantes. |
||
5197 | */ |
||
5198 | public function setGestionHCompl(?bool $gestionHCompl): Constantes { |
||
5202 | |||
5203 | /** |
||
5204 | * Set the gestion h sup mens. |
||
5205 | * |
||
5206 | * @param bool|null $gestionHSupMens The gestion h sup mens. |
||
5207 | * @return Constantes Returns this Constantes. |
||
5208 | */ |
||
5209 | public function setGestionHSupMens(?bool $gestionHSupMens): Constantes { |
||
5213 | |||
5214 | /** |
||
5215 | * Set the gestion h sup mensuelle. |
||
5216 | * |
||
5217 | * @param bool|null $gestionHSupMensuelle The gestion h sup mensuelle. |
||
5218 | * @return Constantes Returns this Constantes. |
||
5219 | */ |
||
5220 | public function setGestionHSupMensuelle(?bool $gestionHSupMensuelle): Constantes { |
||
5224 | |||
5225 | /** |
||
5226 | * Set the gestion maj dim. |
||
5227 | * |
||
5228 | * @param string|null $gestionMajDim The gestion maj dim. |
||
5229 | * @return Constantes Returns this Constantes. |
||
5230 | */ |
||
5231 | public function setGestionMajDim(?string $gestionMajDim): Constantes { |
||
5235 | |||
5236 | /** |
||
5237 | * Set the gestion maj jf. |
||
5238 | * |
||
5239 | * @param string|null $gestionMajJf The gestion maj jf. |
||
5240 | * @return Constantes Returns this Constantes. |
||
5241 | */ |
||
5242 | public function setGestionMajJf(?string $gestionMajJf): Constantes { |
||
5246 | |||
5247 | /** |
||
5248 | * Set the gestion maj nuit. |
||
5249 | * |
||
5250 | * @param string|null $gestionMajNuit The gestion maj nuit. |
||
5251 | * @return Constantes Returns this Constantes. |
||
5252 | */ |
||
5253 | public function setGestionMajNuit(?string $gestionMajNuit): Constantes { |
||
5257 | |||
5258 | /** |
||
5259 | * Set the gestion multi depot. |
||
5260 | * |
||
5261 | * @param bool|null $gestionMultiDepot The gestion multi depot. |
||
5262 | * @return Constantes Returns this Constantes. |
||
5263 | */ |
||
5264 | public function setGestionMultiDepot(?bool $gestionMultiDepot): Constantes { |
||
5268 | |||
5269 | /** |
||
5270 | * Set the gestion quotas. |
||
5271 | * |
||
5272 | * @param bool|null $gestionQuotas The gestion quotas. |
||
5273 | * @return Constantes Returns this Constantes. |
||
5274 | */ |
||
5275 | public function setGestionQuotas(?bool $gestionQuotas): Constantes { |
||
5279 | |||
5280 | /** |
||
5281 | * Set the gestion specif jf. |
||
5282 | * |
||
5283 | * @param bool|null $gestionSpecifJf The gestion specif jf. |
||
5284 | * @return Constantes Returns this Constantes. |
||
5285 | */ |
||
5286 | public function setGestionSpecifJf(?bool $gestionSpecifJf): Constantes { |
||
5290 | |||
5291 | /** |
||
5292 | * Set the gestion specif majo jf. |
||
5293 | * |
||
5294 | * @param bool|null $gestionSpecifMajoJf The gestion specif majo jf. |
||
5295 | * @return Constantes Returns this Constantes. |
||
5296 | */ |
||
5297 | public function setGestionSpecifMajoJf(?bool $gestionSpecifMajoJf): Constantes { |
||
5301 | |||
5302 | /** |
||
5303 | * Set the h deb nuit. |
||
5304 | * |
||
5305 | * @param DateTime|null $hDebNuit The h deb nuit. |
||
5306 | * @return Constantes Returns this Constantes. |
||
5307 | */ |
||
5308 | public function setHDebNuit(?DateTime $hDebNuit): Constantes { |
||
5312 | |||
5313 | /** |
||
5314 | * Set the h deb nuit trav nuit. |
||
5315 | * |
||
5316 | * @param DateTime|null $hDebNuitTravNuit The h deb nuit trav nuit. |
||
5317 | * @return Constantes Returns this Constantes. |
||
5318 | */ |
||
5319 | public function setHDebNuitTravNuit(?DateTime $hDebNuitTravNuit): Constantes { |
||
5323 | |||
5324 | /** |
||
5325 | * Set the h fin nuit. |
||
5326 | * |
||
5327 | * @param DateTime|null $hFinNuit The h fin nuit. |
||
5328 | * @return Constantes Returns this Constantes. |
||
5329 | */ |
||
5330 | public function setHFinNuit(?DateTime $hFinNuit): Constantes { |
||
5334 | |||
5335 | /** |
||
5336 | * Set the h fin nuit trav nuit. |
||
5337 | * |
||
5338 | * @param DateTime|null $hFinNuitTravNuit The h fin nuit trav nuit. |
||
5339 | * @return Constantes Returns this Constantes. |
||
5340 | */ |
||
5341 | public function setHFinNuitTravNuit(?DateTime $hFinNuitTravNuit): Constantes { |
||
5345 | |||
5346 | /** |
||
5347 | * Set the heures absence mensualise. |
||
5348 | * |
||
5349 | * @param bool|null $heuresAbsenceMensualise The heures absence mensualise. |
||
5350 | * @return Constantes Returns this Constantes. |
||
5351 | */ |
||
5352 | public function setHeuresAbsenceMensualise(?bool $heuresAbsenceMensualise): Constantes { |
||
5356 | |||
5357 | /** |
||
5358 | * Set the heures rempl egales mens titulaire. |
||
5359 | * |
||
5360 | * @param bool|null $heuresRemplEgalesMensTitulaire The heures rempl egales mens titulaire. |
||
5361 | * @return Constantes Returns this Constantes. |
||
5362 | */ |
||
5363 | public function setHeuresRemplEgalesMensTitulaire(?bool $heuresRemplEgalesMensTitulaire): Constantes { |
||
5367 | |||
5368 | /** |
||
5369 | * Set the increment compte auto. |
||
5370 | * |
||
5371 | * @param int|null $incrementCompteAuto The increment compte auto. |
||
5372 | * @return Constantes Returns this Constantes. |
||
5373 | */ |
||
5374 | public function setIncrementCompteAuto(?int $incrementCompteAuto): Constantes { |
||
5378 | |||
5379 | /** |
||
5380 | * Set the liaison compta win. |
||
5381 | * |
||
5382 | * @param bool|null $liaisonComptaWin The liaison compta win. |
||
5383 | * @return Constantes Returns this Constantes. |
||
5384 | */ |
||
5385 | public function setLiaisonComptaWin(?bool $liaisonComptaWin): Constantes { |
||
5389 | |||
5390 | /** |
||
5391 | * Set the lib critere bool1. |
||
5392 | * |
||
5393 | * @param string|null $libCritereBool1 The lib critere bool1. |
||
5394 | * @return Constantes Returns this Constantes. |
||
5395 | */ |
||
5396 | public function setLibCritereBool1(?string $libCritereBool1): Constantes { |
||
5400 | |||
5401 | /** |
||
5402 | * Set the lib critere bool2. |
||
5403 | * |
||
5404 | * @param string|null $libCritereBool2 The lib critere bool2. |
||
5405 | * @return Constantes Returns this Constantes. |
||
5406 | */ |
||
5407 | public function setLibCritereBool2(?string $libCritereBool2): Constantes { |
||
5411 | |||
5412 | /** |
||
5413 | * Set the lib critere byte1. |
||
5414 | * |
||
5415 | * @param string|null $libCritereByte1 The lib critere byte1. |
||
5416 | * @return Constantes Returns this Constantes. |
||
5417 | */ |
||
5418 | public function setLibCritereByte1(?string $libCritereByte1): Constantes { |
||
5422 | |||
5423 | /** |
||
5424 | * Set the lib critere num1. |
||
5425 | * |
||
5426 | * @param string|null $libCritereNum1 The lib critere num1. |
||
5427 | * @return Constantes Returns this Constantes. |
||
5428 | */ |
||
5429 | public function setLibCritereNum1(?string $libCritereNum1): Constantes { |
||
5433 | |||
5434 | /** |
||
5435 | * Set the lib critere num2. |
||
5436 | * |
||
5437 | * @param string|null $libCritereNum2 The lib critere num2. |
||
5438 | * @return Constantes Returns this Constantes. |
||
5439 | */ |
||
5440 | public function setLibCritereNum2(?string $libCritereNum2): Constantes { |
||
5444 | |||
5445 | /** |
||
5446 | * Set the lib critere num3. |
||
5447 | * |
||
5448 | * @param string|null $libCritereNum3 The lib critere num3. |
||
5449 | * @return Constantes Returns this Constantes. |
||
5450 | */ |
||
5451 | public function setLibCritereNum3(?string $libCritereNum3): Constantes { |
||
5455 | |||
5456 | /** |
||
5457 | * Set the lib critere num4. |
||
5458 | * |
||
5459 | * @param string|null $libCritereNum4 The lib critere num4. |
||
5460 | * @return Constantes Returns this Constantes. |
||
5461 | */ |
||
5462 | public function setLibCritereNum4(?string $libCritereNum4): Constantes { |
||
5466 | |||
5467 | /** |
||
5468 | * Set the lib critere num5. |
||
5469 | * |
||
5470 | * @param string|null $libCritereNum5 The lib critere num5. |
||
5471 | * @return Constantes Returns this Constantes. |
||
5472 | */ |
||
5473 | public function setLibCritereNum5(?string $libCritereNum5): Constantes { |
||
5477 | |||
5478 | /** |
||
5479 | * Set the lib critere tab1. |
||
5480 | * |
||
5481 | * @param string|null $libCritereTab1 The lib critere tab1. |
||
5482 | * @return Constantes Returns this Constantes. |
||
5483 | */ |
||
5484 | public function setLibCritereTab1(?string $libCritereTab1): Constantes { |
||
5488 | |||
5489 | /** |
||
5490 | * Set the lib critere tab2. |
||
5491 | * |
||
5492 | * @param string|null $libCritereTab2 The lib critere tab2. |
||
5493 | * @return Constantes Returns this Constantes. |
||
5494 | */ |
||
5495 | public function setLibCritereTab2(?string $libCritereTab2): Constantes { |
||
5499 | |||
5500 | /** |
||
5501 | * Set the lib critere tab3. |
||
5502 | * |
||
5503 | * @param string|null $libCritereTab3 The lib critere tab3. |
||
5504 | * @return Constantes Returns this Constantes. |
||
5505 | */ |
||
5506 | public function setLibCritereTab3(?string $libCritereTab3): Constantes { |
||
5510 | |||
5511 | /** |
||
5512 | * Set the lib critere tab4. |
||
5513 | * |
||
5514 | * @param string|null $libCritereTab4 The lib critere tab4. |
||
5515 | * @return Constantes Returns this Constantes. |
||
5516 | */ |
||
5517 | public function setLibCritereTab4(?string $libCritereTab4): Constantes { |
||
5521 | |||
5522 | /** |
||
5523 | * Set the lib critere tab5. |
||
5524 | * |
||
5525 | * @param string|null $libCritereTab5 The lib critere tab5. |
||
5526 | * @return Constantes Returns this Constantes. |
||
5527 | */ |
||
5528 | public function setLibCritereTab5(?string $libCritereTab5): Constantes { |
||
5532 | |||
5533 | /** |
||
5534 | * Set the lib critere txt1. |
||
5535 | * |
||
5536 | * @param string|null $libCritereTxt1 The lib critere txt1. |
||
5537 | * @return Constantes Returns this Constantes. |
||
5538 | */ |
||
5539 | public function setLibCritereTxt1(?string $libCritereTxt1): Constantes { |
||
5543 | |||
5544 | /** |
||
5545 | * Set the lib critere txt2. |
||
5546 | * |
||
5547 | * @param string|null $libCritereTxt2 The lib critere txt2. |
||
5548 | * @return Constantes Returns this Constantes. |
||
5549 | */ |
||
5550 | public function setLibCritereTxt2(?string $libCritereTxt2): Constantes { |
||
5554 | |||
5555 | /** |
||
5556 | * Set the lib critere txt3. |
||
5557 | * |
||
5558 | * @param string|null $libCritereTxt3 The lib critere txt3. |
||
5559 | * @return Constantes Returns this Constantes. |
||
5560 | */ |
||
5561 | public function setLibCritereTxt3(?string $libCritereTxt3): Constantes { |
||
5565 | |||
5566 | /** |
||
5567 | * Set the lib critere txt4. |
||
5568 | * |
||
5569 | * @param string|null $libCritereTxt4 The lib critere txt4. |
||
5570 | * @return Constantes Returns this Constantes. |
||
5571 | */ |
||
5572 | public function setLibCritereTxt4(?string $libCritereTxt4): Constantes { |
||
5576 | |||
5577 | /** |
||
5578 | * Set the lib critere txt5. |
||
5579 | * |
||
5580 | * @param string|null $libCritereTxt5 The lib critere txt5. |
||
5581 | * @return Constantes Returns this Constantes. |
||
5582 | */ |
||
5583 | public function setLibCritereTxt5(?string $libCritereTxt5): Constantes { |
||
5587 | |||
5588 | /** |
||
5589 | * Set the libelle auto avoir. |
||
5590 | * |
||
5591 | * @param string|null $libelleAutoAvoir The libelle auto avoir. |
||
5592 | * @return Constantes Returns this Constantes. |
||
5593 | */ |
||
5594 | public function setLibelleAutoAvoir(?string $libelleAutoAvoir): Constantes { |
||
5598 | |||
5599 | /** |
||
5600 | * Set the libelle auto facture. |
||
5601 | * |
||
5602 | * @param string|null $libelleAutoFacture The libelle auto facture. |
||
5603 | * @return Constantes Returns this Constantes. |
||
5604 | */ |
||
5605 | public function setLibelleAutoFacture(?string $libelleAutoFacture): Constantes { |
||
5609 | |||
5610 | /** |
||
5611 | * Set the libelle heures surcroit. |
||
5612 | * |
||
5613 | * @param string|null $libelleHeuresSurcroit The libelle heures surcroit. |
||
5614 | * @return Constantes Returns this Constantes. |
||
5615 | */ |
||
5616 | public function setLibelleHeuresSurcroit(?string $libelleHeuresSurcroit): Constantes { |
||
5620 | |||
5621 | /** |
||
5622 | * Set the libelle transfert. |
||
5623 | * |
||
5624 | * @param string|null $libelleTransfert The libelle transfert. |
||
5625 | * @return Constantes Returns this Constantes. |
||
5626 | */ |
||
5627 | public function setLibelleTransfert(?string $libelleTransfert): Constantes { |
||
5631 | |||
5632 | /** |
||
5633 | * Set the libelle transfert achat. |
||
5634 | * |
||
5635 | * @param string|null $libelleTransfertAchat The libelle transfert achat. |
||
5636 | * @return Constantes Returns this Constantes. |
||
5637 | */ |
||
5638 | public function setLibelleTransfertAchat(?string $libelleTransfertAchat): Constantes { |
||
5642 | |||
5643 | /** |
||
5644 | * Set the liv cde frn depot unique. |
||
5645 | * |
||
5646 | * @param bool|null $livCdeFrnDepotUnique The liv cde frn depot unique. |
||
5647 | * @return Constantes Returns this Constantes. |
||
5648 | */ |
||
5649 | public function setLivCdeFrnDepotUnique(?bool $livCdeFrnDepotUnique): Constantes { |
||
5653 | |||
5654 | /** |
||
5655 | * Set the maj dernier passage bt. |
||
5656 | * |
||
5657 | * @param bool|null $majDernierPassageBt The maj dernier passage bt. |
||
5658 | * @return Constantes Returns this Constantes. |
||
5659 | */ |
||
5660 | public function setMajDernierPassageBt(?bool $majDernierPassageBt): Constantes { |
||
5664 | |||
5665 | /** |
||
5666 | * Set the mail attestations. |
||
5667 | * |
||
5668 | * @param string|null $mailAttestations The mail attestations. |
||
5669 | * @return Constantes Returns this Constantes. |
||
5670 | */ |
||
5671 | public function setMailAttestations(?string $mailAttestations): Constantes { |
||
5675 | |||
5676 | /** |
||
5677 | * Set the mail factures. |
||
5678 | * |
||
5679 | * @param string|null $mailFactures The mail factures. |
||
5680 | * @return Constantes Returns this Constantes. |
||
5681 | */ |
||
5682 | public function setMailFactures(?string $mailFactures): Constantes { |
||
5686 | |||
5687 | /** |
||
5688 | * Set the maj dernier prix achat. |
||
5689 | * |
||
5690 | * @param bool|null $majDernierPrixAchat The maj dernier prix achat. |
||
5691 | * @return Constantes Returns this Constantes. |
||
5692 | */ |
||
5693 | public function setMajDernierPrixAchat(?bool $majDernierPrixAchat): Constantes { |
||
5697 | |||
5698 | /** |
||
5699 | * Set the maj pamp. |
||
5700 | * |
||
5701 | * @param bool|null $majPamp The maj pamp. |
||
5702 | * @return Constantes Returns this Constantes. |
||
5703 | */ |
||
5704 | public function setMajPamp(?bool $majPamp): Constantes { |
||
5708 | |||
5709 | /** |
||
5710 | * Set the majoration cascade. |
||
5711 | * |
||
5712 | * @param bool|null $majorationCascade The majoration cascade. |
||
5713 | * @return Constantes Returns this Constantes. |
||
5714 | */ |
||
5715 | public function setMajorationCascade(?bool $majorationCascade): Constantes { |
||
5719 | |||
5720 | /** |
||
5721 | * Set the majoration h plus. |
||
5722 | * |
||
5723 | * @param string|null $majorationHPlus The majoration h plus. |
||
5724 | * @return Constantes Returns this Constantes. |
||
5725 | */ |
||
5726 | public function setMajorationHPlus(?string $majorationHPlus): Constantes { |
||
5730 | |||
5731 | /** |
||
5732 | * Set the marge niveau edition. |
||
5733 | * |
||
5734 | * @param string|null $margeNiveauEdition The marge niveau edition. |
||
5735 | * @return Constantes Returns this Constantes. |
||
5736 | */ |
||
5737 | public function setMargeNiveauEdition(?string $margeNiveauEdition): Constantes { |
||
5741 | |||
5742 | /** |
||
5743 | * Set the marge pourcent charge. |
||
5744 | * |
||
5745 | * @param float|null $margePourcentCharge The marge pourcent charge. |
||
5746 | * @return Constantes Returns this Constantes. |
||
5747 | */ |
||
5748 | public function setMargePourcentCharge(?float $margePourcentCharge): Constantes { |
||
5752 | |||
5753 | /** |
||
5754 | * Set the marge sal insp prorata ca. |
||
5755 | * |
||
5756 | * @param bool|null $margeSalInspProrataCa The marge sal insp prorata ca. |
||
5757 | * @return Constantes Returns this Constantes. |
||
5758 | */ |
||
5759 | public function setMargeSalInspProrataCa(?bool $margeSalInspProrataCa): Constantes { |
||
5763 | |||
5764 | /** |
||
5765 | * Set the mensualisation tache. |
||
5766 | * |
||
5767 | * @param bool|null $mensualisationTache The mensualisation tache. |
||
5768 | * @return Constantes Returns this Constantes. |
||
5769 | */ |
||
5770 | public function setMensualisationTache(?bool $mensualisationTache): Constantes { |
||
5774 | |||
5775 | /** |
||
5776 | * Set the mode calcul proposition cde. |
||
5777 | * |
||
5778 | * @param string|null $modeCalculPropositionCde The mode calcul proposition cde. |
||
5779 | * @return Constantes Returns this Constantes. |
||
5780 | */ |
||
5781 | public function setModeCalculPropositionCde(?string $modeCalculPropositionCde): Constantes { |
||
5785 | |||
5786 | /** |
||
5787 | * Set the modele devis. |
||
5788 | * |
||
5789 | * @param string|null $modeleDevis The modele devis. |
||
5790 | * @return Constantes Returns this Constantes. |
||
5791 | */ |
||
5792 | public function setModeleDevis(?string $modeleDevis): Constantes { |
||
5796 | |||
5797 | /** |
||
5798 | * Set the modele devis tech. |
||
5799 | * |
||
5800 | * @param string|null $modeleDevisTech The modele devis tech. |
||
5801 | * @return Constantes Returns this Constantes. |
||
5802 | */ |
||
5803 | public function setModeleDevisTech(?string $modeleDevisTech): Constantes { |
||
5807 | |||
5808 | /** |
||
5809 | * Set the modele facture. |
||
5810 | * |
||
5811 | * @param string|null $modeleFacture The modele facture. |
||
5812 | * @return Constantes Returns this Constantes. |
||
5813 | */ |
||
5814 | public function setModeleFacture(?string $modeleFacture): Constantes { |
||
5818 | |||
5819 | /** |
||
5820 | * Set the mt cpta negatif. |
||
5821 | * |
||
5822 | * @param bool|null $mtCptaNegatif The mt cpta negatif. |
||
5823 | * @return Constantes Returns this Constantes. |
||
5824 | */ |
||
5825 | public function setMtCptaNegatif(?bool $mtCptaNegatif): Constantes { |
||
5829 | |||
5830 | /** |
||
5831 | * Set the n der document. |
||
5832 | * |
||
5833 | * @param int|null $nDerDocument The n der document. |
||
5834 | * @return Constantes Returns this Constantes. |
||
5835 | */ |
||
5836 | public function setNDerDocument(?int $nDerDocument): Constantes { |
||
5840 | |||
5841 | /** |
||
5842 | * Set the nb caracteres ligne fact. |
||
5843 | * |
||
5844 | * @param string|null $nbCaracteresLigneFact The nb caracteres ligne fact. |
||
5845 | * @return Constantes Returns this Constantes. |
||
5846 | */ |
||
5847 | public function setNbCaracteresLigneFact(?string $nbCaracteresLigneFact): Constantes { |
||
5851 | |||
5852 | /** |
||
5853 | * Set the nb decimales prix unitaire. |
||
5854 | * |
||
5855 | * @param string|null $nbDecimalesPrixUnitaire The nb decimales prix unitaire. |
||
5856 | * @return Constantes Returns this Constantes. |
||
5857 | */ |
||
5858 | public function setNbDecimalesPrixUnitaire(?string $nbDecimalesPrixUnitaire): Constantes { |
||
5862 | |||
5863 | /** |
||
5864 | * Set the nb decimales quantite. |
||
5865 | * |
||
5866 | * @param string|null $nbDecimalesQuantite The nb decimales quantite. |
||
5867 | * @return Constantes Returns this Constantes. |
||
5868 | */ |
||
5869 | public function setNbDecimalesQuantite(?string $nbDecimalesQuantite): Constantes { |
||
5873 | |||
5874 | /** |
||
5875 | * Set the nb entiers prix unitaire. |
||
5876 | * |
||
5877 | * @param string|null $nbEntiersPrixUnitaire The nb entiers prix unitaire. |
||
5878 | * @return Constantes Returns this Constantes. |
||
5879 | */ |
||
5880 | public function setNbEntiersPrixUnitaire(?string $nbEntiersPrixUnitaire): Constantes { |
||
5884 | |||
5885 | /** |
||
5886 | * Set the nb entiers quantite. |
||
5887 | * |
||
5888 | * @param string|null $nbEntiersQuantite The nb entiers quantite. |
||
5889 | * @return Constantes Returns this Constantes. |
||
5890 | */ |
||
5891 | public function setNbEntiersQuantite(?string $nbEntiersQuantite): Constantes { |
||
5895 | |||
5896 | /** |
||
5897 | * Set the nb jour cp acquis. |
||
5898 | * |
||
5899 | * @param float|null $nbJourCpAcquis The nb jour cp acquis. |
||
5900 | * @return Constantes Returns this Constantes. |
||
5901 | */ |
||
5902 | public function setNbJourCpAcquis(?float $nbJourCpAcquis): Constantes { |
||
5906 | |||
5907 | /** |
||
5908 | * Set the nb jours abs proratisation dcp. |
||
5909 | * |
||
5910 | * @param int|null $nbJoursAbsProratisationDcp The nb jours abs proratisation dcp. |
||
5911 | * @return Constantes Returns this Constantes. |
||
5912 | */ |
||
5913 | public function setNbJoursAbsProratisationDcp(?int $nbJoursAbsProratisationDcp): Constantes { |
||
5917 | |||
5918 | /** |
||
5919 | * Set the nb mois consecutifs. |
||
5920 | * |
||
5921 | * @param int|null $nbMoisConsecutifs The nb mois consecutifs. |
||
5922 | * @return Constantes Returns this Constantes. |
||
5923 | */ |
||
5924 | public function setNbMoisConsecutifs(?int $nbMoisConsecutifs): Constantes { |
||
5928 | |||
5929 | /** |
||
5930 | * Set the nom fact nb lignes. |
||
5931 | * |
||
5932 | * @param string|null $nomFactNbLignes The nom fact nb lignes. |
||
5933 | * @return Constantes Returns this Constantes. |
||
5934 | */ |
||
5935 | public function setNomFactNbLignes(?string $nomFactNbLignes): Constantes { |
||
5939 | |||
5940 | /** |
||
5941 | * Set the nom fichier ascii achat. |
||
5942 | * |
||
5943 | * @param string|null $nomFichierAsciiAchat The nom fichier ascii achat. |
||
5944 | * @return Constantes Returns this Constantes. |
||
5945 | */ |
||
5946 | public function setNomFichierAsciiAchat(?string $nomFichierAsciiAchat): Constantes { |
||
5950 | |||
5951 | /** |
||
5952 | * Set the nom fichier ascii vente. |
||
5953 | * |
||
5954 | * @param string|null $nomFichierAsciiVente The nom fichier ascii vente. |
||
5955 | * @return Constantes Returns this Constantes. |
||
5956 | */ |
||
5957 | public function setNomFichierAsciiVente(?string $nomFichierAsciiVente): Constantes { |
||
5961 | |||
5962 | /** |
||
5963 | * Set the note0 non conforme. |
||
5964 | * |
||
5965 | * @param bool|null $note0NonConforme The note0 non conforme. |
||
5966 | * @return Constantes Returns this Constantes. |
||
5967 | */ |
||
5968 | public function setNote0NonConforme(?bool $note0NonConforme): Constantes { |
||
5972 | |||
5973 | /** |
||
5974 | * Set the num bt. |
||
5975 | * |
||
5976 | * @param int|null $numBt The num bt. |
||
5977 | * @return Constantes Returns this Constantes. |
||
5978 | */ |
||
5979 | public function setNumBt(?int $numBt): Constantes { |
||
5983 | |||
5984 | /** |
||
5985 | * Set the num critere bt num1. |
||
5986 | * |
||
5987 | * @param string|null $numCritereBtNum1 The num critere bt num1. |
||
5988 | * @return Constantes Returns this Constantes. |
||
5989 | */ |
||
5990 | public function setNumCritereBtNum1(?string $numCritereBtNum1): Constantes { |
||
5994 | |||
5995 | /** |
||
5996 | * Set the num critere bt num2. |
||
5997 | * |
||
5998 | * @param string|null $numCritereBtNum2 The num critere bt num2. |
||
5999 | * @return Constantes Returns this Constantes. |
||
6000 | */ |
||
6001 | public function setNumCritereBtNum2(?string $numCritereBtNum2): Constantes { |
||
6005 | |||
6006 | /** |
||
6007 | * Set the num critere chantier filtre1. |
||
6008 | * |
||
6009 | * @param string|null $numCritereChantierFiltre1 The num critere chantier filtre1. |
||
6010 | * @return Constantes Returns this Constantes. |
||
6011 | */ |
||
6012 | public function setNumCritereChantierFiltre1(?string $numCritereChantierFiltre1): Constantes { |
||
6016 | |||
6017 | /** |
||
6018 | * Set the num devis. |
||
6019 | * |
||
6020 | * @param int|null $numDevis The num devis. |
||
6021 | * @return Constantes Returns this Constantes. |
||
6022 | */ |
||
6023 | public function setNumDevis(?int $numDevis): Constantes { |
||
6027 | |||
6028 | /** |
||
6029 | * Set the num fact. |
||
6030 | * |
||
6031 | * @param int|null $numFact The num fact. |
||
6032 | * @return Constantes Returns this Constantes. |
||
6033 | */ |
||
6034 | public function setNumFact(?int $numFact): Constantes { |
||
6038 | |||
6039 | /** |
||
6040 | * Set the num fact vm. |
||
6041 | * |
||
6042 | * @param int|null $numFactVm The num fact vm. |
||
6043 | * @return Constantes Returns this Constantes. |
||
6044 | */ |
||
6045 | public function setNumFactVm(?int $numFactVm): Constantes { |
||
6049 | |||
6050 | /** |
||
6051 | * Set the numero fiche controle. |
||
6052 | * |
||
6053 | * @param int|null $numeroFicheControle The numero fiche controle. |
||
6054 | * @return Constantes Returns this Constantes. |
||
6055 | */ |
||
6056 | public function setNumeroFicheControle(?int $numeroFicheControle): Constantes { |
||
6060 | |||
6061 | /** |
||
6062 | * Set the pa par fournisseur. |
||
6063 | * |
||
6064 | * @param bool|null $paParFournisseur The pa par fournisseur. |
||
6065 | * @return Constantes Returns this Constantes. |
||
6066 | */ |
||
6067 | public function setPaParFournisseur(?bool $paParFournisseur): Constantes { |
||
6071 | |||
6072 | /** |
||
6073 | * Set the pj envoi mail. |
||
6074 | * |
||
6075 | * @param string|null $pjEnvoiMail The pj envoi mail. |
||
6076 | * @return Constantes Returns this Constantes. |
||
6077 | */ |
||
6078 | public function setPjEnvoiMail(?string $pjEnvoiMail): Constantes { |
||
6082 | |||
6083 | /** |
||
6084 | * Set the pj envoi mail attestation. |
||
6085 | * |
||
6086 | * @param string|null $pjEnvoiMailAttestation The pj envoi mail attestation. |
||
6087 | * @return Constantes Returns this Constantes. |
||
6088 | */ |
||
6089 | public function setPjEnvoiMailAttestation(?string $pjEnvoiMailAttestation): Constantes { |
||
6093 | |||
6094 | /** |
||
6095 | * Set the pas num cpt par dossier. |
||
6096 | * |
||
6097 | * @param bool|null $pasNumCptParDossier The pas num cpt par dossier. |
||
6098 | * @return Constantes Returns this Constantes. |
||
6099 | */ |
||
6100 | public function setPasNumCptParDossier(?bool $pasNumCptParDossier): Constantes { |
||
6104 | |||
6105 | /** |
||
6106 | * Set the pdf bt coefficient. |
||
6107 | * |
||
6108 | * @param float|null $pdfBtCoefficient The pdf bt coefficient. |
||
6109 | * @return Constantes Returns this Constantes. |
||
6110 | */ |
||
6111 | public function setPdfBtCoefficient(?float $pdfBtCoefficient): Constantes { |
||
6115 | |||
6116 | /** |
||
6117 | * Set the pdf bt date passage. |
||
6118 | * |
||
6119 | * @param bool|null $pdfBtDatePassage The pdf bt date passage. |
||
6120 | * @return Constantes Returns this Constantes. |
||
6121 | */ |
||
6122 | public function setPdfBtDatePassage(?bool $pdfBtDatePassage): Constantes { |
||
6126 | |||
6127 | /** |
||
6128 | * Set the pdf bt descriptif. |
||
6129 | * |
||
6130 | * @param bool|null $pdfBtDescriptif The pdf bt descriptif. |
||
6131 | * @return Constantes Returns this Constantes. |
||
6132 | */ |
||
6133 | public function setPdfBtDescriptif(?bool $pdfBtDescriptif): Constantes { |
||
6137 | |||
6138 | /** |
||
6139 | * Set the pdf bt employes corps. |
||
6140 | * |
||
6141 | * @param bool|null $pdfBtEmployesCorps The pdf bt employes corps. |
||
6142 | * @return Constantes Returns this Constantes. |
||
6143 | */ |
||
6144 | public function setPdfBtEmployesCorps(?bool $pdfBtEmployesCorps): Constantes { |
||
6148 | |||
6149 | /** |
||
6150 | * Set the pdf bt employes ref. |
||
6151 | * |
||
6152 | * @param bool|null $pdfBtEmployesRef The pdf bt employes ref. |
||
6153 | * @return Constantes Returns this Constantes. |
||
6154 | */ |
||
6155 | public function setPdfBtEmployesRef(?bool $pdfBtEmployesRef): Constantes { |
||
6159 | |||
6160 | /** |
||
6161 | * Set the pdf bt facturer ala validation. |
||
6162 | * |
||
6163 | * @param bool|null $pdfBtFacturerAlaValidation The pdf bt facturer ala validation. |
||
6164 | * @return Constantes Returns this Constantes. |
||
6165 | */ |
||
6166 | public function setPdfBtFacturerAlaValidation(?bool $pdfBtFacturerAlaValidation): Constantes { |
||
6170 | |||
6171 | /** |
||
6172 | * Set the pdf bt format saisie qte pu. |
||
6173 | * |
||
6174 | * @param bool|null $pdfBtFormatSaisieQtePu The pdf bt format saisie qte pu. |
||
6175 | * @return Constantes Returns this Constantes. |
||
6176 | */ |
||
6177 | public function setPdfBtFormatSaisieQtePu(?bool $pdfBtFormatSaisieQtePu): Constantes { |
||
6181 | |||
6182 | /** |
||
6183 | * Set the pdf bt libelle date. |
||
6184 | * |
||
6185 | * @param string|null $pdfBtLibelleDate The pdf bt libelle date. |
||
6186 | * @return Constantes Returns this Constantes. |
||
6187 | */ |
||
6188 | public function setPdfBtLibelleDate(?string $pdfBtLibelleDate): Constantes { |
||
6192 | |||
6193 | /** |
||
6194 | * Set the pdf bt nom chantier. |
||
6195 | * |
||
6196 | * @param bool|null $pdfBtNomChantier The pdf bt nom chantier. |
||
6197 | * @return Constantes Returns this Constantes. |
||
6198 | */ |
||
6199 | public function setPdfBtNomChantier(?bool $pdfBtNomChantier): Constantes { |
||
6203 | |||
6204 | /** |
||
6205 | * Set the pdf bt periode validite. |
||
6206 | * |
||
6207 | * @param bool|null $pdfBtPeriodeValidite The pdf bt periode validite. |
||
6208 | * @return Constantes Returns this Constantes. |
||
6209 | */ |
||
6210 | public function setPdfBtPeriodeValidite(?bool $pdfBtPeriodeValidite): Constantes { |
||
6214 | |||
6215 | /** |
||
6216 | * Set the pdf bt prix achat. |
||
6217 | * |
||
6218 | * @param float|null $pdfBtPrixAchat The pdf bt prix achat. |
||
6219 | * @return Constantes Returns this Constantes. |
||
6220 | */ |
||
6221 | public function setPdfBtPrixAchat(?float $pdfBtPrixAchat): Constantes { |
||
6225 | |||
6226 | /** |
||
6227 | * Set the pdf bt reprendre libelle date. |
||
6228 | * |
||
6229 | * @param bool|null $pdfBtReprendreLibelleDate The pdf bt reprendre libelle date. |
||
6230 | * @return Constantes Returns this Constantes. |
||
6231 | */ |
||
6232 | public function setPdfBtReprendreLibelleDate(?bool $pdfBtReprendreLibelleDate): Constantes { |
||
6236 | |||
6237 | /** |
||
6238 | * Set the pdf bt taux horaire. |
||
6239 | * |
||
6240 | * @param float|null $pdfBtTauxHoraire The pdf bt taux horaire. |
||
6241 | * @return Constantes Returns this Constantes. |
||
6242 | */ |
||
6243 | public function setPdfBtTauxHoraire(?float $pdfBtTauxHoraire): Constantes { |
||
6247 | |||
6248 | /** |
||
6249 | * Set the point bt employes sortis. |
||
6250 | * |
||
6251 | * @param bool|null $pointBtEmployesSortis The point bt employes sortis. |
||
6252 | * @return Constantes Returns this Constantes. |
||
6253 | */ |
||
6254 | public function setPointBtEmployesSortis(?bool $pointBtEmployesSortis): Constantes { |
||
6258 | |||
6259 | /** |
||
6260 | * Set the poste1. |
||
6261 | * |
||
6262 | * @param string|null $poste1 The poste1. |
||
6263 | * @return Constantes Returns this Constantes. |
||
6264 | */ |
||
6265 | public function setPoste1(?string $poste1): Constantes { |
||
6269 | |||
6270 | /** |
||
6271 | * Set the poste2. |
||
6272 | * |
||
6273 | * @param string|null $poste2 The poste2. |
||
6274 | * @return Constantes Returns this Constantes. |
||
6275 | */ |
||
6276 | public function setPoste2(?string $poste2): Constantes { |
||
6280 | |||
6281 | /** |
||
6282 | * Set the poste3. |
||
6283 | * |
||
6284 | * @param string|null $poste3 The poste3. |
||
6285 | * @return Constantes Returns this Constantes. |
||
6286 | */ |
||
6287 | public function setPoste3(?string $poste3): Constantes { |
||
6291 | |||
6292 | /** |
||
6293 | * Set the poste4. |
||
6294 | * |
||
6295 | * @param string|null $poste4 The poste4. |
||
6296 | * @return Constantes Returns this Constantes. |
||
6297 | */ |
||
6298 | public function setPoste4(?string $poste4): Constantes { |
||
6302 | |||
6303 | /** |
||
6304 | * Set the poste5. |
||
6305 | * |
||
6306 | * @param string|null $poste5 The poste5. |
||
6307 | * @return Constantes Returns this Constantes. |
||
6308 | */ |
||
6309 | public function setPoste5(?string $poste5): Constantes { |
||
6313 | |||
6314 | /** |
||
6315 | * Set the pourc maj h compl. |
||
6316 | * |
||
6317 | * @param float|null $pourcMajHCompl The pourc maj h compl. |
||
6318 | * @return Constantes Returns this Constantes. |
||
6319 | */ |
||
6320 | public function setPourcMajHCompl(?float $pourcMajHCompl): Constantes { |
||
6324 | |||
6325 | /** |
||
6326 | * Set the pourc maj h compl2. |
||
6327 | * |
||
6328 | * @param float|null $pourcMajHCompl2 The pourc maj h compl2. |
||
6329 | * @return Constantes Returns this Constantes. |
||
6330 | */ |
||
6331 | public function setPourcMajHCompl2(?float $pourcMajHCompl2): Constantes { |
||
6335 | |||
6336 | /** |
||
6337 | * Set the pourcent dep hc max. |
||
6338 | * |
||
6339 | * @param float|null $pourcentDepHcMax The pourcent dep hc max. |
||
6340 | * @return Constantes Returns this Constantes. |
||
6341 | */ |
||
6342 | public function setPourcentDepHcMax(?float $pourcentDepHcMax): Constantes { |
||
6346 | |||
6347 | /** |
||
6348 | * Set the pourcent dep hc plus mois. |
||
6349 | * |
||
6350 | * @param float|null $pourcentDepHcPlusMois The pourcent dep hc plus mois. |
||
6351 | * @return Constantes Returns this Constantes. |
||
6352 | */ |
||
6353 | public function setPourcentDepHcPlusMois(?float $pourcentDepHcPlusMois): Constantes { |
||
6357 | |||
6358 | /** |
||
6359 | * Set the pourcentage repos remplacement. |
||
6360 | * |
||
6361 | * @param float|null $pourcentageReposRemplacement The pourcentage repos remplacement. |
||
6362 | * @return Constantes Returns this Constantes. |
||
6363 | */ |
||
6364 | public function setPourcentageReposRemplacement(?float $pourcentageReposRemplacement): Constantes { |
||
6368 | |||
6369 | /** |
||
6370 | * Set the prefixe. |
||
6371 | * |
||
6372 | * @param string|null $prefixe The prefixe. |
||
6373 | * @return Constantes Returns this Constantes. |
||
6374 | */ |
||
6375 | public function setPrefixe(?string $prefixe): Constantes { |
||
6379 | |||
6380 | /** |
||
6381 | * Set the prefixe devis. |
||
6382 | * |
||
6383 | * @param string|null $prefixeDevis The prefixe devis. |
||
6384 | * @return Constantes Returns this Constantes. |
||
6385 | */ |
||
6386 | public function setPrefixeDevis(?string $prefixeDevis): Constantes { |
||
6390 | |||
6391 | /** |
||
6392 | * Set the preparer chantier pret only. |
||
6393 | * |
||
6394 | * @param bool|null $preparerChantierPretOnly The preparer chantier pret only. |
||
6395 | * @return Constantes Returns this Constantes. |
||
6396 | */ |
||
6397 | public function setPreparerChantierPretOnly(?bool $preparerChantierPretOnly): Constantes { |
||
6401 | |||
6402 | /** |
||
6403 | * Set the prix defaut achat. |
||
6404 | * |
||
6405 | * @param int|null $prixDefautAchat The prix defaut achat. |
||
6406 | * @return Constantes Returns this Constantes. |
||
6407 | */ |
||
6408 | public function setPrixDefautAchat(?int $prixDefautAchat): Constantes { |
||
6412 | |||
6413 | /** |
||
6414 | * Set the prix defaut entree directe. |
||
6415 | * |
||
6416 | * @param int|null $prixDefautEntreeDirecte The prix defaut entree directe. |
||
6417 | * @return Constantes Returns this Constantes. |
||
6418 | */ |
||
6419 | public function setPrixDefautEntreeDirecte(?int $prixDefautEntreeDirecte): Constantes { |
||
6423 | |||
6424 | /** |
||
6425 | * Set the prix defaut inventaire. |
||
6426 | * |
||
6427 | * @param int|null $prixDefautInventaire The prix defaut inventaire. |
||
6428 | * @return Constantes Returns this Constantes. |
||
6429 | */ |
||
6430 | public function setPrixDefautInventaire(?int $prixDefautInventaire): Constantes { |
||
6434 | |||
6435 | /** |
||
6436 | * Set the prix defaut sortie directe. |
||
6437 | * |
||
6438 | * @param int|null $prixDefautSortieDirecte The prix defaut sortie directe. |
||
6439 | * @return Constantes Returns this Constantes. |
||
6440 | */ |
||
6441 | public function setPrixDefautSortieDirecte(?int $prixDefautSortieDirecte): Constantes { |
||
6445 | |||
6446 | /** |
||
6447 | * Set the prix defaut vente. |
||
6448 | * |
||
6449 | * @param int|null $prixDefautVente The prix defaut vente. |
||
6450 | * @return Constantes Returns this Constantes. |
||
6451 | */ |
||
6452 | public function setPrixDefautVente(?int $prixDefautVente): Constantes { |
||
6456 | |||
6457 | /** |
||
6458 | * Set the prochain numero pj. |
||
6459 | * |
||
6460 | * @param int|null $prochainNumeroPj The prochain numero pj. |
||
6461 | * @return Constantes Returns this Constantes. |
||
6462 | */ |
||
6463 | public function setProchainNumeroPj(?int $prochainNumeroPj): Constantes { |
||
6467 | |||
6468 | /** |
||
6469 | * Set the prorata heures creer ligne. |
||
6470 | * |
||
6471 | * @param bool|null $prorataHeuresCreerLigne The prorata heures creer ligne. |
||
6472 | * @return Constantes Returns this Constantes. |
||
6473 | */ |
||
6474 | public function setProrataHeuresCreerLigne(?bool $prorataHeuresCreerLigne): Constantes { |
||
6478 | |||
6479 | /** |
||
6480 | * Set the prorata heures designation moins. |
||
6481 | * |
||
6482 | * @param string|null $prorataHeuresDesignationMoins The prorata heures designation moins. |
||
6483 | * @return Constantes Returns this Constantes. |
||
6484 | */ |
||
6485 | public function setProrataHeuresDesignationMoins(?string $prorataHeuresDesignationMoins): Constantes { |
||
6489 | |||
6490 | /** |
||
6491 | * Set the prorata heures designation plus. |
||
6492 | * |
||
6493 | * @param string|null $prorataHeuresDesignationPlus The prorata heures designation plus. |
||
6494 | * @return Constantes Returns this Constantes. |
||
6495 | */ |
||
6496 | public function setProrataHeuresDesignationPlus(?string $prorataHeuresDesignationPlus): Constantes { |
||
6500 | |||
6501 | /** |
||
6502 | * Set the prorata heures option. |
||
6503 | * |
||
6504 | * @param string|null $prorataHeuresOption The prorata heures option. |
||
6505 | * @return Constantes Returns this Constantes. |
||
6506 | */ |
||
6507 | public function setProrataHeuresOption(?string $prorataHeuresOption): Constantes { |
||
6511 | |||
6512 | /** |
||
6513 | * Set the prov cp infos emp. |
||
6514 | * |
||
6515 | * @param bool|null $provCpInfosEmp The prov cp infos emp. |
||
6516 | * @return Constantes Returns this Constantes. |
||
6517 | */ |
||
6518 | public function setProvCpInfosEmp(?bool $provCpInfosEmp): Constantes { |
||
6522 | |||
6523 | /** |
||
6524 | * Set the provisions cp. |
||
6525 | * |
||
6526 | * @param bool|null $provisionsCp The provisions cp. |
||
6527 | * @return Constantes Returns this Constantes. |
||
6528 | */ |
||
6529 | public function setProvisionsCp(?bool $provisionsCp): Constantes { |
||
6533 | |||
6534 | /** |
||
6535 | * Set the qualite nb criteres. |
||
6536 | * |
||
6537 | * @param string|null $qualiteNbCriteres The qualite nb criteres. |
||
6538 | * @return Constantes Returns this Constantes. |
||
6539 | */ |
||
6540 | public function setQualiteNbCriteres(?string $qualiteNbCriteres): Constantes { |
||
6544 | |||
6545 | /** |
||
6546 | * Set the qualite nb notes. |
||
6547 | * |
||
6548 | * @param string|null $qualiteNbNotes The qualite nb notes. |
||
6549 | * @return Constantes Returns this Constantes. |
||
6550 | */ |
||
6551 | public function setQualiteNbNotes(?string $qualiteNbNotes): Constantes { |
||
6555 | |||
6556 | /** |
||
6557 | * Set the qualite satisfaction generale. |
||
6558 | * |
||
6559 | * @param bool|null $qualiteSatisfactionGenerale The qualite satisfaction generale. |
||
6560 | * @return Constantes Returns this Constantes. |
||
6561 | */ |
||
6562 | public function setQualiteSatisfactionGenerale(?bool $qualiteSatisfactionGenerale): Constantes { |
||
6566 | |||
6567 | /** |
||
6568 | * Set the rt fdans fact dev. |
||
6569 | * |
||
6570 | * @param bool|null $rtFdansFactDev The rt fdans fact dev. |
||
6571 | * @return Constantes Returns this Constantes. |
||
6572 | */ |
||
6573 | public function setRtFdansFactDev(?bool $rtFdansFactDev): Constantes { |
||
6577 | |||
6578 | /** |
||
6579 | * Set the reference mensu contrat proprete. |
||
6580 | * |
||
6581 | * @param bool|null $referenceMensuContratProprete The reference mensu contrat proprete. |
||
6582 | * @return Constantes Returns this Constantes. |
||
6583 | */ |
||
6584 | public function setReferenceMensuContratProprete(?bool $referenceMensuContratProprete): Constantes { |
||
6588 | |||
6589 | /** |
||
6590 | * Set the remplacant abs jf pas auto. |
||
6591 | * |
||
6592 | * @param bool|null $remplacantAbsJfPasAuto The remplacant abs jf pas auto. |
||
6593 | * @return Constantes Returns this Constantes. |
||
6594 | */ |
||
6595 | public function setRemplacantAbsJfPasAuto(?bool $remplacantAbsJfPasAuto): Constantes { |
||
6599 | |||
6600 | /** |
||
6601 | * Set the remplacant travaille pas jf. |
||
6602 | * |
||
6603 | * @param bool|null $remplacantTravaillePasJf The remplacant travaille pas jf. |
||
6604 | * @return Constantes Returns this Constantes. |
||
6605 | */ |
||
6606 | public function setRemplacantTravaillePasJf(?bool $remplacantTravaillePasJf): Constantes { |
||
6610 | |||
6611 | /** |
||
6612 | * Set the remplacement hcjf. |
||
6613 | * |
||
6614 | * @param bool|null $remplacementHcjf The remplacement hcjf. |
||
6615 | * @return Constantes Returns this Constantes. |
||
6616 | */ |
||
6617 | public function setRemplacementHcjf(?bool $remplacementHcjf): Constantes { |
||
6621 | |||
6622 | /** |
||
6623 | * Set the repos compensateur pour travailleur nuit. |
||
6624 | * |
||
6625 | * @param bool|null $reposCompensateurPourTravailleurNuit The repos compensateur pour travailleur nuit. |
||
6626 | * @return Constantes Returns this Constantes. |
||
6627 | */ |
||
6628 | public function setReposCompensateurPourTravailleurNuit(?bool $reposCompensateurPourTravailleurNuit): Constantes { |
||
6632 | |||
6633 | /** |
||
6634 | * Set the saisir absences sur hc. |
||
6635 | * |
||
6636 | * @param bool|null $saisirAbsencesSurHc The saisir absences sur hc. |
||
6637 | * @return Constantes Returns this Constantes. |
||
6638 | */ |
||
6639 | public function setSaisirAbsencesSurHc(?bool $saisirAbsencesSurHc): Constantes { |
||
6643 | |||
6644 | /** |
||
6645 | * Set the saisir code chantier achat. |
||
6646 | * |
||
6647 | * @param bool|null $saisirCodeChantierAchat The saisir code chantier achat. |
||
6648 | * @return Constantes Returns this Constantes. |
||
6649 | */ |
||
6650 | public function setSaisirCodeChantierAchat(?bool $saisirCodeChantierAchat): Constantes { |
||
6654 | |||
6655 | /** |
||
6656 | * Set the saisir num bt. |
||
6657 | * |
||
6658 | * @param bool|null $saisirNumBt The saisir num bt. |
||
6659 | * @return Constantes Returns this Constantes. |
||
6660 | */ |
||
6661 | public function setSaisirNumBt(?bool $saisirNumBt): Constantes { |
||
6665 | |||
6666 | /** |
||
6667 | * Set the services paie. |
||
6668 | * |
||
6669 | * @param string|null $servicesPaie The services paie. |
||
6670 | * @return Constantes Returns this Constantes. |
||
6671 | */ |
||
6672 | public function setServicesPaie(?string $servicesPaie): Constantes { |
||
6676 | |||
6677 | /** |
||
6678 | * Set the seuil majo h compl. |
||
6679 | * |
||
6680 | * @param float|null $seuilMajoHCompl The seuil majo h compl. |
||
6681 | * @return Constantes Returns this Constantes. |
||
6682 | */ |
||
6683 | public function setSeuilMajoHCompl(?float $seuilMajoHCompl): Constantes { |
||
6687 | |||
6688 | /** |
||
6689 | * Set the taux escompte. |
||
6690 | * |
||
6691 | * @param float|null $tauxEscompte The taux escompte. |
||
6692 | * @return Constantes Returns this Constantes. |
||
6693 | */ |
||
6694 | public function setTauxEscompte(?float $tauxEscompte): Constantes { |
||
6698 | |||
6699 | /** |
||
6700 | * Set the taux majo hc33. |
||
6701 | * |
||
6702 | * @param float|null $tauxMajoHc33 The taux majo hc33. |
||
6703 | * @return Constantes Returns this Constantes. |
||
6704 | */ |
||
6705 | public function setTauxMajoHc33(?float $tauxMajoHc33): Constantes { |
||
6709 | |||
6710 | /** |
||
6711 | * Set the taux majoration h compl. |
||
6712 | * |
||
6713 | * @param float|null $tauxMajorationHCompl The taux majoration h compl. |
||
6714 | * @return Constantes Returns this Constantes. |
||
6715 | */ |
||
6716 | public function setTauxMajorationHCompl(?float $tauxMajorationHCompl): Constantes { |
||
6720 | |||
6721 | /** |
||
6722 | * Set the taux tva achat. |
||
6723 | * |
||
6724 | * @param float|null $tauxTvaAchat The taux tva achat. |
||
6725 | * @return Constantes Returns this Constantes. |
||
6726 | */ |
||
6727 | public function setTauxTvaAchat(?float $tauxTvaAchat): Constantes { |
||
6731 | |||
6732 | /** |
||
6733 | * Set the taux tva taxe deee. |
||
6734 | * |
||
6735 | * @param float|null $tauxTvaTaxeDeee The taux tva taxe deee. |
||
6736 | * @return Constantes Returns this Constantes. |
||
6737 | */ |
||
6738 | public function setTauxTvaTaxeDeee(?float $tauxTvaTaxeDeee): Constantes { |
||
6742 | |||
6743 | /** |
||
6744 | * Set the taux tva vente. |
||
6745 | * |
||
6746 | * @param float|null $tauxTvaVente The taux tva vente. |
||
6747 | * @return Constantes Returns this Constantes. |
||
6748 | */ |
||
6749 | public function setTauxTvaVente(?float $tauxTvaVente): Constantes { |
||
6753 | |||
6754 | /** |
||
6755 | * Set the type rempl defaut. |
||
6756 | * |
||
6757 | * @param string|null $typeRemplDefaut The type rempl defaut. |
||
6758 | * @return Constantes Returns this Constantes. |
||
6759 | */ |
||
6760 | public function setTypeRemplDefaut(?string $typeRemplDefaut): Constantes { |
||
6764 | |||
6765 | /** |
||
6766 | * Set the type transfert vente. |
||
6767 | * |
||
6768 | * @param string|null $typeTransfertVente The type transfert vente. |
||
6769 | * @return Constantes Returns this Constantes. |
||
6770 | */ |
||
6771 | public function setTypeTransfertVente(?string $typeTransfertVente): Constantes { |
||
6775 | |||
6776 | /** |
||
6777 | * Set the uniq id synchro. |
||
6778 | * |
||
6779 | * @param string|null $uniqIdSynchro The uniq id synchro. |
||
6780 | * @return Constantes Returns this Constantes. |
||
6781 | */ |
||
6782 | public function setUniqIdSynchro(?string $uniqIdSynchro): Constantes { |
||
6786 | |||
6787 | /** |
||
6788 | * Set the utiliser stock mini. |
||
6789 | * |
||
6790 | * @param bool|null $utiliserStockMini The utiliser stock mini. |
||
6791 | * @return Constantes Returns this Constantes. |
||
6792 | */ |
||
6793 | public function setUtiliserStockMini(?bool $utiliserStockMini): Constantes { |
||
6797 | |||
6798 | /** |
||
6799 | * Set the visualiser pointage bt valides. |
||
6800 | * |
||
6801 | * @param bool|null $visualiserPointageBtValides The visualiser pointage bt valides. |
||
6802 | * @return Constantes Returns this Constantes. |
||
6803 | */ |
||
6804 | public function setVisualiserPointageBtValides(?bool $visualiserPointageBtValides): Constantes { |
||
6808 | } |
||
6809 |