Complex classes like Constantes2 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 Constantes2, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 22 | class Constantes2 { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Activation conf2 cmav cli. |
||
| 26 | * |
||
| 27 | * @var bool|null |
||
| 28 | */ |
||
| 29 | private $activationConf2CmavCli; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Active conf conv col. |
||
| 33 | * |
||
| 34 | * @var bool|null |
||
| 35 | */ |
||
| 36 | private $activeConfConvCol; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Activer saisie regl. |
||
| 40 | * |
||
| 41 | * @var bool|null |
||
| 42 | */ |
||
| 43 | private $activerSaisieRegl; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Affectations cli frn. |
||
| 47 | * |
||
| 48 | * @var bool|null |
||
| 49 | */ |
||
| 50 | private $affectationsCliFrn; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Annulation affaire. |
||
| 54 | * |
||
| 55 | * @var bool|null |
||
| 56 | */ |
||
| 57 | private $annulationAffaire; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * Articles lst perso acces gestion modifiables. |
||
| 61 | * |
||
| 62 | * @var bool|null |
||
| 63 | */ |
||
| 64 | private $articlesLstPersoAccesGestionModifiables; |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Articles lst perso acces gestionnaire. |
||
| 68 | * |
||
| 69 | * @var bool|null |
||
| 70 | */ |
||
| 71 | private $articlesLstPersoAccesGestionnaire; |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Articles lst perso champs modif. |
||
| 75 | * |
||
| 76 | * @var bool|null |
||
| 77 | */ |
||
| 78 | private $articlesLstPersoChampsModif; |
||
| 79 | |||
| 80 | /** |
||
| 81 | * Articles lst perso copie colonne. |
||
| 82 | * |
||
| 83 | * @var bool|null |
||
| 84 | */ |
||
| 85 | private $articlesLstPersoCopieColonne; |
||
| 86 | |||
| 87 | /** |
||
| 88 | * Articles lst perso interdire creat. |
||
| 89 | * |
||
| 90 | * @var bool|null |
||
| 91 | */ |
||
| 92 | private $articlesLstPersoInterdireCreat; |
||
| 93 | |||
| 94 | /** |
||
| 95 | * Asp affectation messages. |
||
| 96 | * |
||
| 97 | * @var string|null |
||
| 98 | */ |
||
| 99 | private $aspAffectationMessages; |
||
| 100 | |||
| 101 | /** |
||
| 102 | * Avec heures theo. |
||
| 103 | * |
||
| 104 | * @var bool|null |
||
| 105 | */ |
||
| 106 | private $avecHeuresTheo; |
||
| 107 | |||
| 108 | /** |
||
| 109 | * Calcul nombre messages. |
||
| 110 | * |
||
| 111 | * @var bool|null |
||
| 112 | */ |
||
| 113 | private $calculNombreMessages; |
||
| 114 | |||
| 115 | /** |
||
| 116 | * Champs critere article21. |
||
| 117 | * |
||
| 118 | * @var string|null |
||
| 119 | */ |
||
| 120 | private $champsCritereArticle21; |
||
| 121 | |||
| 122 | /** |
||
| 123 | * Champs critere article210. |
||
| 124 | * |
||
| 125 | * @var string|null |
||
| 126 | */ |
||
| 127 | private $champsCritereArticle210; |
||
| 128 | |||
| 129 | /** |
||
| 130 | * Champs critere article22. |
||
| 131 | * |
||
| 132 | * @var string|null |
||
| 133 | */ |
||
| 134 | private $champsCritereArticle22; |
||
| 135 | |||
| 136 | /** |
||
| 137 | * Champs critere article23. |
||
| 138 | * |
||
| 139 | * @var string|null |
||
| 140 | */ |
||
| 141 | private $champsCritereArticle23; |
||
| 142 | |||
| 143 | /** |
||
| 144 | * Champs critere article24. |
||
| 145 | * |
||
| 146 | * @var string|null |
||
| 147 | */ |
||
| 148 | private $champsCritereArticle24; |
||
| 149 | |||
| 150 | /** |
||
| 151 | * Champs critere article25. |
||
| 152 | * |
||
| 153 | * @var string|null |
||
| 154 | */ |
||
| 155 | private $champsCritereArticle25; |
||
| 156 | |||
| 157 | /** |
||
| 158 | * Champs critere article26. |
||
| 159 | * |
||
| 160 | * @var string|null |
||
| 161 | */ |
||
| 162 | private $champsCritereArticle26; |
||
| 163 | |||
| 164 | /** |
||
| 165 | * Champs critere article27. |
||
| 166 | * |
||
| 167 | * @var string|null |
||
| 168 | */ |
||
| 169 | private $champsCritereArticle27; |
||
| 170 | |||
| 171 | /** |
||
| 172 | * Champs critere article28. |
||
| 173 | * |
||
| 174 | * @var string|null |
||
| 175 | */ |
||
| 176 | private $champsCritereArticle28; |
||
| 177 | |||
| 178 | /** |
||
| 179 | * Champs critere article29. |
||
| 180 | * |
||
| 181 | * @var string|null |
||
| 182 | */ |
||
| 183 | private $champsCritereArticle29; |
||
| 184 | |||
| 185 | /** |
||
| 186 | * Champs critere ent piece ac1. |
||
| 187 | * |
||
| 188 | * @var string|null |
||
| 189 | */ |
||
| 190 | private $champsCritereEntPieceAc1; |
||
| 191 | |||
| 192 | /** |
||
| 193 | * Champs critere ent piece ac10. |
||
| 194 | * |
||
| 195 | * @var string|null |
||
| 196 | */ |
||
| 197 | private $champsCritereEntPieceAc10; |
||
| 198 | |||
| 199 | /** |
||
| 200 | * Champs critere ent piece ac2. |
||
| 201 | * |
||
| 202 | * @var string|null |
||
| 203 | */ |
||
| 204 | private $champsCritereEntPieceAc2; |
||
| 205 | |||
| 206 | /** |
||
| 207 | * Champs critere ent piece ac3. |
||
| 208 | * |
||
| 209 | * @var string|null |
||
| 210 | */ |
||
| 211 | private $champsCritereEntPieceAc3; |
||
| 212 | |||
| 213 | /** |
||
| 214 | * Champs critere ent piece ac4. |
||
| 215 | * |
||
| 216 | * @var string|null |
||
| 217 | */ |
||
| 218 | private $champsCritereEntPieceAc4; |
||
| 219 | |||
| 220 | /** |
||
| 221 | * Champs critere ent piece ac5. |
||
| 222 | * |
||
| 223 | * @var string|null |
||
| 224 | */ |
||
| 225 | private $champsCritereEntPieceAc5; |
||
| 226 | |||
| 227 | /** |
||
| 228 | * Champs critere ent piece ac6. |
||
| 229 | * |
||
| 230 | * @var string|null |
||
| 231 | */ |
||
| 232 | private $champsCritereEntPieceAc6; |
||
| 233 | |||
| 234 | /** |
||
| 235 | * Champs critere ent piece ac7. |
||
| 236 | * |
||
| 237 | * @var string|null |
||
| 238 | */ |
||
| 239 | private $champsCritereEntPieceAc7; |
||
| 240 | |||
| 241 | /** |
||
| 242 | * Champs critere ent piece ac8. |
||
| 243 | * |
||
| 244 | * @var string|null |
||
| 245 | */ |
||
| 246 | private $champsCritereEntPieceAc8; |
||
| 247 | |||
| 248 | /** |
||
| 249 | * Champs critere ent piece ac9. |
||
| 250 | * |
||
| 251 | * @var string|null |
||
| 252 | */ |
||
| 253 | private $champsCritereEntPieceAc9; |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Cle acces conf. |
||
| 257 | * |
||
| 258 | * @var string|null |
||
| 259 | */ |
||
| 260 | private $cleAccesConf; |
||
| 261 | |||
| 262 | /** |
||
| 263 | * Cle acces plaquettes. |
||
| 264 | * |
||
| 265 | * @var string|null |
||
| 266 | */ |
||
| 267 | private $cleAccesPlaquettes; |
||
| 268 | |||
| 269 | /** |
||
| 270 | * Cle acces q admin db. |
||
| 271 | * |
||
| 272 | * @var string|null |
||
| 273 | */ |
||
| 274 | private $cleAccesQAdminDb; |
||
| 275 | |||
| 276 | /** |
||
| 277 | * Cloture archivage auto. |
||
| 278 | * |
||
| 279 | * @var bool|null |
||
| 280 | */ |
||
| 281 | private $clotureArchivageAuto; |
||
| 282 | |||
| 283 | /** |
||
| 284 | * Code client quadratus. |
||
| 285 | * |
||
| 286 | * @var string|null |
||
| 287 | */ |
||
| 288 | private $codeClientQuadratus; |
||
| 289 | |||
| 290 | /** |
||
| 291 | * Compteur fil discussion. |
||
| 292 | * |
||
| 293 | * @var int|null |
||
| 294 | */ |
||
| 295 | private $compteurFilDiscussion; |
||
| 296 | |||
| 297 | /** |
||
| 298 | * Confidentialite affaire. |
||
| 299 | * |
||
| 300 | * @var bool|null |
||
| 301 | */ |
||
| 302 | private $confidentialiteAffaire; |
||
| 303 | |||
| 304 | /** |
||
| 305 | * Cout moyen horaire. |
||
| 306 | * |
||
| 307 | * @var float|null |
||
| 308 | */ |
||
| 309 | private $coutMoyenHoraire; |
||
| 310 | |||
| 311 | /** |
||
| 312 | * Create cli1 fact par bl. |
||
| 313 | * |
||
| 314 | * @var bool|null |
||
| 315 | */ |
||
| 316 | private $createCli1FactParBl; |
||
| 317 | |||
| 318 | /** |
||
| 319 | * Creation affaire. |
||
| 320 | * |
||
| 321 | * @var bool|null |
||
| 322 | */ |
||
| 323 | private $creationAffaire; |
||
| 324 | |||
| 325 | /** |
||
| 326 | * Date dha. |
||
| 327 | * |
||
| 328 | * @var DateTime|null |
||
| 329 | */ |
||
| 330 | private $dateDha; |
||
| 331 | |||
| 332 | /** |
||
| 333 | * Date last exe qpub web. |
||
| 334 | * |
||
| 335 | * @var DateTime|null |
||
| 336 | */ |
||
| 337 | private $dateLastExeQpubWeb; |
||
| 338 | |||
| 339 | /** |
||
| 340 | * Date pha. |
||
| 341 | * |
||
| 342 | * @var DateTime|null |
||
| 343 | */ |
||
| 344 | private $datePha; |
||
| 345 | |||
| 346 | /** |
||
| 347 | * Derniere version cd. |
||
| 348 | * |
||
| 349 | * @var string|null |
||
| 350 | */ |
||
| 351 | private $derniereVersionCd; |
||
| 352 | |||
| 353 | /** |
||
| 354 | * Droit collab visu documents. |
||
| 355 | * |
||
| 356 | * @var bool|null |
||
| 357 | */ |
||
| 358 | private $droitCollabVisuDocuments; |
||
| 359 | |||
| 360 | /** |
||
| 361 | * e ws cabinet. |
||
| 362 | * |
||
| 363 | * @var string|null |
||
| 364 | */ |
||
| 365 | private $eWsCabinet; |
||
| 366 | |||
| 367 | /** |
||
| 368 | * e ws coll id. |
||
| 369 | * |
||
| 370 | * @var string|null |
||
| 371 | */ |
||
| 372 | private $eWsCollId; |
||
| 373 | |||
| 374 | /** |
||
| 375 | * e ws coll mdp. |
||
| 376 | * |
||
| 377 | * @var string|null |
||
| 378 | */ |
||
| 379 | private $eWsCollMdp; |
||
| 380 | |||
| 381 | /** |
||
| 382 | * e ws srv mdp. |
||
| 383 | * |
||
| 384 | * @var string|null |
||
| 385 | */ |
||
| 386 | private $eWsSrvMdp; |
||
| 387 | |||
| 388 | /** |
||
| 389 | * e ws srv name. |
||
| 390 | * |
||
| 391 | * @var string|null |
||
| 392 | */ |
||
| 393 | private $eWsSrvName; |
||
| 394 | |||
| 395 | /** |
||
| 396 | * e ws srv util. |
||
| 397 | * |
||
| 398 | * @var string|null |
||
| 399 | */ |
||
| 400 | private $eWsSrvUtil; |
||
| 401 | |||
| 402 | /** |
||
| 403 | * Ech detail aff. |
||
| 404 | * |
||
| 405 | * @var bool|null |
||
| 406 | */ |
||
| 407 | private $echDetailAff; |
||
| 408 | |||
| 409 | /** |
||
| 410 | * Etebac dest message. |
||
| 411 | * |
||
| 412 | * @var string|null |
||
| 413 | */ |
||
| 414 | private $etebacDestMessage; |
||
| 415 | |||
| 416 | /** |
||
| 417 | * F gsur ac. |
||
| 418 | * |
||
| 419 | * @var bool|null |
||
| 420 | */ |
||
| 421 | private $fGsurAc; |
||
| 422 | |||
| 423 | /** |
||
| 424 | * F gsur monf. |
||
| 425 | * |
||
| 426 | * @var bool|null |
||
| 427 | */ |
||
| 428 | private $fGsurMonf; |
||
| 429 | |||
| 430 | /** |
||
| 431 | * Familles liees. |
||
| 432 | * |
||
| 433 | * @var bool|null |
||
| 434 | */ |
||
| 435 | private $famillesLiees; |
||
| 436 | |||
| 437 | /** |
||
| 438 | * Fg sur cde frn. |
||
| 439 | * |
||
| 440 | * @var bool|null |
||
| 441 | */ |
||
| 442 | private $fgSurCdeFrn; |
||
| 443 | |||
| 444 | /** |
||
| 445 | * Fiche cli ne pas proposer creation dpdc. |
||
| 446 | * |
||
| 447 | * @var bool|null |
||
| 448 | */ |
||
| 449 | private $ficheCliNePasProposerCreationDpdc; |
||
| 450 | |||
| 451 | /** |
||
| 452 | * Gestion gammes. |
||
| 453 | * |
||
| 454 | * @var bool|null |
||
| 455 | */ |
||
| 456 | private $gestionGammes; |
||
| 457 | |||
| 458 | /** |
||
| 459 | * Gestion pointeuse q fact. |
||
| 460 | * |
||
| 461 | * @var bool|null |
||
| 462 | */ |
||
| 463 | private $gestionPointeuseQFact; |
||
| 464 | |||
| 465 | /** |
||
| 466 | * Gestion pointeuse qc. |
||
| 467 | * |
||
| 468 | * @var bool|null |
||
| 469 | */ |
||
| 470 | private $gestionPointeuseQc; |
||
| 471 | |||
| 472 | /** |
||
| 473 | * Gestion pointeuse qgi. |
||
| 474 | * |
||
| 475 | * @var bool|null |
||
| 476 | */ |
||
| 477 | private $gestionPointeuseQgi; |
||
| 478 | |||
| 479 | /** |
||
| 480 | * Gestion pointeuse qp. |
||
| 481 | * |
||
| 482 | * @var bool|null |
||
| 483 | */ |
||
| 484 | private $gestionPointeuseQp; |
||
| 485 | |||
| 486 | /** |
||
| 487 | * Gestion tarifs transporteurs. |
||
| 488 | * |
||
| 489 | * @var bool|null |
||
| 490 | */ |
||
| 491 | private $gestionTarifsTransporteurs; |
||
| 492 | |||
| 493 | /** |
||
| 494 | * Gestion tarifs transporteurs nb dec. |
||
| 495 | * |
||
| 496 | * @var int|null |
||
| 497 | */ |
||
| 498 | private $gestionTarifsTransporteursNbDec; |
||
| 499 | |||
| 500 | /** |
||
| 501 | * Gestion variantes. |
||
| 502 | * |
||
| 503 | * @var bool|null |
||
| 504 | */ |
||
| 505 | private $gestionVariantes; |
||
| 506 | |||
| 507 | /** |
||
| 508 | * Ht avec jours feries. |
||
| 509 | * |
||
| 510 | * @var bool|null |
||
| 511 | */ |
||
| 512 | private $htAvecJoursFeries; |
||
| 513 | |||
| 514 | /** |
||
| 515 | * Ht avec saisie conges. |
||
| 516 | * |
||
| 517 | * @var bool|null |
||
| 518 | */ |
||
| 519 | private $htAvecSaisieConges; |
||
| 520 | |||
| 521 | /** |
||
| 522 | * Ht avec saisie conges codes clients. |
||
| 523 | * |
||
| 524 | * @var string|null |
||
| 525 | */ |
||
| 526 | private $htAvecSaisieCongesCodesClients; |
||
| 527 | |||
| 528 | /** |
||
| 529 | * Ht avec saisie conges codes taches. |
||
| 530 | * |
||
| 531 | * @var string|null |
||
| 532 | */ |
||
| 533 | private $htAvecSaisieCongesCodesTaches; |
||
| 534 | |||
| 535 | /** |
||
| 536 | * Increm auto article. |
||
| 537 | * |
||
| 538 | * @var bool|null |
||
| 539 | */ |
||
| 540 | private $incremAutoArticle; |
||
| 541 | |||
| 542 | /** |
||
| 543 | * Interdire acces archives cpta. |
||
| 544 | * |
||
| 545 | * @var bool|null |
||
| 546 | */ |
||
| 547 | private $interdireAccesArchivesCpta; |
||
| 548 | |||
| 549 | /** |
||
| 550 | * Interdire acces archives paie. |
||
| 551 | * |
||
| 552 | * @var bool|null |
||
| 553 | */ |
||
| 554 | private $interdireAccesArchivesPaie; |
||
| 555 | |||
| 556 | /** |
||
| 557 | * Interdire acces edition balance. |
||
| 558 | * |
||
| 559 | * @var bool|null |
||
| 560 | */ |
||
| 561 | private $interdireAccesEditionBalance; |
||
| 562 | |||
| 563 | /** |
||
| 564 | * Interdire acces supp doc arch. |
||
| 565 | * |
||
| 566 | * @var bool|null |
||
| 567 | */ |
||
| 568 | private $interdireAccesSuppDocArch; |
||
| 569 | |||
| 570 | /** |
||
| 571 | * Interdire publi doc web. |
||
| 572 | * |
||
| 573 | * @var bool|null |
||
| 574 | */ |
||
| 575 | private $interdirePubliDocWeb; |
||
| 576 | |||
| 577 | /** |
||
| 578 | * Ip prive qws. |
||
| 579 | * |
||
| 580 | * @var string|null |
||
| 581 | */ |
||
| 582 | private $ipPriveQws; |
||
| 583 | |||
| 584 | /** |
||
| 585 | * Liaison tda. |
||
| 586 | * |
||
| 587 | * @var bool|null |
||
| 588 | */ |
||
| 589 | private $liaisonTda; |
||
| 590 | |||
| 591 | /** |
||
| 592 | * Lib affectation frn1. |
||
| 593 | * |
||
| 594 | * @var string|null |
||
| 595 | */ |
||
| 596 | private $libAffectationFrn1; |
||
| 597 | |||
| 598 | /** |
||
| 599 | * Lib affectation frn2. |
||
| 600 | * |
||
| 601 | * @var string|null |
||
| 602 | */ |
||
| 603 | private $libAffectationFrn2; |
||
| 604 | |||
| 605 | /** |
||
| 606 | * Lib affectation frn3. |
||
| 607 | * |
||
| 608 | * @var string|null |
||
| 609 | */ |
||
| 610 | private $libAffectationFrn3; |
||
| 611 | |||
| 612 | /** |
||
| 613 | * Lib affectation frn4. |
||
| 614 | * |
||
| 615 | * @var string|null |
||
| 616 | */ |
||
| 617 | private $libAffectationFrn4; |
||
| 618 | |||
| 619 | /** |
||
| 620 | * Lib affectation frn5. |
||
| 621 | * |
||
| 622 | * @var string|null |
||
| 623 | */ |
||
| 624 | private $libAffectationFrn5; |
||
| 625 | |||
| 626 | /** |
||
| 627 | * Lib affectation frn6. |
||
| 628 | * |
||
| 629 | * @var string|null |
||
| 630 | */ |
||
| 631 | private $libAffectationFrn6; |
||
| 632 | |||
| 633 | /** |
||
| 634 | * Lib affectation frn7. |
||
| 635 | * |
||
| 636 | * @var string|null |
||
| 637 | */ |
||
| 638 | private $libAffectationFrn7; |
||
| 639 | |||
| 640 | /** |
||
| 641 | * Lib critere article21. |
||
| 642 | * |
||
| 643 | * @var string|null |
||
| 644 | */ |
||
| 645 | private $libCritereArticle21; |
||
| 646 | |||
| 647 | /** |
||
| 648 | * Lib critere article210. |
||
| 649 | * |
||
| 650 | * @var string|null |
||
| 651 | */ |
||
| 652 | private $libCritereArticle210; |
||
| 653 | |||
| 654 | /** |
||
| 655 | * Lib critere article22. |
||
| 656 | * |
||
| 657 | * @var string|null |
||
| 658 | */ |
||
| 659 | private $libCritereArticle22; |
||
| 660 | |||
| 661 | /** |
||
| 662 | * Lib critere article23. |
||
| 663 | * |
||
| 664 | * @var string|null |
||
| 665 | */ |
||
| 666 | private $libCritereArticle23; |
||
| 667 | |||
| 668 | /** |
||
| 669 | * Lib critere article24. |
||
| 670 | * |
||
| 671 | * @var string|null |
||
| 672 | */ |
||
| 673 | private $libCritereArticle24; |
||
| 674 | |||
| 675 | /** |
||
| 676 | * Lib critere article25. |
||
| 677 | * |
||
| 678 | * @var string|null |
||
| 679 | */ |
||
| 680 | private $libCritereArticle25; |
||
| 681 | |||
| 682 | /** |
||
| 683 | * Lib critere article26. |
||
| 684 | * |
||
| 685 | * @var string|null |
||
| 686 | */ |
||
| 687 | private $libCritereArticle26; |
||
| 688 | |||
| 689 | /** |
||
| 690 | * Lib critere article27. |
||
| 691 | * |
||
| 692 | * @var string|null |
||
| 693 | */ |
||
| 694 | private $libCritereArticle27; |
||
| 695 | |||
| 696 | /** |
||
| 697 | * Lib critere article28. |
||
| 698 | * |
||
| 699 | * @var string|null |
||
| 700 | */ |
||
| 701 | private $libCritereArticle28; |
||
| 702 | |||
| 703 | /** |
||
| 704 | * Lib critere article29. |
||
| 705 | * |
||
| 706 | * @var string|null |
||
| 707 | */ |
||
| 708 | private $libCritereArticle29; |
||
| 709 | |||
| 710 | /** |
||
| 711 | * Lib critere ent piece ac1. |
||
| 712 | * |
||
| 713 | * @var string|null |
||
| 714 | */ |
||
| 715 | private $libCritereEntPieceAc1; |
||
| 716 | |||
| 717 | /** |
||
| 718 | * Lib critere ent piece ac10. |
||
| 719 | * |
||
| 720 | * @var string|null |
||
| 721 | */ |
||
| 722 | private $libCritereEntPieceAc10; |
||
| 723 | |||
| 724 | /** |
||
| 725 | * Lib critere ent piece ac2. |
||
| 726 | * |
||
| 727 | * @var string|null |
||
| 728 | */ |
||
| 729 | private $libCritereEntPieceAc2; |
||
| 730 | |||
| 731 | /** |
||
| 732 | * Lib critere ent piece ac3. |
||
| 733 | * |
||
| 734 | * @var string|null |
||
| 735 | */ |
||
| 736 | private $libCritereEntPieceAc3; |
||
| 737 | |||
| 738 | /** |
||
| 739 | * Lib critere ent piece ac4. |
||
| 740 | * |
||
| 741 | * @var string|null |
||
| 742 | */ |
||
| 743 | private $libCritereEntPieceAc4; |
||
| 744 | |||
| 745 | /** |
||
| 746 | * Lib critere ent piece ac5. |
||
| 747 | * |
||
| 748 | * @var string|null |
||
| 749 | */ |
||
| 750 | private $libCritereEntPieceAc5; |
||
| 751 | |||
| 752 | /** |
||
| 753 | * Lib critere ent piece ac6. |
||
| 754 | * |
||
| 755 | * @var string|null |
||
| 756 | */ |
||
| 757 | private $libCritereEntPieceAc6; |
||
| 758 | |||
| 759 | /** |
||
| 760 | * Lib critere ent piece ac7. |
||
| 761 | * |
||
| 762 | * @var string|null |
||
| 763 | */ |
||
| 764 | private $libCritereEntPieceAc7; |
||
| 765 | |||
| 766 | /** |
||
| 767 | * Lib critere ent piece ac8. |
||
| 768 | * |
||
| 769 | * @var string|null |
||
| 770 | */ |
||
| 771 | private $libCritereEntPieceAc8; |
||
| 772 | |||
| 773 | /** |
||
| 774 | * Lib critere ent piece ac9. |
||
| 775 | * |
||
| 776 | * @var string|null |
||
| 777 | */ |
||
| 778 | private $libCritereEntPieceAc9; |
||
| 779 | |||
| 780 | /** |
||
| 781 | * Lib frais1. |
||
| 782 | * |
||
| 783 | * @var string|null |
||
| 784 | */ |
||
| 785 | private $libFrais1; |
||
| 786 | |||
| 787 | /** |
||
| 788 | * Lib frais2. |
||
| 789 | * |
||
| 790 | * @var string|null |
||
| 791 | */ |
||
| 792 | private $libFrais2; |
||
| 793 | |||
| 794 | /** |
||
| 795 | * Lib frais3. |
||
| 796 | * |
||
| 797 | * @var string|null |
||
| 798 | */ |
||
| 799 | private $libFrais3; |
||
| 800 | |||
| 801 | /** |
||
| 802 | * Libelle gamme. |
||
| 803 | * |
||
| 804 | * @var string|null |
||
| 805 | */ |
||
| 806 | private $libelleGamme; |
||
| 807 | |||
| 808 | /** |
||
| 809 | * Libelle variante. |
||
| 810 | * |
||
| 811 | * @var string|null |
||
| 812 | */ |
||
| 813 | private $libelleVariante; |
||
| 814 | |||
| 815 | /** |
||
| 816 | * lng code article auto. |
||
| 817 | * |
||
| 818 | * @var int|null |
||
| 819 | */ |
||
| 820 | private $lngCodeArticleAuto; |
||
| 821 | |||
| 822 | /** |
||
| 823 | * Longueur num aff. |
||
| 824 | * |
||
| 825 | * @var int|null |
||
| 826 | */ |
||
| 827 | private $longueurNumAff; |
||
| 828 | |||
| 829 | /** |
||
| 830 | * Maj codes activite cga. |
||
| 831 | * |
||
| 832 | * @var string|null |
||
| 833 | */ |
||
| 834 | private $majCodesActiviteCga; |
||
| 835 | |||
| 836 | /** |
||
| 837 | * Mess aspod. |
||
| 838 | * |
||
| 839 | * @var bool|null |
||
| 840 | */ |
||
| 841 | private $messAspod; |
||
| 842 | |||
| 843 | /** |
||
| 844 | * Modif affaire. |
||
| 845 | * |
||
| 846 | * @var string|null |
||
| 847 | */ |
||
| 848 | private $modifAffaire; |
||
| 849 | |||
| 850 | /** |
||
| 851 | * Modif droits asp. |
||
| 852 | * |
||
| 853 | * @var bool|null |
||
| 854 | */ |
||
| 855 | private $modifDroitsAsp; |
||
| 856 | |||
| 857 | /** |
||
| 858 | * Nb max gamme. |
||
| 859 | * |
||
| 860 | * @var int|null |
||
| 861 | */ |
||
| 862 | private $nbMaxGamme; |
||
| 863 | |||
| 864 | /** |
||
| 865 | * Ne pas creer cpt cli. |
||
| 866 | * |
||
| 867 | * @var bool|null |
||
| 868 | */ |
||
| 869 | private $nePasCreerCptCli; |
||
| 870 | |||
| 871 | /** |
||
| 872 | * Ne pas creer cpt frn. |
||
| 873 | * |
||
| 874 | * @var bool|null |
||
| 875 | */ |
||
| 876 | private $nePasCreerCptFrn; |
||
| 877 | |||
| 878 | /** |
||
| 879 | * New db infos. |
||
| 880 | * |
||
| 881 | * @var bool|null |
||
| 882 | */ |
||
| 883 | private $newDbInfos; |
||
| 884 | |||
| 885 | /** |
||
| 886 | * New q bureau. |
||
| 887 | * |
||
| 888 | * @var bool|null |
||
| 889 | */ |
||
| 890 | private $newQBureau; |
||
| 891 | |||
| 892 | /** |
||
| 893 | * No doss fact cab. |
||
| 894 | * |
||
| 895 | * @var string|null |
||
| 896 | */ |
||
| 897 | private $noDossFactCab; |
||
| 898 | |||
| 899 | /** |
||
| 900 | * Pas de lien comptabilite. |
||
| 901 | * |
||
| 902 | * @var bool|null |
||
| 903 | */ |
||
| 904 | private $pasDeLienComptabilite; |
||
| 905 | |||
| 906 | /** |
||
| 907 | * Pme dossier rattachement. |
||
| 908 | * |
||
| 909 | * @var string|null |
||
| 910 | */ |
||
| 911 | private $pmeDossierRattachement; |
||
| 912 | |||
| 913 | /** |
||
| 914 | * Prefixe code client. |
||
| 915 | * |
||
| 916 | * @var string|null |
||
| 917 | */ |
||
| 918 | private $prefixeCodeClient; |
||
| 919 | |||
| 920 | /** |
||
| 921 | * Prochain code client. |
||
| 922 | * |
||
| 923 | * @var string|null |
||
| 924 | */ |
||
| 925 | private $prochainCodeClient; |
||
| 926 | |||
| 927 | /** |
||
| 928 | * Proxy actif. |
||
| 929 | * |
||
| 930 | * @var bool|null |
||
| 931 | */ |
||
| 932 | private $proxyActif; |
||
| 933 | |||
| 934 | /** |
||
| 935 | * Proxy adresse. |
||
| 936 | * |
||
| 937 | * @var string|null |
||
| 938 | */ |
||
| 939 | private $proxyAdresse; |
||
| 940 | |||
| 941 | /** |
||
| 942 | * Proxy port. |
||
| 943 | * |
||
| 944 | * @var int|null |
||
| 945 | */ |
||
| 946 | private $proxyPort; |
||
| 947 | |||
| 948 | /** |
||
| 949 | * Q pub web code collaborateur dest. |
||
| 950 | * |
||
| 951 | * @var string|null |
||
| 952 | */ |
||
| 953 | private $qPubWebCodeCollaborateurDest; |
||
| 954 | |||
| 955 | /** |
||
| 956 | * Qws chemin logo. |
||
| 957 | * |
||
| 958 | * @var string|null |
||
| 959 | */ |
||
| 960 | private $qwsCheminLogo; |
||
| 961 | |||
| 962 | /** |
||
| 963 | * Qws code ipl. |
||
| 964 | * |
||
| 965 | * @var string|null |
||
| 966 | */ |
||
| 967 | private $qwsCodeIpl; |
||
| 968 | |||
| 969 | /** |
||
| 970 | * Qws http securise. |
||
| 971 | * |
||
| 972 | * @var bool|null |
||
| 973 | */ |
||
| 974 | private $qwsHttpSecurise; |
||
| 975 | |||
| 976 | /** |
||
| 977 | * Qws nom produit. |
||
| 978 | * |
||
| 979 | * @var string|null |
||
| 980 | */ |
||
| 981 | private $qwsNomProduit; |
||
| 982 | |||
| 983 | /** |
||
| 984 | * Qws utiliser logo cabinet. |
||
| 985 | * |
||
| 986 | * @var bool|null |
||
| 987 | */ |
||
| 988 | private $qwsUtiliserLogoCabinet; |
||
| 989 | |||
| 990 | /** |
||
| 991 | * Qwsipl. |
||
| 992 | * |
||
| 993 | * @var string|null |
||
| 994 | */ |
||
| 995 | private $qwsipl; |
||
| 996 | |||
| 997 | /** |
||
| 998 | * Rac data paie. |
||
| 999 | * |
||
| 1000 | * @var string|null |
||
| 1001 | */ |
||
| 1002 | private $racDataPaie; |
||
| 1003 | |||
| 1004 | /** |
||
| 1005 | * Rapport q infos. |
||
| 1006 | * |
||
| 1007 | * @var string|null |
||
| 1008 | */ |
||
| 1009 | private $rapportQInfos; |
||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * Req demandeur. |
||
| 1013 | * |
||
| 1014 | * @var string|null |
||
| 1015 | */ |
||
| 1016 | private $reqDemandeur; |
||
| 1017 | |||
| 1018 | /** |
||
| 1019 | * Saisie propriete mess. |
||
| 1020 | * |
||
| 1021 | * @var int|null |
||
| 1022 | */ |
||
| 1023 | private $saisieProprieteMess; |
||
| 1024 | |||
| 1025 | /** |
||
| 1026 | * Saisie regl direct. |
||
| 1027 | * |
||
| 1028 | * @var bool|null |
||
| 1029 | */ |
||
| 1030 | private $saisieReglDirect; |
||
| 1031 | |||
| 1032 | /** |
||
| 1033 | * Saisie temps nb j apres. |
||
| 1034 | * |
||
| 1035 | * @var int|null |
||
| 1036 | */ |
||
| 1037 | private $saisieTempsNbJApres; |
||
| 1038 | |||
| 1039 | /** |
||
| 1040 | * Saisie temps nb j avant. |
||
| 1041 | * |
||
| 1042 | * @var int|null |
||
| 1043 | */ |
||
| 1044 | private $saisieTempsNbJAvant; |
||
| 1045 | |||
| 1046 | /** |
||
| 1047 | * Saisie tp ne pas afficher dp. |
||
| 1048 | * |
||
| 1049 | * @var bool|null |
||
| 1050 | */ |
||
| 1051 | private $saisieTpNePasAfficherDp; |
||
| 1052 | |||
| 1053 | /** |
||
| 1054 | * Saisie tp onglet unique dp. |
||
| 1055 | * |
||
| 1056 | * @var bool|null |
||
| 1057 | */ |
||
| 1058 | private $saisieTpOngletUniqueDp; |
||
| 1059 | |||
| 1060 | /** |
||
| 1061 | * Saisie tp onglet unique tn. |
||
| 1062 | * |
||
| 1063 | * @var bool|null |
||
| 1064 | */ |
||
| 1065 | private $saisieTpOngletUniqueTn; |
||
| 1066 | |||
| 1067 | /** |
||
| 1068 | * Save histo memo2 file. |
||
| 1069 | * |
||
| 1070 | * @var bool|null |
||
| 1071 | */ |
||
| 1072 | private $saveHistoMemo2File; |
||
| 1073 | |||
| 1074 | /** |
||
| 1075 | * Sel av lst perso acces gestion modifiables. |
||
| 1076 | * |
||
| 1077 | * @var bool|null |
||
| 1078 | */ |
||
| 1079 | private $selAvLstPersoAccesGestionModifiables; |
||
| 1080 | |||
| 1081 | /** |
||
| 1082 | * Sel av lst perso acces gestionnaire. |
||
| 1083 | * |
||
| 1084 | * @var bool|null |
||
| 1085 | */ |
||
| 1086 | private $selAvLstPersoAccesGestionnaire; |
||
| 1087 | |||
| 1088 | /** |
||
| 1089 | * Sel av lst perso champs modif. |
||
| 1090 | * |
||
| 1091 | * @var bool|null |
||
| 1092 | */ |
||
| 1093 | private $selAvLstPersoChampsModif; |
||
| 1094 | |||
| 1095 | /** |
||
| 1096 | * Sel av lst perso copie colonne. |
||
| 1097 | * |
||
| 1098 | * @var bool|null |
||
| 1099 | */ |
||
| 1100 | private $selAvLstPersoCopieColonne; |
||
| 1101 | |||
| 1102 | /** |
||
| 1103 | * Sel av lst perso interdire creat. |
||
| 1104 | * |
||
| 1105 | * @var bool|null |
||
| 1106 | */ |
||
| 1107 | private $selAvLstPersoInterdireCreat; |
||
| 1108 | |||
| 1109 | /** |
||
| 1110 | * Sms api key. |
||
| 1111 | * |
||
| 1112 | * @var string|null |
||
| 1113 | */ |
||
| 1114 | private $smsApiKey; |
||
| 1115 | |||
| 1116 | /** |
||
| 1117 | * Sms droit acces. |
||
| 1118 | * |
||
| 1119 | * @var bool|null |
||
| 1120 | */ |
||
| 1121 | private $smsDroitAcces; |
||
| 1122 | |||
| 1123 | /** |
||
| 1124 | * Sms key. |
||
| 1125 | * |
||
| 1126 | * @var string|null |
||
| 1127 | */ |
||
| 1128 | private $smsKey; |
||
| 1129 | |||
| 1130 | /** |
||
| 1131 | * Sms prestataire. |
||
| 1132 | * |
||
| 1133 | * @var string|null |
||
| 1134 | */ |
||
| 1135 | private $smsPrestataire; |
||
| 1136 | |||
| 1137 | /** |
||
| 1138 | * Sms sender. |
||
| 1139 | * |
||
| 1140 | * @var string|null |
||
| 1141 | */ |
||
| 1142 | private $smsSender; |
||
| 1143 | |||
| 1144 | /** |
||
| 1145 | * Sms type. |
||
| 1146 | * |
||
| 1147 | * @var int|null |
||
| 1148 | */ |
||
| 1149 | private $smsType; |
||
| 1150 | |||
| 1151 | /** |
||
| 1152 | * Sms user login. |
||
| 1153 | * |
||
| 1154 | * @var string|null |
||
| 1155 | */ |
||
| 1156 | private $smsUserLogin; |
||
| 1157 | |||
| 1158 | /** |
||
| 1159 | * Solde cpta od. |
||
| 1160 | * |
||
| 1161 | * @var bool|null |
||
| 1162 | */ |
||
| 1163 | private $soldeCptaOd; |
||
| 1164 | |||
| 1165 | /** |
||
| 1166 | * Suivi client intitule generic1. |
||
| 1167 | * |
||
| 1168 | * @var string|null |
||
| 1169 | */ |
||
| 1170 | private $suiviClientIntituleGeneric1; |
||
| 1171 | |||
| 1172 | /** |
||
| 1173 | * Suivi client intitule generic10. |
||
| 1174 | * |
||
| 1175 | * @var string|null |
||
| 1176 | */ |
||
| 1177 | private $suiviClientIntituleGeneric10; |
||
| 1178 | |||
| 1179 | /** |
||
| 1180 | * Suivi client intitule generic2. |
||
| 1181 | * |
||
| 1182 | * @var string|null |
||
| 1183 | */ |
||
| 1184 | private $suiviClientIntituleGeneric2; |
||
| 1185 | |||
| 1186 | /** |
||
| 1187 | * Suivi client intitule generic3. |
||
| 1188 | * |
||
| 1189 | * @var string|null |
||
| 1190 | */ |
||
| 1191 | private $suiviClientIntituleGeneric3; |
||
| 1192 | |||
| 1193 | /** |
||
| 1194 | * Suivi client intitule generic4. |
||
| 1195 | * |
||
| 1196 | * @var string|null |
||
| 1197 | */ |
||
| 1198 | private $suiviClientIntituleGeneric4; |
||
| 1199 | |||
| 1200 | /** |
||
| 1201 | * Suivi client intitule generic5. |
||
| 1202 | * |
||
| 1203 | * @var string|null |
||
| 1204 | */ |
||
| 1205 | private $suiviClientIntituleGeneric5; |
||
| 1206 | |||
| 1207 | /** |
||
| 1208 | * Suivi client intitule generic6. |
||
| 1209 | * |
||
| 1210 | * @var string|null |
||
| 1211 | */ |
||
| 1212 | private $suiviClientIntituleGeneric6; |
||
| 1213 | |||
| 1214 | /** |
||
| 1215 | * Suivi client intitule generic7. |
||
| 1216 | * |
||
| 1217 | * @var string|null |
||
| 1218 | */ |
||
| 1219 | private $suiviClientIntituleGeneric7; |
||
| 1220 | |||
| 1221 | /** |
||
| 1222 | * Suivi client intitule generic8. |
||
| 1223 | * |
||
| 1224 | * @var string|null |
||
| 1225 | */ |
||
| 1226 | private $suiviClientIntituleGeneric8; |
||
| 1227 | |||
| 1228 | /** |
||
| 1229 | * Suivi client intitule generic9. |
||
| 1230 | * |
||
| 1231 | * @var string|null |
||
| 1232 | */ |
||
| 1233 | private $suiviClientIntituleGeneric9; |
||
| 1234 | |||
| 1235 | /** |
||
| 1236 | * Tp acces encours client. |
||
| 1237 | * |
||
| 1238 | * @var bool|null |
||
| 1239 | */ |
||
| 1240 | private $tpAccesEncoursClient; |
||
| 1241 | |||
| 1242 | /** |
||
| 1243 | * Tp avancement a la ligne. |
||
| 1244 | * |
||
| 1245 | * @var bool|null |
||
| 1246 | */ |
||
| 1247 | private $tpAvancementALaLigne; |
||
| 1248 | |||
| 1249 | /** |
||
| 1250 | * Tp interdit qte. |
||
| 1251 | * |
||
| 1252 | * @var bool|null |
||
| 1253 | */ |
||
| 1254 | private $tpInterditQte; |
||
| 1255 | |||
| 1256 | /** |
||
| 1257 | * Tp libelle mission. |
||
| 1258 | * |
||
| 1259 | * @var bool|null |
||
| 1260 | */ |
||
| 1261 | private $tpLibelleMission; |
||
| 1262 | |||
| 1263 | /** |
||
| 1264 | * Tp limite saisie non operationnel. |
||
| 1265 | * |
||
| 1266 | * @var bool|null |
||
| 1267 | */ |
||
| 1268 | private $tpLimiteSaisieNonOperationnel; |
||
| 1269 | |||
| 1270 | /** |
||
| 1271 | * Tp pas mois cloture. |
||
| 1272 | * |
||
| 1273 | * @var bool|null |
||
| 1274 | */ |
||
| 1275 | private $tpPasMoisCloture; |
||
| 1276 | |||
| 1277 | /** |
||
| 1278 | * Tp pourcentage non operationnel date. |
||
| 1279 | * |
||
| 1280 | * @var DateTime|null |
||
| 1281 | */ |
||
| 1282 | private $tpPourcentageNonOperationnelDate; |
||
| 1283 | |||
| 1284 | /** |
||
| 1285 | * Tp qte invisible. |
||
| 1286 | * |
||
| 1287 | * @var bool|null |
||
| 1288 | */ |
||
| 1289 | private $tpQteInvisible; |
||
| 1290 | |||
| 1291 | /** |
||
| 1292 | * Tp saisie avancement. |
||
| 1293 | * |
||
| 1294 | * @var bool|null |
||
| 1295 | */ |
||
| 1296 | private $tpSaisieAvancement; |
||
| 1297 | |||
| 1298 | /** |
||
| 1299 | * Tppupv123. |
||
| 1300 | * |
||
| 1301 | * @var bool|null |
||
| 1302 | */ |
||
| 1303 | private $tppupv123; |
||
| 1304 | |||
| 1305 | /** |
||
| 1306 | * Tps num archive. |
||
| 1307 | * |
||
| 1308 | * @var string|null |
||
| 1309 | */ |
||
| 1310 | private $tpsNumArchive; |
||
| 1311 | |||
| 1312 | /** |
||
| 1313 | * Trans variantes factgi. |
||
| 1314 | * |
||
| 1315 | * @var bool|null |
||
| 1316 | */ |
||
| 1317 | private $transVariantesFactgi; |
||
| 1318 | |||
| 1319 | /** |
||
| 1320 | * Type affichage solde fourn. |
||
| 1321 | * |
||
| 1322 | * @var string|null |
||
| 1323 | */ |
||
| 1324 | private $typeAffichageSoldeFourn; |
||
| 1325 | |||
| 1326 | /** |
||
| 1327 | * Type frais1. |
||
| 1328 | * |
||
| 1329 | * @var bool|null |
||
| 1330 | */ |
||
| 1331 | private $typeFrais1; |
||
| 1332 | |||
| 1333 | /** |
||
| 1334 | * Type frais2. |
||
| 1335 | * |
||
| 1336 | * @var bool|null |
||
| 1337 | */ |
||
| 1338 | private $typeFrais2; |
||
| 1339 | |||
| 1340 | /** |
||
| 1341 | * Type frais3. |
||
| 1342 | * |
||
| 1343 | * @var bool|null |
||
| 1344 | */ |
||
| 1345 | private $typeFrais3; |
||
| 1346 | |||
| 1347 | /** |
||
| 1348 | * Type saisie taux devises. |
||
| 1349 | * |
||
| 1350 | * @var string|null |
||
| 1351 | */ |
||
| 1352 | private $typeSaisieTauxDevises; |
||
| 1353 | |||
| 1354 | /** |
||
| 1355 | * V esur dep aff. |
||
| 1356 | * |
||
| 1357 | * @var bool|null |
||
| 1358 | */ |
||
| 1359 | private $vEsurDepAff; |
||
| 1360 | |||
| 1361 | /** |
||
| 1362 | * Val auto tarifs transporteurs. |
||
| 1363 | * |
||
| 1364 | * @var bool|null |
||
| 1365 | */ |
||
| 1366 | private $valAutoTarifsTransporteurs; |
||
| 1367 | |||
| 1368 | /** |
||
| 1369 | * Visualisation fiche cabinet. |
||
| 1370 | * |
||
| 1371 | * @var bool|null |
||
| 1372 | */ |
||
| 1373 | private $visualisationFicheCabinet; |
||
| 1374 | |||
| 1375 | /** |
||
| 1376 | * Word acces par q client. |
||
| 1377 | * |
||
| 1378 | * @var bool|null |
||
| 1379 | */ |
||
| 1380 | private $wordAccesParQClient; |
||
| 1381 | |||
| 1382 | /** |
||
| 1383 | * Constructor. |
||
| 1384 | */ |
||
| 1385 | public function __construct() { |
||
| 1388 | |||
| 1389 | /** |
||
| 1390 | * Get the activation conf2 cmav cli. |
||
| 1391 | * |
||
| 1392 | * @return bool|null Returns the activation conf2 cmav cli. |
||
| 1393 | */ |
||
| 1394 | public function getActivationConf2CmavCli(): ?bool { |
||
| 1397 | |||
| 1398 | /** |
||
| 1399 | * Get the active conf conv col. |
||
| 1400 | * |
||
| 1401 | * @return bool|null Returns the active conf conv col. |
||
| 1402 | */ |
||
| 1403 | public function getActiveConfConvCol(): ?bool { |
||
| 1406 | |||
| 1407 | /** |
||
| 1408 | * Get the activer saisie regl. |
||
| 1409 | * |
||
| 1410 | * @return bool|null Returns the activer saisie regl. |
||
| 1411 | */ |
||
| 1412 | public function getActiverSaisieRegl(): ?bool { |
||
| 1415 | |||
| 1416 | /** |
||
| 1417 | * Get the affectations cli frn. |
||
| 1418 | * |
||
| 1419 | * @return bool|null Returns the affectations cli frn. |
||
| 1420 | */ |
||
| 1421 | public function getAffectationsCliFrn(): ?bool { |
||
| 1424 | |||
| 1425 | /** |
||
| 1426 | * Get the annulation affaire. |
||
| 1427 | * |
||
| 1428 | * @return bool|null Returns the annulation affaire. |
||
| 1429 | */ |
||
| 1430 | public function getAnnulationAffaire(): ?bool { |
||
| 1433 | |||
| 1434 | /** |
||
| 1435 | * Get the articles lst perso acces gestion modifiables. |
||
| 1436 | * |
||
| 1437 | * @return bool|null Returns the articles lst perso acces gestion modifiables. |
||
| 1438 | */ |
||
| 1439 | public function getArticlesLstPersoAccesGestionModifiables(): ?bool { |
||
| 1442 | |||
| 1443 | /** |
||
| 1444 | * Get the articles lst perso acces gestionnaire. |
||
| 1445 | * |
||
| 1446 | * @return bool|null Returns the articles lst perso acces gestionnaire. |
||
| 1447 | */ |
||
| 1448 | public function getArticlesLstPersoAccesGestionnaire(): ?bool { |
||
| 1451 | |||
| 1452 | /** |
||
| 1453 | * Get the articles lst perso champs modif. |
||
| 1454 | * |
||
| 1455 | * @return bool|null Returns the articles lst perso champs modif. |
||
| 1456 | */ |
||
| 1457 | public function getArticlesLstPersoChampsModif(): ?bool { |
||
| 1460 | |||
| 1461 | /** |
||
| 1462 | * Get the articles lst perso copie colonne. |
||
| 1463 | * |
||
| 1464 | * @return bool|null Returns the articles lst perso copie colonne. |
||
| 1465 | */ |
||
| 1466 | public function getArticlesLstPersoCopieColonne(): ?bool { |
||
| 1469 | |||
| 1470 | /** |
||
| 1471 | * Get the articles lst perso interdire creat. |
||
| 1472 | * |
||
| 1473 | * @return bool|null Returns the articles lst perso interdire creat. |
||
| 1474 | */ |
||
| 1475 | public function getArticlesLstPersoInterdireCreat(): ?bool { |
||
| 1478 | |||
| 1479 | /** |
||
| 1480 | * Get the asp affectation messages. |
||
| 1481 | * |
||
| 1482 | * @return string|null Returns the asp affectation messages. |
||
| 1483 | */ |
||
| 1484 | public function getAspAffectationMessages(): ?string { |
||
| 1487 | |||
| 1488 | /** |
||
| 1489 | * Get the avec heures theo. |
||
| 1490 | * |
||
| 1491 | * @return bool|null Returns the avec heures theo. |
||
| 1492 | */ |
||
| 1493 | public function getAvecHeuresTheo(): ?bool { |
||
| 1496 | |||
| 1497 | /** |
||
| 1498 | * Get the calcul nombre messages. |
||
| 1499 | * |
||
| 1500 | * @return bool|null Returns the calcul nombre messages. |
||
| 1501 | */ |
||
| 1502 | public function getCalculNombreMessages(): ?bool { |
||
| 1505 | |||
| 1506 | /** |
||
| 1507 | * Get the champs critere article21. |
||
| 1508 | * |
||
| 1509 | * @return string|null Returns the champs critere article21. |
||
| 1510 | */ |
||
| 1511 | public function getChampsCritereArticle21(): ?string { |
||
| 1514 | |||
| 1515 | /** |
||
| 1516 | * Get the champs critere article210. |
||
| 1517 | * |
||
| 1518 | * @return string|null Returns the champs critere article210. |
||
| 1519 | */ |
||
| 1520 | public function getChampsCritereArticle210(): ?string { |
||
| 1523 | |||
| 1524 | /** |
||
| 1525 | * Get the champs critere article22. |
||
| 1526 | * |
||
| 1527 | * @return string|null Returns the champs critere article22. |
||
| 1528 | */ |
||
| 1529 | public function getChampsCritereArticle22(): ?string { |
||
| 1532 | |||
| 1533 | /** |
||
| 1534 | * Get the champs critere article23. |
||
| 1535 | * |
||
| 1536 | * @return string|null Returns the champs critere article23. |
||
| 1537 | */ |
||
| 1538 | public function getChampsCritereArticle23(): ?string { |
||
| 1541 | |||
| 1542 | /** |
||
| 1543 | * Get the champs critere article24. |
||
| 1544 | * |
||
| 1545 | * @return string|null Returns the champs critere article24. |
||
| 1546 | */ |
||
| 1547 | public function getChampsCritereArticle24(): ?string { |
||
| 1550 | |||
| 1551 | /** |
||
| 1552 | * Get the champs critere article25. |
||
| 1553 | * |
||
| 1554 | * @return string|null Returns the champs critere article25. |
||
| 1555 | */ |
||
| 1556 | public function getChampsCritereArticle25(): ?string { |
||
| 1559 | |||
| 1560 | /** |
||
| 1561 | * Get the champs critere article26. |
||
| 1562 | * |
||
| 1563 | * @return string|null Returns the champs critere article26. |
||
| 1564 | */ |
||
| 1565 | public function getChampsCritereArticle26(): ?string { |
||
| 1568 | |||
| 1569 | /** |
||
| 1570 | * Get the champs critere article27. |
||
| 1571 | * |
||
| 1572 | * @return string|null Returns the champs critere article27. |
||
| 1573 | */ |
||
| 1574 | public function getChampsCritereArticle27(): ?string { |
||
| 1577 | |||
| 1578 | /** |
||
| 1579 | * Get the champs critere article28. |
||
| 1580 | * |
||
| 1581 | * @return string|null Returns the champs critere article28. |
||
| 1582 | */ |
||
| 1583 | public function getChampsCritereArticle28(): ?string { |
||
| 1586 | |||
| 1587 | /** |
||
| 1588 | * Get the champs critere article29. |
||
| 1589 | * |
||
| 1590 | * @return string|null Returns the champs critere article29. |
||
| 1591 | */ |
||
| 1592 | public function getChampsCritereArticle29(): ?string { |
||
| 1595 | |||
| 1596 | /** |
||
| 1597 | * Get the champs critere ent piece ac1. |
||
| 1598 | * |
||
| 1599 | * @return string|null Returns the champs critere ent piece ac1. |
||
| 1600 | */ |
||
| 1601 | public function getChampsCritereEntPieceAc1(): ?string { |
||
| 1604 | |||
| 1605 | /** |
||
| 1606 | * Get the champs critere ent piece ac10. |
||
| 1607 | * |
||
| 1608 | * @return string|null Returns the champs critere ent piece ac10. |
||
| 1609 | */ |
||
| 1610 | public function getChampsCritereEntPieceAc10(): ?string { |
||
| 1613 | |||
| 1614 | /** |
||
| 1615 | * Get the champs critere ent piece ac2. |
||
| 1616 | * |
||
| 1617 | * @return string|null Returns the champs critere ent piece ac2. |
||
| 1618 | */ |
||
| 1619 | public function getChampsCritereEntPieceAc2(): ?string { |
||
| 1622 | |||
| 1623 | /** |
||
| 1624 | * Get the champs critere ent piece ac3. |
||
| 1625 | * |
||
| 1626 | * @return string|null Returns the champs critere ent piece ac3. |
||
| 1627 | */ |
||
| 1628 | public function getChampsCritereEntPieceAc3(): ?string { |
||
| 1631 | |||
| 1632 | /** |
||
| 1633 | * Get the champs critere ent piece ac4. |
||
| 1634 | * |
||
| 1635 | * @return string|null Returns the champs critere ent piece ac4. |
||
| 1636 | */ |
||
| 1637 | public function getChampsCritereEntPieceAc4(): ?string { |
||
| 1640 | |||
| 1641 | /** |
||
| 1642 | * Get the champs critere ent piece ac5. |
||
| 1643 | * |
||
| 1644 | * @return string|null Returns the champs critere ent piece ac5. |
||
| 1645 | */ |
||
| 1646 | public function getChampsCritereEntPieceAc5(): ?string { |
||
| 1649 | |||
| 1650 | /** |
||
| 1651 | * Get the champs critere ent piece ac6. |
||
| 1652 | * |
||
| 1653 | * @return string|null Returns the champs critere ent piece ac6. |
||
| 1654 | */ |
||
| 1655 | public function getChampsCritereEntPieceAc6(): ?string { |
||
| 1658 | |||
| 1659 | /** |
||
| 1660 | * Get the champs critere ent piece ac7. |
||
| 1661 | * |
||
| 1662 | * @return string|null Returns the champs critere ent piece ac7. |
||
| 1663 | */ |
||
| 1664 | public function getChampsCritereEntPieceAc7(): ?string { |
||
| 1667 | |||
| 1668 | /** |
||
| 1669 | * Get the champs critere ent piece ac8. |
||
| 1670 | * |
||
| 1671 | * @return string|null Returns the champs critere ent piece ac8. |
||
| 1672 | */ |
||
| 1673 | public function getChampsCritereEntPieceAc8(): ?string { |
||
| 1676 | |||
| 1677 | /** |
||
| 1678 | * Get the champs critere ent piece ac9. |
||
| 1679 | * |
||
| 1680 | * @return string|null Returns the champs critere ent piece ac9. |
||
| 1681 | */ |
||
| 1682 | public function getChampsCritereEntPieceAc9(): ?string { |
||
| 1685 | |||
| 1686 | /** |
||
| 1687 | * Get the cle acces conf. |
||
| 1688 | * |
||
| 1689 | * @return string|null Returns the cle acces conf. |
||
| 1690 | */ |
||
| 1691 | public function getCleAccesConf(): ?string { |
||
| 1694 | |||
| 1695 | /** |
||
| 1696 | * Get the cle acces plaquettes. |
||
| 1697 | * |
||
| 1698 | * @return string|null Returns the cle acces plaquettes. |
||
| 1699 | */ |
||
| 1700 | public function getCleAccesPlaquettes(): ?string { |
||
| 1703 | |||
| 1704 | /** |
||
| 1705 | * Get the cle acces q admin db. |
||
| 1706 | * |
||
| 1707 | * @return string|null Returns the cle acces q admin db. |
||
| 1708 | */ |
||
| 1709 | public function getCleAccesQAdminDb(): ?string { |
||
| 1712 | |||
| 1713 | /** |
||
| 1714 | * Get the cloture archivage auto. |
||
| 1715 | * |
||
| 1716 | * @return bool|null Returns the cloture archivage auto. |
||
| 1717 | */ |
||
| 1718 | public function getClotureArchivageAuto(): ?bool { |
||
| 1721 | |||
| 1722 | /** |
||
| 1723 | * Get the code client quadratus. |
||
| 1724 | * |
||
| 1725 | * @return string|null Returns the code client quadratus. |
||
| 1726 | */ |
||
| 1727 | public function getCodeClientQuadratus(): ?string { |
||
| 1730 | |||
| 1731 | /** |
||
| 1732 | * Get the compteur fil discussion. |
||
| 1733 | * |
||
| 1734 | * @return int|null Returns the compteur fil discussion. |
||
| 1735 | */ |
||
| 1736 | public function getCompteurFilDiscussion(): ?int { |
||
| 1739 | |||
| 1740 | /** |
||
| 1741 | * Get the confidentialite affaire. |
||
| 1742 | * |
||
| 1743 | * @return bool|null Returns the confidentialite affaire. |
||
| 1744 | */ |
||
| 1745 | public function getConfidentialiteAffaire(): ?bool { |
||
| 1748 | |||
| 1749 | /** |
||
| 1750 | * Get the cout moyen horaire. |
||
| 1751 | * |
||
| 1752 | * @return float|null Returns the cout moyen horaire. |
||
| 1753 | */ |
||
| 1754 | public function getCoutMoyenHoraire(): ?float { |
||
| 1757 | |||
| 1758 | /** |
||
| 1759 | * Get the create cli1 fact par bl. |
||
| 1760 | * |
||
| 1761 | * @return bool|null Returns the create cli1 fact par bl. |
||
| 1762 | */ |
||
| 1763 | public function getCreateCli1FactParBl(): ?bool { |
||
| 1766 | |||
| 1767 | /** |
||
| 1768 | * Get the creation affaire. |
||
| 1769 | * |
||
| 1770 | * @return bool|null Returns the creation affaire. |
||
| 1771 | */ |
||
| 1772 | public function getCreationAffaire(): ?bool { |
||
| 1775 | |||
| 1776 | /** |
||
| 1777 | * Get the date dha. |
||
| 1778 | * |
||
| 1779 | * @return DateTime|null Returns the date dha. |
||
| 1780 | */ |
||
| 1781 | public function getDateDha(): ?DateTime { |
||
| 1784 | |||
| 1785 | /** |
||
| 1786 | * Get the date last exe qpub web. |
||
| 1787 | * |
||
| 1788 | * @return DateTime|null Returns the date last exe qpub web. |
||
| 1789 | */ |
||
| 1790 | public function getDateLastExeQpubWeb(): ?DateTime { |
||
| 1793 | |||
| 1794 | /** |
||
| 1795 | * Get the date pha. |
||
| 1796 | * |
||
| 1797 | * @return DateTime|null Returns the date pha. |
||
| 1798 | */ |
||
| 1799 | public function getDatePha(): ?DateTime { |
||
| 1802 | |||
| 1803 | /** |
||
| 1804 | * Get the derniere version cd. |
||
| 1805 | * |
||
| 1806 | * @return string|null Returns the derniere version cd. |
||
| 1807 | */ |
||
| 1808 | public function getDerniereVersionCd(): ?string { |
||
| 1811 | |||
| 1812 | /** |
||
| 1813 | * Get the droit collab visu documents. |
||
| 1814 | * |
||
| 1815 | * @return bool|null Returns the droit collab visu documents. |
||
| 1816 | */ |
||
| 1817 | public function getDroitCollabVisuDocuments(): ?bool { |
||
| 1820 | |||
| 1821 | /** |
||
| 1822 | * Get the ech detail aff. |
||
| 1823 | * |
||
| 1824 | * @return bool|null Returns the ech detail aff. |
||
| 1825 | */ |
||
| 1826 | public function getEchDetailAff(): ?bool { |
||
| 1829 | |||
| 1830 | /** |
||
| 1831 | * Get the etebac dest message. |
||
| 1832 | * |
||
| 1833 | * @return string|null Returns the etebac dest message. |
||
| 1834 | */ |
||
| 1835 | public function getEtebacDestMessage(): ?string { |
||
| 1838 | |||
| 1839 | /** |
||
| 1840 | * Get the f gsur ac. |
||
| 1841 | * |
||
| 1842 | * @return bool|null Returns the f gsur ac. |
||
| 1843 | */ |
||
| 1844 | public function getFGsurAc(): ?bool { |
||
| 1847 | |||
| 1848 | /** |
||
| 1849 | * Get the f gsur monf. |
||
| 1850 | * |
||
| 1851 | * @return bool|null Returns the f gsur monf. |
||
| 1852 | */ |
||
| 1853 | public function getFGsurMonf(): ?bool { |
||
| 1856 | |||
| 1857 | /** |
||
| 1858 | * Get the familles liees. |
||
| 1859 | * |
||
| 1860 | * @return bool|null Returns the familles liees. |
||
| 1861 | */ |
||
| 1862 | public function getFamillesLiees(): ?bool { |
||
| 1865 | |||
| 1866 | /** |
||
| 1867 | * Get the fg sur cde frn. |
||
| 1868 | * |
||
| 1869 | * @return bool|null Returns the fg sur cde frn. |
||
| 1870 | */ |
||
| 1871 | public function getFgSurCdeFrn(): ?bool { |
||
| 1874 | |||
| 1875 | /** |
||
| 1876 | * Get the fiche cli ne pas proposer creation dpdc. |
||
| 1877 | * |
||
| 1878 | * @return bool|null Returns the fiche cli ne pas proposer creation dpdc. |
||
| 1879 | */ |
||
| 1880 | public function getFicheCliNePasProposerCreationDpdc(): ?bool { |
||
| 1883 | |||
| 1884 | /** |
||
| 1885 | * Get the gestion gammes. |
||
| 1886 | * |
||
| 1887 | * @return bool|null Returns the gestion gammes. |
||
| 1888 | */ |
||
| 1889 | public function getGestionGammes(): ?bool { |
||
| 1892 | |||
| 1893 | /** |
||
| 1894 | * Get the gestion pointeuse q fact. |
||
| 1895 | * |
||
| 1896 | * @return bool|null Returns the gestion pointeuse q fact. |
||
| 1897 | */ |
||
| 1898 | public function getGestionPointeuseQFact(): ?bool { |
||
| 1901 | |||
| 1902 | /** |
||
| 1903 | * Get the gestion pointeuse qc. |
||
| 1904 | * |
||
| 1905 | * @return bool|null Returns the gestion pointeuse qc. |
||
| 1906 | */ |
||
| 1907 | public function getGestionPointeuseQc(): ?bool { |
||
| 1910 | |||
| 1911 | /** |
||
| 1912 | * Get the gestion pointeuse qgi. |
||
| 1913 | * |
||
| 1914 | * @return bool|null Returns the gestion pointeuse qgi. |
||
| 1915 | */ |
||
| 1916 | public function getGestionPointeuseQgi(): ?bool { |
||
| 1919 | |||
| 1920 | /** |
||
| 1921 | * Get the gestion pointeuse qp. |
||
| 1922 | * |
||
| 1923 | * @return bool|null Returns the gestion pointeuse qp. |
||
| 1924 | */ |
||
| 1925 | public function getGestionPointeuseQp(): ?bool { |
||
| 1928 | |||
| 1929 | /** |
||
| 1930 | * Get the gestion tarifs transporteurs. |
||
| 1931 | * |
||
| 1932 | * @return bool|null Returns the gestion tarifs transporteurs. |
||
| 1933 | */ |
||
| 1934 | public function getGestionTarifsTransporteurs(): ?bool { |
||
| 1937 | |||
| 1938 | /** |
||
| 1939 | * Get the gestion tarifs transporteurs nb dec. |
||
| 1940 | * |
||
| 1941 | * @return int|null Returns the gestion tarifs transporteurs nb dec. |
||
| 1942 | */ |
||
| 1943 | public function getGestionTarifsTransporteursNbDec(): ?int { |
||
| 1946 | |||
| 1947 | /** |
||
| 1948 | * Get the gestion variantes. |
||
| 1949 | * |
||
| 1950 | * @return bool|null Returns the gestion variantes. |
||
| 1951 | */ |
||
| 1952 | public function getGestionVariantes(): ?bool { |
||
| 1955 | |||
| 1956 | /** |
||
| 1957 | * Get the ht avec jours feries. |
||
| 1958 | * |
||
| 1959 | * @return bool|null Returns the ht avec jours feries. |
||
| 1960 | */ |
||
| 1961 | public function getHtAvecJoursFeries(): ?bool { |
||
| 1964 | |||
| 1965 | /** |
||
| 1966 | * Get the ht avec saisie conges. |
||
| 1967 | * |
||
| 1968 | * @return bool|null Returns the ht avec saisie conges. |
||
| 1969 | */ |
||
| 1970 | public function getHtAvecSaisieConges(): ?bool { |
||
| 1973 | |||
| 1974 | /** |
||
| 1975 | * Get the ht avec saisie conges codes clients. |
||
| 1976 | * |
||
| 1977 | * @return string|null Returns the ht avec saisie conges codes clients. |
||
| 1978 | */ |
||
| 1979 | public function getHtAvecSaisieCongesCodesClients(): ?string { |
||
| 1982 | |||
| 1983 | /** |
||
| 1984 | * Get the ht avec saisie conges codes taches. |
||
| 1985 | * |
||
| 1986 | * @return string|null Returns the ht avec saisie conges codes taches. |
||
| 1987 | */ |
||
| 1988 | public function getHtAvecSaisieCongesCodesTaches(): ?string { |
||
| 1991 | |||
| 1992 | /** |
||
| 1993 | * Get the increm auto article. |
||
| 1994 | * |
||
| 1995 | * @return bool|null Returns the increm auto article. |
||
| 1996 | */ |
||
| 1997 | public function getIncremAutoArticle(): ?bool { |
||
| 2000 | |||
| 2001 | /** |
||
| 2002 | * Get the interdire acces archives cpta. |
||
| 2003 | * |
||
| 2004 | * @return bool|null Returns the interdire acces archives cpta. |
||
| 2005 | */ |
||
| 2006 | public function getInterdireAccesArchivesCpta(): ?bool { |
||
| 2009 | |||
| 2010 | /** |
||
| 2011 | * Get the interdire acces archives paie. |
||
| 2012 | * |
||
| 2013 | * @return bool|null Returns the interdire acces archives paie. |
||
| 2014 | */ |
||
| 2015 | public function getInterdireAccesArchivesPaie(): ?bool { |
||
| 2018 | |||
| 2019 | /** |
||
| 2020 | * Get the interdire acces edition balance. |
||
| 2021 | * |
||
| 2022 | * @return bool|null Returns the interdire acces edition balance. |
||
| 2023 | */ |
||
| 2024 | public function getInterdireAccesEditionBalance(): ?bool { |
||
| 2027 | |||
| 2028 | /** |
||
| 2029 | * Get the interdire acces supp doc arch. |
||
| 2030 | * |
||
| 2031 | * @return bool|null Returns the interdire acces supp doc arch. |
||
| 2032 | */ |
||
| 2033 | public function getInterdireAccesSuppDocArch(): ?bool { |
||
| 2036 | |||
| 2037 | /** |
||
| 2038 | * Get the interdire publi doc web. |
||
| 2039 | * |
||
| 2040 | * @return bool|null Returns the interdire publi doc web. |
||
| 2041 | */ |
||
| 2042 | public function getInterdirePubliDocWeb(): ?bool { |
||
| 2045 | |||
| 2046 | /** |
||
| 2047 | * Get the ip prive qws. |
||
| 2048 | * |
||
| 2049 | * @return string|null Returns the ip prive qws. |
||
| 2050 | */ |
||
| 2051 | public function getIpPriveQws(): ?string { |
||
| 2054 | |||
| 2055 | /** |
||
| 2056 | * Get the liaison tda. |
||
| 2057 | * |
||
| 2058 | * @return bool|null Returns the liaison tda. |
||
| 2059 | */ |
||
| 2060 | public function getLiaisonTda(): ?bool { |
||
| 2063 | |||
| 2064 | /** |
||
| 2065 | * Get the lib affectation frn1. |
||
| 2066 | * |
||
| 2067 | * @return string|null Returns the lib affectation frn1. |
||
| 2068 | */ |
||
| 2069 | public function getLibAffectationFrn1(): ?string { |
||
| 2072 | |||
| 2073 | /** |
||
| 2074 | * Get the lib affectation frn2. |
||
| 2075 | * |
||
| 2076 | * @return string|null Returns the lib affectation frn2. |
||
| 2077 | */ |
||
| 2078 | public function getLibAffectationFrn2(): ?string { |
||
| 2081 | |||
| 2082 | /** |
||
| 2083 | * Get the lib affectation frn3. |
||
| 2084 | * |
||
| 2085 | * @return string|null Returns the lib affectation frn3. |
||
| 2086 | */ |
||
| 2087 | public function getLibAffectationFrn3(): ?string { |
||
| 2090 | |||
| 2091 | /** |
||
| 2092 | * Get the lib affectation frn4. |
||
| 2093 | * |
||
| 2094 | * @return string|null Returns the lib affectation frn4. |
||
| 2095 | */ |
||
| 2096 | public function getLibAffectationFrn4(): ?string { |
||
| 2099 | |||
| 2100 | /** |
||
| 2101 | * Get the lib affectation frn5. |
||
| 2102 | * |
||
| 2103 | * @return string|null Returns the lib affectation frn5. |
||
| 2104 | */ |
||
| 2105 | public function getLibAffectationFrn5(): ?string { |
||
| 2108 | |||
| 2109 | /** |
||
| 2110 | * Get the lib affectation frn6. |
||
| 2111 | * |
||
| 2112 | * @return string|null Returns the lib affectation frn6. |
||
| 2113 | */ |
||
| 2114 | public function getLibAffectationFrn6(): ?string { |
||
| 2117 | |||
| 2118 | /** |
||
| 2119 | * Get the lib affectation frn7. |
||
| 2120 | * |
||
| 2121 | * @return string|null Returns the lib affectation frn7. |
||
| 2122 | */ |
||
| 2123 | public function getLibAffectationFrn7(): ?string { |
||
| 2126 | |||
| 2127 | /** |
||
| 2128 | * Get the lib critere article21. |
||
| 2129 | * |
||
| 2130 | * @return string|null Returns the lib critere article21. |
||
| 2131 | */ |
||
| 2132 | public function getLibCritereArticle21(): ?string { |
||
| 2135 | |||
| 2136 | /** |
||
| 2137 | * Get the lib critere article210. |
||
| 2138 | * |
||
| 2139 | * @return string|null Returns the lib critere article210. |
||
| 2140 | */ |
||
| 2141 | public function getLibCritereArticle210(): ?string { |
||
| 2144 | |||
| 2145 | /** |
||
| 2146 | * Get the lib critere article22. |
||
| 2147 | * |
||
| 2148 | * @return string|null Returns the lib critere article22. |
||
| 2149 | */ |
||
| 2150 | public function getLibCritereArticle22(): ?string { |
||
| 2153 | |||
| 2154 | /** |
||
| 2155 | * Get the lib critere article23. |
||
| 2156 | * |
||
| 2157 | * @return string|null Returns the lib critere article23. |
||
| 2158 | */ |
||
| 2159 | public function getLibCritereArticle23(): ?string { |
||
| 2162 | |||
| 2163 | /** |
||
| 2164 | * Get the lib critere article24. |
||
| 2165 | * |
||
| 2166 | * @return string|null Returns the lib critere article24. |
||
| 2167 | */ |
||
| 2168 | public function getLibCritereArticle24(): ?string { |
||
| 2171 | |||
| 2172 | /** |
||
| 2173 | * Get the lib critere article25. |
||
| 2174 | * |
||
| 2175 | * @return string|null Returns the lib critere article25. |
||
| 2176 | */ |
||
| 2177 | public function getLibCritereArticle25(): ?string { |
||
| 2180 | |||
| 2181 | /** |
||
| 2182 | * Get the lib critere article26. |
||
| 2183 | * |
||
| 2184 | * @return string|null Returns the lib critere article26. |
||
| 2185 | */ |
||
| 2186 | public function getLibCritereArticle26(): ?string { |
||
| 2189 | |||
| 2190 | /** |
||
| 2191 | * Get the lib critere article27. |
||
| 2192 | * |
||
| 2193 | * @return string|null Returns the lib critere article27. |
||
| 2194 | */ |
||
| 2195 | public function getLibCritereArticle27(): ?string { |
||
| 2198 | |||
| 2199 | /** |
||
| 2200 | * Get the lib critere article28. |
||
| 2201 | * |
||
| 2202 | * @return string|null Returns the lib critere article28. |
||
| 2203 | */ |
||
| 2204 | public function getLibCritereArticle28(): ?string { |
||
| 2207 | |||
| 2208 | /** |
||
| 2209 | * Get the lib critere article29. |
||
| 2210 | * |
||
| 2211 | * @return string|null Returns the lib critere article29. |
||
| 2212 | */ |
||
| 2213 | public function getLibCritereArticle29(): ?string { |
||
| 2216 | |||
| 2217 | /** |
||
| 2218 | * Get the lib critere ent piece ac1. |
||
| 2219 | * |
||
| 2220 | * @return string|null Returns the lib critere ent piece ac1. |
||
| 2221 | */ |
||
| 2222 | public function getLibCritereEntPieceAc1(): ?string { |
||
| 2225 | |||
| 2226 | /** |
||
| 2227 | * Get the lib critere ent piece ac10. |
||
| 2228 | * |
||
| 2229 | * @return string|null Returns the lib critere ent piece ac10. |
||
| 2230 | */ |
||
| 2231 | public function getLibCritereEntPieceAc10(): ?string { |
||
| 2234 | |||
| 2235 | /** |
||
| 2236 | * Get the lib critere ent piece ac2. |
||
| 2237 | * |
||
| 2238 | * @return string|null Returns the lib critere ent piece ac2. |
||
| 2239 | */ |
||
| 2240 | public function getLibCritereEntPieceAc2(): ?string { |
||
| 2243 | |||
| 2244 | /** |
||
| 2245 | * Get the lib critere ent piece ac3. |
||
| 2246 | * |
||
| 2247 | * @return string|null Returns the lib critere ent piece ac3. |
||
| 2248 | */ |
||
| 2249 | public function getLibCritereEntPieceAc3(): ?string { |
||
| 2252 | |||
| 2253 | /** |
||
| 2254 | * Get the lib critere ent piece ac4. |
||
| 2255 | * |
||
| 2256 | * @return string|null Returns the lib critere ent piece ac4. |
||
| 2257 | */ |
||
| 2258 | public function getLibCritereEntPieceAc4(): ?string { |
||
| 2261 | |||
| 2262 | /** |
||
| 2263 | * Get the lib critere ent piece ac5. |
||
| 2264 | * |
||
| 2265 | * @return string|null Returns the lib critere ent piece ac5. |
||
| 2266 | */ |
||
| 2267 | public function getLibCritereEntPieceAc5(): ?string { |
||
| 2270 | |||
| 2271 | /** |
||
| 2272 | * Get the lib critere ent piece ac6. |
||
| 2273 | * |
||
| 2274 | * @return string|null Returns the lib critere ent piece ac6. |
||
| 2275 | */ |
||
| 2276 | public function getLibCritereEntPieceAc6(): ?string { |
||
| 2279 | |||
| 2280 | /** |
||
| 2281 | * Get the lib critere ent piece ac7. |
||
| 2282 | * |
||
| 2283 | * @return string|null Returns the lib critere ent piece ac7. |
||
| 2284 | */ |
||
| 2285 | public function getLibCritereEntPieceAc7(): ?string { |
||
| 2288 | |||
| 2289 | /** |
||
| 2290 | * Get the lib critere ent piece ac8. |
||
| 2291 | * |
||
| 2292 | * @return string|null Returns the lib critere ent piece ac8. |
||
| 2293 | */ |
||
| 2294 | public function getLibCritereEntPieceAc8(): ?string { |
||
| 2297 | |||
| 2298 | /** |
||
| 2299 | * Get the lib critere ent piece ac9. |
||
| 2300 | * |
||
| 2301 | * @return string|null Returns the lib critere ent piece ac9. |
||
| 2302 | */ |
||
| 2303 | public function getLibCritereEntPieceAc9(): ?string { |
||
| 2306 | |||
| 2307 | /** |
||
| 2308 | * Get the lib frais1. |
||
| 2309 | * |
||
| 2310 | * @return string|null Returns the lib frais1. |
||
| 2311 | */ |
||
| 2312 | public function getLibFrais1(): ?string { |
||
| 2315 | |||
| 2316 | /** |
||
| 2317 | * Get the lib frais2. |
||
| 2318 | * |
||
| 2319 | * @return string|null Returns the lib frais2. |
||
| 2320 | */ |
||
| 2321 | public function getLibFrais2(): ?string { |
||
| 2324 | |||
| 2325 | /** |
||
| 2326 | * Get the lib frais3. |
||
| 2327 | * |
||
| 2328 | * @return string|null Returns the lib frais3. |
||
| 2329 | */ |
||
| 2330 | public function getLibFrais3(): ?string { |
||
| 2333 | |||
| 2334 | /** |
||
| 2335 | * Get the libelle gamme. |
||
| 2336 | * |
||
| 2337 | * @return string|null Returns the libelle gamme. |
||
| 2338 | */ |
||
| 2339 | public function getLibelleGamme(): ?string { |
||
| 2342 | |||
| 2343 | /** |
||
| 2344 | * Get the libelle variante. |
||
| 2345 | * |
||
| 2346 | * @return string|null Returns the libelle variante. |
||
| 2347 | */ |
||
| 2348 | public function getLibelleVariante(): ?string { |
||
| 2351 | |||
| 2352 | /** |
||
| 2353 | * Get the longueur num aff. |
||
| 2354 | * |
||
| 2355 | * @return int|null Returns the longueur num aff. |
||
| 2356 | */ |
||
| 2357 | public function getLongueurNumAff(): ?int { |
||
| 2360 | |||
| 2361 | /** |
||
| 2362 | * Get the maj codes activite cga. |
||
| 2363 | * |
||
| 2364 | * @return string|null Returns the maj codes activite cga. |
||
| 2365 | */ |
||
| 2366 | public function getMajCodesActiviteCga(): ?string { |
||
| 2369 | |||
| 2370 | /** |
||
| 2371 | * Get the mess aspod. |
||
| 2372 | * |
||
| 2373 | * @return bool|null Returns the mess aspod. |
||
| 2374 | */ |
||
| 2375 | public function getMessAspod(): ?bool { |
||
| 2378 | |||
| 2379 | /** |
||
| 2380 | * Get the modif affaire. |
||
| 2381 | * |
||
| 2382 | * @return string|null Returns the modif affaire. |
||
| 2383 | */ |
||
| 2384 | public function getModifAffaire(): ?string { |
||
| 2387 | |||
| 2388 | /** |
||
| 2389 | * Get the modif droits asp. |
||
| 2390 | * |
||
| 2391 | * @return bool|null Returns the modif droits asp. |
||
| 2392 | */ |
||
| 2393 | public function getModifDroitsAsp(): ?bool { |
||
| 2396 | |||
| 2397 | /** |
||
| 2398 | * Get the nb max gamme. |
||
| 2399 | * |
||
| 2400 | * @return int|null Returns the nb max gamme. |
||
| 2401 | */ |
||
| 2402 | public function getNbMaxGamme(): ?int { |
||
| 2405 | |||
| 2406 | /** |
||
| 2407 | * Get the ne pas creer cpt cli. |
||
| 2408 | * |
||
| 2409 | * @return bool|null Returns the ne pas creer cpt cli. |
||
| 2410 | */ |
||
| 2411 | public function getNePasCreerCptCli(): ?bool { |
||
| 2414 | |||
| 2415 | /** |
||
| 2416 | * Get the ne pas creer cpt frn. |
||
| 2417 | * |
||
| 2418 | * @return bool|null Returns the ne pas creer cpt frn. |
||
| 2419 | */ |
||
| 2420 | public function getNePasCreerCptFrn(): ?bool { |
||
| 2423 | |||
| 2424 | /** |
||
| 2425 | * Get the new db infos. |
||
| 2426 | * |
||
| 2427 | * @return bool|null Returns the new db infos. |
||
| 2428 | */ |
||
| 2429 | public function getNewDbInfos(): ?bool { |
||
| 2432 | |||
| 2433 | /** |
||
| 2434 | * Get the new q bureau. |
||
| 2435 | * |
||
| 2436 | * @return bool|null Returns the new q bureau. |
||
| 2437 | */ |
||
| 2438 | public function getNewQBureau(): ?bool { |
||
| 2441 | |||
| 2442 | /** |
||
| 2443 | * Get the no doss fact cab. |
||
| 2444 | * |
||
| 2445 | * @return string|null Returns the no doss fact cab. |
||
| 2446 | */ |
||
| 2447 | public function getNoDossFactCab(): ?string { |
||
| 2450 | |||
| 2451 | /** |
||
| 2452 | * Get the pas de lien comptabilite. |
||
| 2453 | * |
||
| 2454 | * @return bool|null Returns the pas de lien comptabilite. |
||
| 2455 | */ |
||
| 2456 | public function getPasDeLienComptabilite(): ?bool { |
||
| 2459 | |||
| 2460 | /** |
||
| 2461 | * Get the pme dossier rattachement. |
||
| 2462 | * |
||
| 2463 | * @return string|null Returns the pme dossier rattachement. |
||
| 2464 | */ |
||
| 2465 | public function getPmeDossierRattachement(): ?string { |
||
| 2468 | |||
| 2469 | /** |
||
| 2470 | * Get the prefixe code client. |
||
| 2471 | * |
||
| 2472 | * @return string|null Returns the prefixe code client. |
||
| 2473 | */ |
||
| 2474 | public function getPrefixeCodeClient(): ?string { |
||
| 2477 | |||
| 2478 | /** |
||
| 2479 | * Get the prochain code client. |
||
| 2480 | * |
||
| 2481 | * @return string|null Returns the prochain code client. |
||
| 2482 | */ |
||
| 2483 | public function getProchainCodeClient(): ?string { |
||
| 2486 | |||
| 2487 | /** |
||
| 2488 | * Get the proxy actif. |
||
| 2489 | * |
||
| 2490 | * @return bool|null Returns the proxy actif. |
||
| 2491 | */ |
||
| 2492 | public function getProxyActif(): ?bool { |
||
| 2495 | |||
| 2496 | /** |
||
| 2497 | * Get the proxy adresse. |
||
| 2498 | * |
||
| 2499 | * @return string|null Returns the proxy adresse. |
||
| 2500 | */ |
||
| 2501 | public function getProxyAdresse(): ?string { |
||
| 2504 | |||
| 2505 | /** |
||
| 2506 | * Get the proxy port. |
||
| 2507 | * |
||
| 2508 | * @return int|null Returns the proxy port. |
||
| 2509 | */ |
||
| 2510 | public function getProxyPort(): ?int { |
||
| 2513 | |||
| 2514 | /** |
||
| 2515 | * Get the q pub web code collaborateur dest. |
||
| 2516 | * |
||
| 2517 | * @return string|null Returns the q pub web code collaborateur dest. |
||
| 2518 | */ |
||
| 2519 | public function getQPubWebCodeCollaborateurDest(): ?string { |
||
| 2522 | |||
| 2523 | /** |
||
| 2524 | * Get the qws chemin logo. |
||
| 2525 | * |
||
| 2526 | * @return string|null Returns the qws chemin logo. |
||
| 2527 | */ |
||
| 2528 | public function getQwsCheminLogo(): ?string { |
||
| 2531 | |||
| 2532 | /** |
||
| 2533 | * Get the qws code ipl. |
||
| 2534 | * |
||
| 2535 | * @return string|null Returns the qws code ipl. |
||
| 2536 | */ |
||
| 2537 | public function getQwsCodeIpl(): ?string { |
||
| 2540 | |||
| 2541 | /** |
||
| 2542 | * Get the qws http securise. |
||
| 2543 | * |
||
| 2544 | * @return bool|null Returns the qws http securise. |
||
| 2545 | */ |
||
| 2546 | public function getQwsHttpSecurise(): ?bool { |
||
| 2549 | |||
| 2550 | /** |
||
| 2551 | * Get the qws nom produit. |
||
| 2552 | * |
||
| 2553 | * @return string|null Returns the qws nom produit. |
||
| 2554 | */ |
||
| 2555 | public function getQwsNomProduit(): ?string { |
||
| 2558 | |||
| 2559 | /** |
||
| 2560 | * Get the qws utiliser logo cabinet. |
||
| 2561 | * |
||
| 2562 | * @return bool|null Returns the qws utiliser logo cabinet. |
||
| 2563 | */ |
||
| 2564 | public function getQwsUtiliserLogoCabinet(): ?bool { |
||
| 2567 | |||
| 2568 | /** |
||
| 2569 | * Get the qwsipl. |
||
| 2570 | * |
||
| 2571 | * @return string|null Returns the qwsipl. |
||
| 2572 | */ |
||
| 2573 | public function getQwsipl(): ?string { |
||
| 2576 | |||
| 2577 | /** |
||
| 2578 | * Get the rac data paie. |
||
| 2579 | * |
||
| 2580 | * @return string|null Returns the rac data paie. |
||
| 2581 | */ |
||
| 2582 | public function getRacDataPaie(): ?string { |
||
| 2585 | |||
| 2586 | /** |
||
| 2587 | * Get the rapport q infos. |
||
| 2588 | * |
||
| 2589 | * @return string|null Returns the rapport q infos. |
||
| 2590 | */ |
||
| 2591 | public function getRapportQInfos(): ?string { |
||
| 2594 | |||
| 2595 | /** |
||
| 2596 | * Get the req demandeur. |
||
| 2597 | * |
||
| 2598 | * @return string|null Returns the req demandeur. |
||
| 2599 | */ |
||
| 2600 | public function getReqDemandeur(): ?string { |
||
| 2603 | |||
| 2604 | /** |
||
| 2605 | * Get the saisie propriete mess. |
||
| 2606 | * |
||
| 2607 | * @return int|null Returns the saisie propriete mess. |
||
| 2608 | */ |
||
| 2609 | public function getSaisieProprieteMess(): ?int { |
||
| 2612 | |||
| 2613 | /** |
||
| 2614 | * Get the saisie regl direct. |
||
| 2615 | * |
||
| 2616 | * @return bool|null Returns the saisie regl direct. |
||
| 2617 | */ |
||
| 2618 | public function getSaisieReglDirect(): ?bool { |
||
| 2621 | |||
| 2622 | /** |
||
| 2623 | * Get the saisie temps nb j apres. |
||
| 2624 | * |
||
| 2625 | * @return int|null Returns the saisie temps nb j apres. |
||
| 2626 | */ |
||
| 2627 | public function getSaisieTempsNbJApres(): ?int { |
||
| 2630 | |||
| 2631 | /** |
||
| 2632 | * Get the saisie temps nb j avant. |
||
| 2633 | * |
||
| 2634 | * @return int|null Returns the saisie temps nb j avant. |
||
| 2635 | */ |
||
| 2636 | public function getSaisieTempsNbJAvant(): ?int { |
||
| 2639 | |||
| 2640 | /** |
||
| 2641 | * Get the saisie tp ne pas afficher dp. |
||
| 2642 | * |
||
| 2643 | * @return bool|null Returns the saisie tp ne pas afficher dp. |
||
| 2644 | */ |
||
| 2645 | public function getSaisieTpNePasAfficherDp(): ?bool { |
||
| 2648 | |||
| 2649 | /** |
||
| 2650 | * Get the saisie tp onglet unique dp. |
||
| 2651 | * |
||
| 2652 | * @return bool|null Returns the saisie tp onglet unique dp. |
||
| 2653 | */ |
||
| 2654 | public function getSaisieTpOngletUniqueDp(): ?bool { |
||
| 2657 | |||
| 2658 | /** |
||
| 2659 | * Get the saisie tp onglet unique tn. |
||
| 2660 | * |
||
| 2661 | * @return bool|null Returns the saisie tp onglet unique tn. |
||
| 2662 | */ |
||
| 2663 | public function getSaisieTpOngletUniqueTn(): ?bool { |
||
| 2666 | |||
| 2667 | /** |
||
| 2668 | * Get the save histo memo2 file. |
||
| 2669 | * |
||
| 2670 | * @return bool|null Returns the save histo memo2 file. |
||
| 2671 | */ |
||
| 2672 | public function getSaveHistoMemo2File(): ?bool { |
||
| 2675 | |||
| 2676 | /** |
||
| 2677 | * Get the sel av lst perso acces gestion modifiables. |
||
| 2678 | * |
||
| 2679 | * @return bool|null Returns the sel av lst perso acces gestion modifiables. |
||
| 2680 | */ |
||
| 2681 | public function getSelAvLstPersoAccesGestionModifiables(): ?bool { |
||
| 2684 | |||
| 2685 | /** |
||
| 2686 | * Get the sel av lst perso acces gestionnaire. |
||
| 2687 | * |
||
| 2688 | * @return bool|null Returns the sel av lst perso acces gestionnaire. |
||
| 2689 | */ |
||
| 2690 | public function getSelAvLstPersoAccesGestionnaire(): ?bool { |
||
| 2693 | |||
| 2694 | /** |
||
| 2695 | * Get the sel av lst perso champs modif. |
||
| 2696 | * |
||
| 2697 | * @return bool|null Returns the sel av lst perso champs modif. |
||
| 2698 | */ |
||
| 2699 | public function getSelAvLstPersoChampsModif(): ?bool { |
||
| 2702 | |||
| 2703 | /** |
||
| 2704 | * Get the sel av lst perso copie colonne. |
||
| 2705 | * |
||
| 2706 | * @return bool|null Returns the sel av lst perso copie colonne. |
||
| 2707 | */ |
||
| 2708 | public function getSelAvLstPersoCopieColonne(): ?bool { |
||
| 2711 | |||
| 2712 | /** |
||
| 2713 | * Get the sel av lst perso interdire creat. |
||
| 2714 | * |
||
| 2715 | * @return bool|null Returns the sel av lst perso interdire creat. |
||
| 2716 | */ |
||
| 2717 | public function getSelAvLstPersoInterdireCreat(): ?bool { |
||
| 2720 | |||
| 2721 | /** |
||
| 2722 | * Get the sms api key. |
||
| 2723 | * |
||
| 2724 | * @return string|null Returns the sms api key. |
||
| 2725 | */ |
||
| 2726 | public function getSmsApiKey(): ?string { |
||
| 2729 | |||
| 2730 | /** |
||
| 2731 | * Get the sms droit acces. |
||
| 2732 | * |
||
| 2733 | * @return bool|null Returns the sms droit acces. |
||
| 2734 | */ |
||
| 2735 | public function getSmsDroitAcces(): ?bool { |
||
| 2738 | |||
| 2739 | /** |
||
| 2740 | * Get the sms key. |
||
| 2741 | * |
||
| 2742 | * @return string|null Returns the sms key. |
||
| 2743 | */ |
||
| 2744 | public function getSmsKey(): ?string { |
||
| 2747 | |||
| 2748 | /** |
||
| 2749 | * Get the sms prestataire. |
||
| 2750 | * |
||
| 2751 | * @return string|null Returns the sms prestataire. |
||
| 2752 | */ |
||
| 2753 | public function getSmsPrestataire(): ?string { |
||
| 2756 | |||
| 2757 | /** |
||
| 2758 | * Get the sms sender. |
||
| 2759 | * |
||
| 2760 | * @return string|null Returns the sms sender. |
||
| 2761 | */ |
||
| 2762 | public function getSmsSender(): ?string { |
||
| 2765 | |||
| 2766 | /** |
||
| 2767 | * Get the sms type. |
||
| 2768 | * |
||
| 2769 | * @return int|null Returns the sms type. |
||
| 2770 | */ |
||
| 2771 | public function getSmsType(): ?int { |
||
| 2774 | |||
| 2775 | /** |
||
| 2776 | * Get the sms user login. |
||
| 2777 | * |
||
| 2778 | * @return string|null Returns the sms user login. |
||
| 2779 | */ |
||
| 2780 | public function getSmsUserLogin(): ?string { |
||
| 2783 | |||
| 2784 | /** |
||
| 2785 | * Get the solde cpta od. |
||
| 2786 | * |
||
| 2787 | * @return bool|null Returns the solde cpta od. |
||
| 2788 | */ |
||
| 2789 | public function getSoldeCptaOd(): ?bool { |
||
| 2792 | |||
| 2793 | /** |
||
| 2794 | * Get the suivi client intitule generic1. |
||
| 2795 | * |
||
| 2796 | * @return string|null Returns the suivi client intitule generic1. |
||
| 2797 | */ |
||
| 2798 | public function getSuiviClientIntituleGeneric1(): ?string { |
||
| 2801 | |||
| 2802 | /** |
||
| 2803 | * Get the suivi client intitule generic10. |
||
| 2804 | * |
||
| 2805 | * @return string|null Returns the suivi client intitule generic10. |
||
| 2806 | */ |
||
| 2807 | public function getSuiviClientIntituleGeneric10(): ?string { |
||
| 2810 | |||
| 2811 | /** |
||
| 2812 | * Get the suivi client intitule generic2. |
||
| 2813 | * |
||
| 2814 | * @return string|null Returns the suivi client intitule generic2. |
||
| 2815 | */ |
||
| 2816 | public function getSuiviClientIntituleGeneric2(): ?string { |
||
| 2819 | |||
| 2820 | /** |
||
| 2821 | * Get the suivi client intitule generic3. |
||
| 2822 | * |
||
| 2823 | * @return string|null Returns the suivi client intitule generic3. |
||
| 2824 | */ |
||
| 2825 | public function getSuiviClientIntituleGeneric3(): ?string { |
||
| 2828 | |||
| 2829 | /** |
||
| 2830 | * Get the suivi client intitule generic4. |
||
| 2831 | * |
||
| 2832 | * @return string|null Returns the suivi client intitule generic4. |
||
| 2833 | */ |
||
| 2834 | public function getSuiviClientIntituleGeneric4(): ?string { |
||
| 2837 | |||
| 2838 | /** |
||
| 2839 | * Get the suivi client intitule generic5. |
||
| 2840 | * |
||
| 2841 | * @return string|null Returns the suivi client intitule generic5. |
||
| 2842 | */ |
||
| 2843 | public function getSuiviClientIntituleGeneric5(): ?string { |
||
| 2846 | |||
| 2847 | /** |
||
| 2848 | * Get the suivi client intitule generic6. |
||
| 2849 | * |
||
| 2850 | * @return string|null Returns the suivi client intitule generic6. |
||
| 2851 | */ |
||
| 2852 | public function getSuiviClientIntituleGeneric6(): ?string { |
||
| 2855 | |||
| 2856 | /** |
||
| 2857 | * Get the suivi client intitule generic7. |
||
| 2858 | * |
||
| 2859 | * @return string|null Returns the suivi client intitule generic7. |
||
| 2860 | */ |
||
| 2861 | public function getSuiviClientIntituleGeneric7(): ?string { |
||
| 2864 | |||
| 2865 | /** |
||
| 2866 | * Get the suivi client intitule generic8. |
||
| 2867 | * |
||
| 2868 | * @return string|null Returns the suivi client intitule generic8. |
||
| 2869 | */ |
||
| 2870 | public function getSuiviClientIntituleGeneric8(): ?string { |
||
| 2873 | |||
| 2874 | /** |
||
| 2875 | * Get the suivi client intitule generic9. |
||
| 2876 | * |
||
| 2877 | * @return string|null Returns the suivi client intitule generic9. |
||
| 2878 | */ |
||
| 2879 | public function getSuiviClientIntituleGeneric9(): ?string { |
||
| 2882 | |||
| 2883 | /** |
||
| 2884 | * Get the tp acces encours client. |
||
| 2885 | * |
||
| 2886 | * @return bool|null Returns the tp acces encours client. |
||
| 2887 | */ |
||
| 2888 | public function getTpAccesEncoursClient(): ?bool { |
||
| 2891 | |||
| 2892 | /** |
||
| 2893 | * Get the tp avancement a la ligne. |
||
| 2894 | * |
||
| 2895 | * @return bool|null Returns the tp avancement a la ligne. |
||
| 2896 | */ |
||
| 2897 | public function getTpAvancementALaLigne(): ?bool { |
||
| 2900 | |||
| 2901 | /** |
||
| 2902 | * Get the tp interdit qte. |
||
| 2903 | * |
||
| 2904 | * @return bool|null Returns the tp interdit qte. |
||
| 2905 | */ |
||
| 2906 | public function getTpInterditQte(): ?bool { |
||
| 2909 | |||
| 2910 | /** |
||
| 2911 | * Get the tp libelle mission. |
||
| 2912 | * |
||
| 2913 | * @return bool|null Returns the tp libelle mission. |
||
| 2914 | */ |
||
| 2915 | public function getTpLibelleMission(): ?bool { |
||
| 2918 | |||
| 2919 | /** |
||
| 2920 | * Get the tp limite saisie non operationnel. |
||
| 2921 | * |
||
| 2922 | * @return bool|null Returns the tp limite saisie non operationnel. |
||
| 2923 | */ |
||
| 2924 | public function getTpLimiteSaisieNonOperationnel(): ?bool { |
||
| 2927 | |||
| 2928 | /** |
||
| 2929 | * Get the tp pas mois cloture. |
||
| 2930 | * |
||
| 2931 | * @return bool|null Returns the tp pas mois cloture. |
||
| 2932 | */ |
||
| 2933 | public function getTpPasMoisCloture(): ?bool { |
||
| 2936 | |||
| 2937 | /** |
||
| 2938 | * Get the tp pourcentage non operationnel date. |
||
| 2939 | * |
||
| 2940 | * @return DateTime|null Returns the tp pourcentage non operationnel date. |
||
| 2941 | */ |
||
| 2942 | public function getTpPourcentageNonOperationnelDate(): ?DateTime { |
||
| 2945 | |||
| 2946 | /** |
||
| 2947 | * Get the tp qte invisible. |
||
| 2948 | * |
||
| 2949 | * @return bool|null Returns the tp qte invisible. |
||
| 2950 | */ |
||
| 2951 | public function getTpQteInvisible(): ?bool { |
||
| 2954 | |||
| 2955 | /** |
||
| 2956 | * Get the tp saisie avancement. |
||
| 2957 | * |
||
| 2958 | * @return bool|null Returns the tp saisie avancement. |
||
| 2959 | */ |
||
| 2960 | public function getTpSaisieAvancement(): ?bool { |
||
| 2963 | |||
| 2964 | /** |
||
| 2965 | * Get the tppupv123. |
||
| 2966 | * |
||
| 2967 | * @return bool|null Returns the tppupv123. |
||
| 2968 | */ |
||
| 2969 | public function getTppupv123(): ?bool { |
||
| 2972 | |||
| 2973 | /** |
||
| 2974 | * Get the tps num archive. |
||
| 2975 | * |
||
| 2976 | * @return string|null Returns the tps num archive. |
||
| 2977 | */ |
||
| 2978 | public function getTpsNumArchive(): ?string { |
||
| 2981 | |||
| 2982 | /** |
||
| 2983 | * Get the trans variantes factgi. |
||
| 2984 | * |
||
| 2985 | * @return bool|null Returns the trans variantes factgi. |
||
| 2986 | */ |
||
| 2987 | public function getTransVariantesFactgi(): ?bool { |
||
| 2990 | |||
| 2991 | /** |
||
| 2992 | * Get the type affichage solde fourn. |
||
| 2993 | * |
||
| 2994 | * @return string|null Returns the type affichage solde fourn. |
||
| 2995 | */ |
||
| 2996 | public function getTypeAffichageSoldeFourn(): ?string { |
||
| 2999 | |||
| 3000 | /** |
||
| 3001 | * Get the type frais1. |
||
| 3002 | * |
||
| 3003 | * @return bool|null Returns the type frais1. |
||
| 3004 | */ |
||
| 3005 | public function getTypeFrais1(): ?bool { |
||
| 3008 | |||
| 3009 | /** |
||
| 3010 | * Get the type frais2. |
||
| 3011 | * |
||
| 3012 | * @return bool|null Returns the type frais2. |
||
| 3013 | */ |
||
| 3014 | public function getTypeFrais2(): ?bool { |
||
| 3017 | |||
| 3018 | /** |
||
| 3019 | * Get the type frais3. |
||
| 3020 | * |
||
| 3021 | * @return bool|null Returns the type frais3. |
||
| 3022 | */ |
||
| 3023 | public function getTypeFrais3(): ?bool { |
||
| 3026 | |||
| 3027 | /** |
||
| 3028 | * Get the type saisie taux devises. |
||
| 3029 | * |
||
| 3030 | * @return string|null Returns the type saisie taux devises. |
||
| 3031 | */ |
||
| 3032 | public function getTypeSaisieTauxDevises(): ?string { |
||
| 3035 | |||
| 3036 | /** |
||
| 3037 | * Get the v esur dep aff. |
||
| 3038 | * |
||
| 3039 | * @return bool|null Returns the v esur dep aff. |
||
| 3040 | */ |
||
| 3041 | public function getVEsurDepAff(): ?bool { |
||
| 3044 | |||
| 3045 | /** |
||
| 3046 | * Get the val auto tarifs transporteurs. |
||
| 3047 | * |
||
| 3048 | * @return bool|null Returns the val auto tarifs transporteurs. |
||
| 3049 | */ |
||
| 3050 | public function getValAutoTarifsTransporteurs(): ?bool { |
||
| 3053 | |||
| 3054 | /** |
||
| 3055 | * Get the visualisation fiche cabinet. |
||
| 3056 | * |
||
| 3057 | * @return bool|null Returns the visualisation fiche cabinet. |
||
| 3058 | */ |
||
| 3059 | public function getVisualisationFicheCabinet(): ?bool { |
||
| 3062 | |||
| 3063 | /** |
||
| 3064 | * Get the word acces par q client. |
||
| 3065 | * |
||
| 3066 | * @return bool|null Returns the word acces par q client. |
||
| 3067 | */ |
||
| 3068 | public function getWordAccesParQClient(): ?bool { |
||
| 3071 | |||
| 3072 | /** |
||
| 3073 | * Get the e ws cabinet. |
||
| 3074 | * |
||
| 3075 | * @return string|null Returns the e ws cabinet. |
||
| 3076 | */ |
||
| 3077 | public function geteWsCabinet(): ?string { |
||
| 3080 | |||
| 3081 | /** |
||
| 3082 | * Get the e ws coll id. |
||
| 3083 | * |
||
| 3084 | * @return string|null Returns the e ws coll id. |
||
| 3085 | */ |
||
| 3086 | public function geteWsCollId(): ?string { |
||
| 3089 | |||
| 3090 | /** |
||
| 3091 | * Get the e ws coll mdp. |
||
| 3092 | * |
||
| 3093 | * @return string|null Returns the e ws coll mdp. |
||
| 3094 | */ |
||
| 3095 | public function geteWsCollMdp(): ?string { |
||
| 3098 | |||
| 3099 | /** |
||
| 3100 | * Get the e ws srv mdp. |
||
| 3101 | * |
||
| 3102 | * @return string|null Returns the e ws srv mdp. |
||
| 3103 | */ |
||
| 3104 | public function geteWsSrvMdp(): ?string { |
||
| 3107 | |||
| 3108 | /** |
||
| 3109 | * Get the e ws srv name. |
||
| 3110 | * |
||
| 3111 | * @return string|null Returns the e ws srv name. |
||
| 3112 | */ |
||
| 3113 | public function geteWsSrvName(): ?string { |
||
| 3116 | |||
| 3117 | /** |
||
| 3118 | * Get the e ws srv util. |
||
| 3119 | * |
||
| 3120 | * @return string|null Returns the e ws srv util. |
||
| 3121 | */ |
||
| 3122 | public function geteWsSrvUtil(): ?string { |
||
| 3125 | |||
| 3126 | /** |
||
| 3127 | * Get the lng code article auto. |
||
| 3128 | * |
||
| 3129 | * @return int|null Returns the lng code article auto. |
||
| 3130 | */ |
||
| 3131 | public function getlngCodeArticleAuto(): ?int { |
||
| 3134 | |||
| 3135 | /** |
||
| 3136 | * Set the activation conf2 cmav cli. |
||
| 3137 | * |
||
| 3138 | * @param bool|null $activationConf2CmavCli The activation conf2 cmav cli. |
||
| 3139 | * @return Constantes2 Returns this Constantes2. |
||
| 3140 | */ |
||
| 3141 | public function setActivationConf2CmavCli(?bool $activationConf2CmavCli): Constantes2 { |
||
| 3145 | |||
| 3146 | /** |
||
| 3147 | * Set the active conf conv col. |
||
| 3148 | * |
||
| 3149 | * @param bool|null $activeConfConvCol The active conf conv col. |
||
| 3150 | * @return Constantes2 Returns this Constantes2. |
||
| 3151 | */ |
||
| 3152 | public function setActiveConfConvCol(?bool $activeConfConvCol): Constantes2 { |
||
| 3156 | |||
| 3157 | /** |
||
| 3158 | * Set the activer saisie regl. |
||
| 3159 | * |
||
| 3160 | * @param bool|null $activerSaisieRegl The activer saisie regl. |
||
| 3161 | * @return Constantes2 Returns this Constantes2. |
||
| 3162 | */ |
||
| 3163 | public function setActiverSaisieRegl(?bool $activerSaisieRegl): Constantes2 { |
||
| 3167 | |||
| 3168 | /** |
||
| 3169 | * Set the affectations cli frn. |
||
| 3170 | * |
||
| 3171 | * @param bool|null $affectationsCliFrn The affectations cli frn. |
||
| 3172 | * @return Constantes2 Returns this Constantes2. |
||
| 3173 | */ |
||
| 3174 | public function setAffectationsCliFrn(?bool $affectationsCliFrn): Constantes2 { |
||
| 3178 | |||
| 3179 | /** |
||
| 3180 | * Set the annulation affaire. |
||
| 3181 | * |
||
| 3182 | * @param bool|null $annulationAffaire The annulation affaire. |
||
| 3183 | * @return Constantes2 Returns this Constantes2. |
||
| 3184 | */ |
||
| 3185 | public function setAnnulationAffaire(?bool $annulationAffaire): Constantes2 { |
||
| 3189 | |||
| 3190 | /** |
||
| 3191 | * Set the articles lst perso acces gestion modifiables. |
||
| 3192 | * |
||
| 3193 | * @param bool|null $articlesLstPersoAccesGestionModifiables The articles lst perso acces gestion modifiables. |
||
| 3194 | * @return Constantes2 Returns this Constantes2. |
||
| 3195 | */ |
||
| 3196 | public function setArticlesLstPersoAccesGestionModifiables(?bool $articlesLstPersoAccesGestionModifiables): Constantes2 { |
||
| 3200 | |||
| 3201 | /** |
||
| 3202 | * Set the articles lst perso acces gestionnaire. |
||
| 3203 | * |
||
| 3204 | * @param bool|null $articlesLstPersoAccesGestionnaire The articles lst perso acces gestionnaire. |
||
| 3205 | * @return Constantes2 Returns this Constantes2. |
||
| 3206 | */ |
||
| 3207 | public function setArticlesLstPersoAccesGestionnaire(?bool $articlesLstPersoAccesGestionnaire): Constantes2 { |
||
| 3211 | |||
| 3212 | /** |
||
| 3213 | * Set the articles lst perso champs modif. |
||
| 3214 | * |
||
| 3215 | * @param bool|null $articlesLstPersoChampsModif The articles lst perso champs modif. |
||
| 3216 | * @return Constantes2 Returns this Constantes2. |
||
| 3217 | */ |
||
| 3218 | public function setArticlesLstPersoChampsModif(?bool $articlesLstPersoChampsModif): Constantes2 { |
||
| 3222 | |||
| 3223 | /** |
||
| 3224 | * Set the articles lst perso copie colonne. |
||
| 3225 | * |
||
| 3226 | * @param bool|null $articlesLstPersoCopieColonne The articles lst perso copie colonne. |
||
| 3227 | * @return Constantes2 Returns this Constantes2. |
||
| 3228 | */ |
||
| 3229 | public function setArticlesLstPersoCopieColonne(?bool $articlesLstPersoCopieColonne): Constantes2 { |
||
| 3233 | |||
| 3234 | /** |
||
| 3235 | * Set the articles lst perso interdire creat. |
||
| 3236 | * |
||
| 3237 | * @param bool|null $articlesLstPersoInterdireCreat The articles lst perso interdire creat. |
||
| 3238 | * @return Constantes2 Returns this Constantes2. |
||
| 3239 | */ |
||
| 3240 | public function setArticlesLstPersoInterdireCreat(?bool $articlesLstPersoInterdireCreat): Constantes2 { |
||
| 3244 | |||
| 3245 | /** |
||
| 3246 | * Set the asp affectation messages. |
||
| 3247 | * |
||
| 3248 | * @param string|null $aspAffectationMessages The asp affectation messages. |
||
| 3249 | * @return Constantes2 Returns this Constantes2. |
||
| 3250 | */ |
||
| 3251 | public function setAspAffectationMessages(?string $aspAffectationMessages): Constantes2 { |
||
| 3255 | |||
| 3256 | /** |
||
| 3257 | * Set the avec heures theo. |
||
| 3258 | * |
||
| 3259 | * @param bool|null $avecHeuresTheo The avec heures theo. |
||
| 3260 | * @return Constantes2 Returns this Constantes2. |
||
| 3261 | */ |
||
| 3262 | public function setAvecHeuresTheo(?bool $avecHeuresTheo): Constantes2 { |
||
| 3266 | |||
| 3267 | /** |
||
| 3268 | * Set the calcul nombre messages. |
||
| 3269 | * |
||
| 3270 | * @param bool|null $calculNombreMessages The calcul nombre messages. |
||
| 3271 | * @return Constantes2 Returns this Constantes2. |
||
| 3272 | */ |
||
| 3273 | public function setCalculNombreMessages(?bool $calculNombreMessages): Constantes2 { |
||
| 3277 | |||
| 3278 | /** |
||
| 3279 | * Set the champs critere article21. |
||
| 3280 | * |
||
| 3281 | * @param string|null $champsCritereArticle21 The champs critere article21. |
||
| 3282 | * @return Constantes2 Returns this Constantes2. |
||
| 3283 | */ |
||
| 3284 | public function setChampsCritereArticle21(?string $champsCritereArticle21): Constantes2 { |
||
| 3288 | |||
| 3289 | /** |
||
| 3290 | * Set the champs critere article210. |
||
| 3291 | * |
||
| 3292 | * @param string|null $champsCritereArticle210 The champs critere article210. |
||
| 3293 | * @return Constantes2 Returns this Constantes2. |
||
| 3294 | */ |
||
| 3295 | public function setChampsCritereArticle210(?string $champsCritereArticle210): Constantes2 { |
||
| 3299 | |||
| 3300 | /** |
||
| 3301 | * Set the champs critere article22. |
||
| 3302 | * |
||
| 3303 | * @param string|null $champsCritereArticle22 The champs critere article22. |
||
| 3304 | * @return Constantes2 Returns this Constantes2. |
||
| 3305 | */ |
||
| 3306 | public function setChampsCritereArticle22(?string $champsCritereArticle22): Constantes2 { |
||
| 3310 | |||
| 3311 | /** |
||
| 3312 | * Set the champs critere article23. |
||
| 3313 | * |
||
| 3314 | * @param string|null $champsCritereArticle23 The champs critere article23. |
||
| 3315 | * @return Constantes2 Returns this Constantes2. |
||
| 3316 | */ |
||
| 3317 | public function setChampsCritereArticle23(?string $champsCritereArticle23): Constantes2 { |
||
| 3321 | |||
| 3322 | /** |
||
| 3323 | * Set the champs critere article24. |
||
| 3324 | * |
||
| 3325 | * @param string|null $champsCritereArticle24 The champs critere article24. |
||
| 3326 | * @return Constantes2 Returns this Constantes2. |
||
| 3327 | */ |
||
| 3328 | public function setChampsCritereArticle24(?string $champsCritereArticle24): Constantes2 { |
||
| 3332 | |||
| 3333 | /** |
||
| 3334 | * Set the champs critere article25. |
||
| 3335 | * |
||
| 3336 | * @param string|null $champsCritereArticle25 The champs critere article25. |
||
| 3337 | * @return Constantes2 Returns this Constantes2. |
||
| 3338 | */ |
||
| 3339 | public function setChampsCritereArticle25(?string $champsCritereArticle25): Constantes2 { |
||
| 3343 | |||
| 3344 | /** |
||
| 3345 | * Set the champs critere article26. |
||
| 3346 | * |
||
| 3347 | * @param string|null $champsCritereArticle26 The champs critere article26. |
||
| 3348 | * @return Constantes2 Returns this Constantes2. |
||
| 3349 | */ |
||
| 3350 | public function setChampsCritereArticle26(?string $champsCritereArticle26): Constantes2 { |
||
| 3354 | |||
| 3355 | /** |
||
| 3356 | * Set the champs critere article27. |
||
| 3357 | * |
||
| 3358 | * @param string|null $champsCritereArticle27 The champs critere article27. |
||
| 3359 | * @return Constantes2 Returns this Constantes2. |
||
| 3360 | */ |
||
| 3361 | public function setChampsCritereArticle27(?string $champsCritereArticle27): Constantes2 { |
||
| 3365 | |||
| 3366 | /** |
||
| 3367 | * Set the champs critere article28. |
||
| 3368 | * |
||
| 3369 | * @param string|null $champsCritereArticle28 The champs critere article28. |
||
| 3370 | * @return Constantes2 Returns this Constantes2. |
||
| 3371 | */ |
||
| 3372 | public function setChampsCritereArticle28(?string $champsCritereArticle28): Constantes2 { |
||
| 3376 | |||
| 3377 | /** |
||
| 3378 | * Set the champs critere article29. |
||
| 3379 | * |
||
| 3380 | * @param string|null $champsCritereArticle29 The champs critere article29. |
||
| 3381 | * @return Constantes2 Returns this Constantes2. |
||
| 3382 | */ |
||
| 3383 | public function setChampsCritereArticle29(?string $champsCritereArticle29): Constantes2 { |
||
| 3387 | |||
| 3388 | /** |
||
| 3389 | * Set the champs critere ent piece ac1. |
||
| 3390 | * |
||
| 3391 | * @param string|null $champsCritereEntPieceAc1 The champs critere ent piece ac1. |
||
| 3392 | * @return Constantes2 Returns this Constantes2. |
||
| 3393 | */ |
||
| 3394 | public function setChampsCritereEntPieceAc1(?string $champsCritereEntPieceAc1): Constantes2 { |
||
| 3398 | |||
| 3399 | /** |
||
| 3400 | * Set the champs critere ent piece ac10. |
||
| 3401 | * |
||
| 3402 | * @param string|null $champsCritereEntPieceAc10 The champs critere ent piece ac10. |
||
| 3403 | * @return Constantes2 Returns this Constantes2. |
||
| 3404 | */ |
||
| 3405 | public function setChampsCritereEntPieceAc10(?string $champsCritereEntPieceAc10): Constantes2 { |
||
| 3409 | |||
| 3410 | /** |
||
| 3411 | * Set the champs critere ent piece ac2. |
||
| 3412 | * |
||
| 3413 | * @param string|null $champsCritereEntPieceAc2 The champs critere ent piece ac2. |
||
| 3414 | * @return Constantes2 Returns this Constantes2. |
||
| 3415 | */ |
||
| 3416 | public function setChampsCritereEntPieceAc2(?string $champsCritereEntPieceAc2): Constantes2 { |
||
| 3420 | |||
| 3421 | /** |
||
| 3422 | * Set the champs critere ent piece ac3. |
||
| 3423 | * |
||
| 3424 | * @param string|null $champsCritereEntPieceAc3 The champs critere ent piece ac3. |
||
| 3425 | * @return Constantes2 Returns this Constantes2. |
||
| 3426 | */ |
||
| 3427 | public function setChampsCritereEntPieceAc3(?string $champsCritereEntPieceAc3): Constantes2 { |
||
| 3431 | |||
| 3432 | /** |
||
| 3433 | * Set the champs critere ent piece ac4. |
||
| 3434 | * |
||
| 3435 | * @param string|null $champsCritereEntPieceAc4 The champs critere ent piece ac4. |
||
| 3436 | * @return Constantes2 Returns this Constantes2. |
||
| 3437 | */ |
||
| 3438 | public function setChampsCritereEntPieceAc4(?string $champsCritereEntPieceAc4): Constantes2 { |
||
| 3442 | |||
| 3443 | /** |
||
| 3444 | * Set the champs critere ent piece ac5. |
||
| 3445 | * |
||
| 3446 | * @param string|null $champsCritereEntPieceAc5 The champs critere ent piece ac5. |
||
| 3447 | * @return Constantes2 Returns this Constantes2. |
||
| 3448 | */ |
||
| 3449 | public function setChampsCritereEntPieceAc5(?string $champsCritereEntPieceAc5): Constantes2 { |
||
| 3453 | |||
| 3454 | /** |
||
| 3455 | * Set the champs critere ent piece ac6. |
||
| 3456 | * |
||
| 3457 | * @param string|null $champsCritereEntPieceAc6 The champs critere ent piece ac6. |
||
| 3458 | * @return Constantes2 Returns this Constantes2. |
||
| 3459 | */ |
||
| 3460 | public function setChampsCritereEntPieceAc6(?string $champsCritereEntPieceAc6): Constantes2 { |
||
| 3464 | |||
| 3465 | /** |
||
| 3466 | * Set the champs critere ent piece ac7. |
||
| 3467 | * |
||
| 3468 | * @param string|null $champsCritereEntPieceAc7 The champs critere ent piece ac7. |
||
| 3469 | * @return Constantes2 Returns this Constantes2. |
||
| 3470 | */ |
||
| 3471 | public function setChampsCritereEntPieceAc7(?string $champsCritereEntPieceAc7): Constantes2 { |
||
| 3475 | |||
| 3476 | /** |
||
| 3477 | * Set the champs critere ent piece ac8. |
||
| 3478 | * |
||
| 3479 | * @param string|null $champsCritereEntPieceAc8 The champs critere ent piece ac8. |
||
| 3480 | * @return Constantes2 Returns this Constantes2. |
||
| 3481 | */ |
||
| 3482 | public function setChampsCritereEntPieceAc8(?string $champsCritereEntPieceAc8): Constantes2 { |
||
| 3486 | |||
| 3487 | /** |
||
| 3488 | * Set the champs critere ent piece ac9. |
||
| 3489 | * |
||
| 3490 | * @param string|null $champsCritereEntPieceAc9 The champs critere ent piece ac9. |
||
| 3491 | * @return Constantes2 Returns this Constantes2. |
||
| 3492 | */ |
||
| 3493 | public function setChampsCritereEntPieceAc9(?string $champsCritereEntPieceAc9): Constantes2 { |
||
| 3497 | |||
| 3498 | /** |
||
| 3499 | * Set the cle acces conf. |
||
| 3500 | * |
||
| 3501 | * @param string|null $cleAccesConf The cle acces conf. |
||
| 3502 | * @return Constantes2 Returns this Constantes2. |
||
| 3503 | */ |
||
| 3504 | public function setCleAccesConf(?string $cleAccesConf): Constantes2 { |
||
| 3508 | |||
| 3509 | /** |
||
| 3510 | * Set the cle acces plaquettes. |
||
| 3511 | * |
||
| 3512 | * @param string|null $cleAccesPlaquettes The cle acces plaquettes. |
||
| 3513 | * @return Constantes2 Returns this Constantes2. |
||
| 3514 | */ |
||
| 3515 | public function setCleAccesPlaquettes(?string $cleAccesPlaquettes): Constantes2 { |
||
| 3519 | |||
| 3520 | /** |
||
| 3521 | * Set the cle acces q admin db. |
||
| 3522 | * |
||
| 3523 | * @param string|null $cleAccesQAdminDb The cle acces q admin db. |
||
| 3524 | * @return Constantes2 Returns this Constantes2. |
||
| 3525 | */ |
||
| 3526 | public function setCleAccesQAdminDb(?string $cleAccesQAdminDb): Constantes2 { |
||
| 3530 | |||
| 3531 | /** |
||
| 3532 | * Set the cloture archivage auto. |
||
| 3533 | * |
||
| 3534 | * @param bool|null $clotureArchivageAuto The cloture archivage auto. |
||
| 3535 | * @return Constantes2 Returns this Constantes2. |
||
| 3536 | */ |
||
| 3537 | public function setClotureArchivageAuto(?bool $clotureArchivageAuto): Constantes2 { |
||
| 3541 | |||
| 3542 | /** |
||
| 3543 | * Set the code client quadratus. |
||
| 3544 | * |
||
| 3545 | * @param string|null $codeClientQuadratus The code client quadratus. |
||
| 3546 | * @return Constantes2 Returns this Constantes2. |
||
| 3547 | */ |
||
| 3548 | public function setCodeClientQuadratus(?string $codeClientQuadratus): Constantes2 { |
||
| 3552 | |||
| 3553 | /** |
||
| 3554 | * Set the compteur fil discussion. |
||
| 3555 | * |
||
| 3556 | * @param int|null $compteurFilDiscussion The compteur fil discussion. |
||
| 3557 | * @return Constantes2 Returns this Constantes2. |
||
| 3558 | */ |
||
| 3559 | public function setCompteurFilDiscussion(?int $compteurFilDiscussion): Constantes2 { |
||
| 3563 | |||
| 3564 | /** |
||
| 3565 | * Set the confidentialite affaire. |
||
| 3566 | * |
||
| 3567 | * @param bool|null $confidentialiteAffaire The confidentialite affaire. |
||
| 3568 | * @return Constantes2 Returns this Constantes2. |
||
| 3569 | */ |
||
| 3570 | public function setConfidentialiteAffaire(?bool $confidentialiteAffaire): Constantes2 { |
||
| 3574 | |||
| 3575 | /** |
||
| 3576 | * Set the cout moyen horaire. |
||
| 3577 | * |
||
| 3578 | * @param float|null $coutMoyenHoraire The cout moyen horaire. |
||
| 3579 | * @return Constantes2 Returns this Constantes2. |
||
| 3580 | */ |
||
| 3581 | public function setCoutMoyenHoraire(?float $coutMoyenHoraire): Constantes2 { |
||
| 3585 | |||
| 3586 | /** |
||
| 3587 | * Set the create cli1 fact par bl. |
||
| 3588 | * |
||
| 3589 | * @param bool|null $createCli1FactParBl The create cli1 fact par bl. |
||
| 3590 | * @return Constantes2 Returns this Constantes2. |
||
| 3591 | */ |
||
| 3592 | public function setCreateCli1FactParBl(?bool $createCli1FactParBl): Constantes2 { |
||
| 3596 | |||
| 3597 | /** |
||
| 3598 | * Set the creation affaire. |
||
| 3599 | * |
||
| 3600 | * @param bool|null $creationAffaire The creation affaire. |
||
| 3601 | * @return Constantes2 Returns this Constantes2. |
||
| 3602 | */ |
||
| 3603 | public function setCreationAffaire(?bool $creationAffaire): Constantes2 { |
||
| 3607 | |||
| 3608 | /** |
||
| 3609 | * Set the date dha. |
||
| 3610 | * |
||
| 3611 | * @param DateTime|null $dateDha The date dha. |
||
| 3612 | * @return Constantes2 Returns this Constantes2. |
||
| 3613 | */ |
||
| 3614 | public function setDateDha(?DateTime $dateDha): Constantes2 { |
||
| 3618 | |||
| 3619 | /** |
||
| 3620 | * Set the date last exe qpub web. |
||
| 3621 | * |
||
| 3622 | * @param DateTime|null $dateLastExeQpubWeb The date last exe qpub web. |
||
| 3623 | * @return Constantes2 Returns this Constantes2. |
||
| 3624 | */ |
||
| 3625 | public function setDateLastExeQpubWeb(?DateTime $dateLastExeQpubWeb): Constantes2 { |
||
| 3629 | |||
| 3630 | /** |
||
| 3631 | * Set the date pha. |
||
| 3632 | * |
||
| 3633 | * @param DateTime|null $datePha The date pha. |
||
| 3634 | * @return Constantes2 Returns this Constantes2. |
||
| 3635 | */ |
||
| 3636 | public function setDatePha(?DateTime $datePha): Constantes2 { |
||
| 3640 | |||
| 3641 | /** |
||
| 3642 | * Set the derniere version cd. |
||
| 3643 | * |
||
| 3644 | * @param string|null $derniereVersionCd The derniere version cd. |
||
| 3645 | * @return Constantes2 Returns this Constantes2. |
||
| 3646 | */ |
||
| 3647 | public function setDerniereVersionCd(?string $derniereVersionCd): Constantes2 { |
||
| 3651 | |||
| 3652 | /** |
||
| 3653 | * Set the droit collab visu documents. |
||
| 3654 | * |
||
| 3655 | * @param bool|null $droitCollabVisuDocuments The droit collab visu documents. |
||
| 3656 | * @return Constantes2 Returns this Constantes2. |
||
| 3657 | */ |
||
| 3658 | public function setDroitCollabVisuDocuments(?bool $droitCollabVisuDocuments): Constantes2 { |
||
| 3662 | |||
| 3663 | /** |
||
| 3664 | * Set the ech detail aff. |
||
| 3665 | * |
||
| 3666 | * @param bool|null $echDetailAff The ech detail aff. |
||
| 3667 | * @return Constantes2 Returns this Constantes2. |
||
| 3668 | */ |
||
| 3669 | public function setEchDetailAff(?bool $echDetailAff): Constantes2 { |
||
| 3673 | |||
| 3674 | /** |
||
| 3675 | * Set the etebac dest message. |
||
| 3676 | * |
||
| 3677 | * @param string|null $etebacDestMessage The etebac dest message. |
||
| 3678 | * @return Constantes2 Returns this Constantes2. |
||
| 3679 | */ |
||
| 3680 | public function setEtebacDestMessage(?string $etebacDestMessage): Constantes2 { |
||
| 3684 | |||
| 3685 | /** |
||
| 3686 | * Set the f gsur ac. |
||
| 3687 | * |
||
| 3688 | * @param bool|null $fGsurAc The f gsur ac. |
||
| 3689 | * @return Constantes2 Returns this Constantes2. |
||
| 3690 | */ |
||
| 3691 | public function setFGsurAc(?bool $fGsurAc): Constantes2 { |
||
| 3695 | |||
| 3696 | /** |
||
| 3697 | * Set the f gsur monf. |
||
| 3698 | * |
||
| 3699 | * @param bool|null $fGsurMonf The f gsur monf. |
||
| 3700 | * @return Constantes2 Returns this Constantes2. |
||
| 3701 | */ |
||
| 3702 | public function setFGsurMonf(?bool $fGsurMonf): Constantes2 { |
||
| 3706 | |||
| 3707 | /** |
||
| 3708 | * Set the familles liees. |
||
| 3709 | * |
||
| 3710 | * @param bool|null $famillesLiees The familles liees. |
||
| 3711 | * @return Constantes2 Returns this Constantes2. |
||
| 3712 | */ |
||
| 3713 | public function setFamillesLiees(?bool $famillesLiees): Constantes2 { |
||
| 3717 | |||
| 3718 | /** |
||
| 3719 | * Set the fg sur cde frn. |
||
| 3720 | * |
||
| 3721 | * @param bool|null $fgSurCdeFrn The fg sur cde frn. |
||
| 3722 | * @return Constantes2 Returns this Constantes2. |
||
| 3723 | */ |
||
| 3724 | public function setFgSurCdeFrn(?bool $fgSurCdeFrn): Constantes2 { |
||
| 3728 | |||
| 3729 | /** |
||
| 3730 | * Set the fiche cli ne pas proposer creation dpdc. |
||
| 3731 | * |
||
| 3732 | * @param bool|null $ficheCliNePasProposerCreationDpdc The fiche cli ne pas proposer creation dpdc. |
||
| 3733 | * @return Constantes2 Returns this Constantes2. |
||
| 3734 | */ |
||
| 3735 | public function setFicheCliNePasProposerCreationDpdc(?bool $ficheCliNePasProposerCreationDpdc): Constantes2 { |
||
| 3739 | |||
| 3740 | /** |
||
| 3741 | * Set the gestion gammes. |
||
| 3742 | * |
||
| 3743 | * @param bool|null $gestionGammes The gestion gammes. |
||
| 3744 | * @return Constantes2 Returns this Constantes2. |
||
| 3745 | */ |
||
| 3746 | public function setGestionGammes(?bool $gestionGammes): Constantes2 { |
||
| 3750 | |||
| 3751 | /** |
||
| 3752 | * Set the gestion pointeuse q fact. |
||
| 3753 | * |
||
| 3754 | * @param bool|null $gestionPointeuseQFact The gestion pointeuse q fact. |
||
| 3755 | * @return Constantes2 Returns this Constantes2. |
||
| 3756 | */ |
||
| 3757 | public function setGestionPointeuseQFact(?bool $gestionPointeuseQFact): Constantes2 { |
||
| 3761 | |||
| 3762 | /** |
||
| 3763 | * Set the gestion pointeuse qc. |
||
| 3764 | * |
||
| 3765 | * @param bool|null $gestionPointeuseQc The gestion pointeuse qc. |
||
| 3766 | * @return Constantes2 Returns this Constantes2. |
||
| 3767 | */ |
||
| 3768 | public function setGestionPointeuseQc(?bool $gestionPointeuseQc): Constantes2 { |
||
| 3772 | |||
| 3773 | /** |
||
| 3774 | * Set the gestion pointeuse qgi. |
||
| 3775 | * |
||
| 3776 | * @param bool|null $gestionPointeuseQgi The gestion pointeuse qgi. |
||
| 3777 | * @return Constantes2 Returns this Constantes2. |
||
| 3778 | */ |
||
| 3779 | public function setGestionPointeuseQgi(?bool $gestionPointeuseQgi): Constantes2 { |
||
| 3783 | |||
| 3784 | /** |
||
| 3785 | * Set the gestion pointeuse qp. |
||
| 3786 | * |
||
| 3787 | * @param bool|null $gestionPointeuseQp The gestion pointeuse qp. |
||
| 3788 | * @return Constantes2 Returns this Constantes2. |
||
| 3789 | */ |
||
| 3790 | public function setGestionPointeuseQp(?bool $gestionPointeuseQp): Constantes2 { |
||
| 3794 | |||
| 3795 | /** |
||
| 3796 | * Set the gestion tarifs transporteurs. |
||
| 3797 | * |
||
| 3798 | * @param bool|null $gestionTarifsTransporteurs The gestion tarifs transporteurs. |
||
| 3799 | * @return Constantes2 Returns this Constantes2. |
||
| 3800 | */ |
||
| 3801 | public function setGestionTarifsTransporteurs(?bool $gestionTarifsTransporteurs): Constantes2 { |
||
| 3805 | |||
| 3806 | /** |
||
| 3807 | * Set the gestion tarifs transporteurs nb dec. |
||
| 3808 | * |
||
| 3809 | * @param int|null $gestionTarifsTransporteursNbDec The gestion tarifs transporteurs nb dec. |
||
| 3810 | * @return Constantes2 Returns this Constantes2. |
||
| 3811 | */ |
||
| 3812 | public function setGestionTarifsTransporteursNbDec(?int $gestionTarifsTransporteursNbDec): Constantes2 { |
||
| 3816 | |||
| 3817 | /** |
||
| 3818 | * Set the gestion variantes. |
||
| 3819 | * |
||
| 3820 | * @param bool|null $gestionVariantes The gestion variantes. |
||
| 3821 | * @return Constantes2 Returns this Constantes2. |
||
| 3822 | */ |
||
| 3823 | public function setGestionVariantes(?bool $gestionVariantes): Constantes2 { |
||
| 3827 | |||
| 3828 | /** |
||
| 3829 | * Set the ht avec jours feries. |
||
| 3830 | * |
||
| 3831 | * @param bool|null $htAvecJoursFeries The ht avec jours feries. |
||
| 3832 | * @return Constantes2 Returns this Constantes2. |
||
| 3833 | */ |
||
| 3834 | public function setHtAvecJoursFeries(?bool $htAvecJoursFeries): Constantes2 { |
||
| 3838 | |||
| 3839 | /** |
||
| 3840 | * Set the ht avec saisie conges. |
||
| 3841 | * |
||
| 3842 | * @param bool|null $htAvecSaisieConges The ht avec saisie conges. |
||
| 3843 | * @return Constantes2 Returns this Constantes2. |
||
| 3844 | */ |
||
| 3845 | public function setHtAvecSaisieConges(?bool $htAvecSaisieConges): Constantes2 { |
||
| 3849 | |||
| 3850 | /** |
||
| 3851 | * Set the ht avec saisie conges codes clients. |
||
| 3852 | * |
||
| 3853 | * @param string|null $htAvecSaisieCongesCodesClients The ht avec saisie conges codes clients. |
||
| 3854 | * @return Constantes2 Returns this Constantes2. |
||
| 3855 | */ |
||
| 3856 | public function setHtAvecSaisieCongesCodesClients(?string $htAvecSaisieCongesCodesClients): Constantes2 { |
||
| 3860 | |||
| 3861 | /** |
||
| 3862 | * Set the ht avec saisie conges codes taches. |
||
| 3863 | * |
||
| 3864 | * @param string|null $htAvecSaisieCongesCodesTaches The ht avec saisie conges codes taches. |
||
| 3865 | * @return Constantes2 Returns this Constantes2. |
||
| 3866 | */ |
||
| 3867 | public function setHtAvecSaisieCongesCodesTaches(?string $htAvecSaisieCongesCodesTaches): Constantes2 { |
||
| 3871 | |||
| 3872 | /** |
||
| 3873 | * Set the increm auto article. |
||
| 3874 | * |
||
| 3875 | * @param bool|null $incremAutoArticle The increm auto article. |
||
| 3876 | * @return Constantes2 Returns this Constantes2. |
||
| 3877 | */ |
||
| 3878 | public function setIncremAutoArticle(?bool $incremAutoArticle): Constantes2 { |
||
| 3882 | |||
| 3883 | /** |
||
| 3884 | * Set the interdire acces archives cpta. |
||
| 3885 | * |
||
| 3886 | * @param bool|null $interdireAccesArchivesCpta The interdire acces archives cpta. |
||
| 3887 | * @return Constantes2 Returns this Constantes2. |
||
| 3888 | */ |
||
| 3889 | public function setInterdireAccesArchivesCpta(?bool $interdireAccesArchivesCpta): Constantes2 { |
||
| 3893 | |||
| 3894 | /** |
||
| 3895 | * Set the interdire acces archives paie. |
||
| 3896 | * |
||
| 3897 | * @param bool|null $interdireAccesArchivesPaie The interdire acces archives paie. |
||
| 3898 | * @return Constantes2 Returns this Constantes2. |
||
| 3899 | */ |
||
| 3900 | public function setInterdireAccesArchivesPaie(?bool $interdireAccesArchivesPaie): Constantes2 { |
||
| 3904 | |||
| 3905 | /** |
||
| 3906 | * Set the interdire acces edition balance. |
||
| 3907 | * |
||
| 3908 | * @param bool|null $interdireAccesEditionBalance The interdire acces edition balance. |
||
| 3909 | * @return Constantes2 Returns this Constantes2. |
||
| 3910 | */ |
||
| 3911 | public function setInterdireAccesEditionBalance(?bool $interdireAccesEditionBalance): Constantes2 { |
||
| 3915 | |||
| 3916 | /** |
||
| 3917 | * Set the interdire acces supp doc arch. |
||
| 3918 | * |
||
| 3919 | * @param bool|null $interdireAccesSuppDocArch The interdire acces supp doc arch. |
||
| 3920 | * @return Constantes2 Returns this Constantes2. |
||
| 3921 | */ |
||
| 3922 | public function setInterdireAccesSuppDocArch(?bool $interdireAccesSuppDocArch): Constantes2 { |
||
| 3926 | |||
| 3927 | /** |
||
| 3928 | * Set the interdire publi doc web. |
||
| 3929 | * |
||
| 3930 | * @param bool|null $interdirePubliDocWeb The interdire publi doc web. |
||
| 3931 | * @return Constantes2 Returns this Constantes2. |
||
| 3932 | */ |
||
| 3933 | public function setInterdirePubliDocWeb(?bool $interdirePubliDocWeb): Constantes2 { |
||
| 3937 | |||
| 3938 | /** |
||
| 3939 | * Set the ip prive qws. |
||
| 3940 | * |
||
| 3941 | * @param string|null $ipPriveQws The ip prive qws. |
||
| 3942 | * @return Constantes2 Returns this Constantes2. |
||
| 3943 | */ |
||
| 3944 | public function setIpPriveQws(?string $ipPriveQws): Constantes2 { |
||
| 3948 | |||
| 3949 | /** |
||
| 3950 | * Set the liaison tda. |
||
| 3951 | * |
||
| 3952 | * @param bool|null $liaisonTda The liaison tda. |
||
| 3953 | * @return Constantes2 Returns this Constantes2. |
||
| 3954 | */ |
||
| 3955 | public function setLiaisonTda(?bool $liaisonTda): Constantes2 { |
||
| 3959 | |||
| 3960 | /** |
||
| 3961 | * Set the lib affectation frn1. |
||
| 3962 | * |
||
| 3963 | * @param string|null $libAffectationFrn1 The lib affectation frn1. |
||
| 3964 | * @return Constantes2 Returns this Constantes2. |
||
| 3965 | */ |
||
| 3966 | public function setLibAffectationFrn1(?string $libAffectationFrn1): Constantes2 { |
||
| 3970 | |||
| 3971 | /** |
||
| 3972 | * Set the lib affectation frn2. |
||
| 3973 | * |
||
| 3974 | * @param string|null $libAffectationFrn2 The lib affectation frn2. |
||
| 3975 | * @return Constantes2 Returns this Constantes2. |
||
| 3976 | */ |
||
| 3977 | public function setLibAffectationFrn2(?string $libAffectationFrn2): Constantes2 { |
||
| 3981 | |||
| 3982 | /** |
||
| 3983 | * Set the lib affectation frn3. |
||
| 3984 | * |
||
| 3985 | * @param string|null $libAffectationFrn3 The lib affectation frn3. |
||
| 3986 | * @return Constantes2 Returns this Constantes2. |
||
| 3987 | */ |
||
| 3988 | public function setLibAffectationFrn3(?string $libAffectationFrn3): Constantes2 { |
||
| 3992 | |||
| 3993 | /** |
||
| 3994 | * Set the lib affectation frn4. |
||
| 3995 | * |
||
| 3996 | * @param string|null $libAffectationFrn4 The lib affectation frn4. |
||
| 3997 | * @return Constantes2 Returns this Constantes2. |
||
| 3998 | */ |
||
| 3999 | public function setLibAffectationFrn4(?string $libAffectationFrn4): Constantes2 { |
||
| 4003 | |||
| 4004 | /** |
||
| 4005 | * Set the lib affectation frn5. |
||
| 4006 | * |
||
| 4007 | * @param string|null $libAffectationFrn5 The lib affectation frn5. |
||
| 4008 | * @return Constantes2 Returns this Constantes2. |
||
| 4009 | */ |
||
| 4010 | public function setLibAffectationFrn5(?string $libAffectationFrn5): Constantes2 { |
||
| 4014 | |||
| 4015 | /** |
||
| 4016 | * Set the lib affectation frn6. |
||
| 4017 | * |
||
| 4018 | * @param string|null $libAffectationFrn6 The lib affectation frn6. |
||
| 4019 | * @return Constantes2 Returns this Constantes2. |
||
| 4020 | */ |
||
| 4021 | public function setLibAffectationFrn6(?string $libAffectationFrn6): Constantes2 { |
||
| 4025 | |||
| 4026 | /** |
||
| 4027 | * Set the lib affectation frn7. |
||
| 4028 | * |
||
| 4029 | * @param string|null $libAffectationFrn7 The lib affectation frn7. |
||
| 4030 | * @return Constantes2 Returns this Constantes2. |
||
| 4031 | */ |
||
| 4032 | public function setLibAffectationFrn7(?string $libAffectationFrn7): Constantes2 { |
||
| 4036 | |||
| 4037 | /** |
||
| 4038 | * Set the lib critere article21. |
||
| 4039 | * |
||
| 4040 | * @param string|null $libCritereArticle21 The lib critere article21. |
||
| 4041 | * @return Constantes2 Returns this Constantes2. |
||
| 4042 | */ |
||
| 4043 | public function setLibCritereArticle21(?string $libCritereArticle21): Constantes2 { |
||
| 4047 | |||
| 4048 | /** |
||
| 4049 | * Set the lib critere article210. |
||
| 4050 | * |
||
| 4051 | * @param string|null $libCritereArticle210 The lib critere article210. |
||
| 4052 | * @return Constantes2 Returns this Constantes2. |
||
| 4053 | */ |
||
| 4054 | public function setLibCritereArticle210(?string $libCritereArticle210): Constantes2 { |
||
| 4058 | |||
| 4059 | /** |
||
| 4060 | * Set the lib critere article22. |
||
| 4061 | * |
||
| 4062 | * @param string|null $libCritereArticle22 The lib critere article22. |
||
| 4063 | * @return Constantes2 Returns this Constantes2. |
||
| 4064 | */ |
||
| 4065 | public function setLibCritereArticle22(?string $libCritereArticle22): Constantes2 { |
||
| 4069 | |||
| 4070 | /** |
||
| 4071 | * Set the lib critere article23. |
||
| 4072 | * |
||
| 4073 | * @param string|null $libCritereArticle23 The lib critere article23. |
||
| 4074 | * @return Constantes2 Returns this Constantes2. |
||
| 4075 | */ |
||
| 4076 | public function setLibCritereArticle23(?string $libCritereArticle23): Constantes2 { |
||
| 4080 | |||
| 4081 | /** |
||
| 4082 | * Set the lib critere article24. |
||
| 4083 | * |
||
| 4084 | * @param string|null $libCritereArticle24 The lib critere article24. |
||
| 4085 | * @return Constantes2 Returns this Constantes2. |
||
| 4086 | */ |
||
| 4087 | public function setLibCritereArticle24(?string $libCritereArticle24): Constantes2 { |
||
| 4091 | |||
| 4092 | /** |
||
| 4093 | * Set the lib critere article25. |
||
| 4094 | * |
||
| 4095 | * @param string|null $libCritereArticle25 The lib critere article25. |
||
| 4096 | * @return Constantes2 Returns this Constantes2. |
||
| 4097 | */ |
||
| 4098 | public function setLibCritereArticle25(?string $libCritereArticle25): Constantes2 { |
||
| 4102 | |||
| 4103 | /** |
||
| 4104 | * Set the lib critere article26. |
||
| 4105 | * |
||
| 4106 | * @param string|null $libCritereArticle26 The lib critere article26. |
||
| 4107 | * @return Constantes2 Returns this Constantes2. |
||
| 4108 | */ |
||
| 4109 | public function setLibCritereArticle26(?string $libCritereArticle26): Constantes2 { |
||
| 4113 | |||
| 4114 | /** |
||
| 4115 | * Set the lib critere article27. |
||
| 4116 | * |
||
| 4117 | * @param string|null $libCritereArticle27 The lib critere article27. |
||
| 4118 | * @return Constantes2 Returns this Constantes2. |
||
| 4119 | */ |
||
| 4120 | public function setLibCritereArticle27(?string $libCritereArticle27): Constantes2 { |
||
| 4124 | |||
| 4125 | /** |
||
| 4126 | * Set the lib critere article28. |
||
| 4127 | * |
||
| 4128 | * @param string|null $libCritereArticle28 The lib critere article28. |
||
| 4129 | * @return Constantes2 Returns this Constantes2. |
||
| 4130 | */ |
||
| 4131 | public function setLibCritereArticle28(?string $libCritereArticle28): Constantes2 { |
||
| 4135 | |||
| 4136 | /** |
||
| 4137 | * Set the lib critere article29. |
||
| 4138 | * |
||
| 4139 | * @param string|null $libCritereArticle29 The lib critere article29. |
||
| 4140 | * @return Constantes2 Returns this Constantes2. |
||
| 4141 | */ |
||
| 4142 | public function setLibCritereArticle29(?string $libCritereArticle29): Constantes2 { |
||
| 4146 | |||
| 4147 | /** |
||
| 4148 | * Set the lib critere ent piece ac1. |
||
| 4149 | * |
||
| 4150 | * @param string|null $libCritereEntPieceAc1 The lib critere ent piece ac1. |
||
| 4151 | * @return Constantes2 Returns this Constantes2. |
||
| 4152 | */ |
||
| 4153 | public function setLibCritereEntPieceAc1(?string $libCritereEntPieceAc1): Constantes2 { |
||
| 4157 | |||
| 4158 | /** |
||
| 4159 | * Set the lib critere ent piece ac10. |
||
| 4160 | * |
||
| 4161 | * @param string|null $libCritereEntPieceAc10 The lib critere ent piece ac10. |
||
| 4162 | * @return Constantes2 Returns this Constantes2. |
||
| 4163 | */ |
||
| 4164 | public function setLibCritereEntPieceAc10(?string $libCritereEntPieceAc10): Constantes2 { |
||
| 4168 | |||
| 4169 | /** |
||
| 4170 | * Set the lib critere ent piece ac2. |
||
| 4171 | * |
||
| 4172 | * @param string|null $libCritereEntPieceAc2 The lib critere ent piece ac2. |
||
| 4173 | * @return Constantes2 Returns this Constantes2. |
||
| 4174 | */ |
||
| 4175 | public function setLibCritereEntPieceAc2(?string $libCritereEntPieceAc2): Constantes2 { |
||
| 4179 | |||
| 4180 | /** |
||
| 4181 | * Set the lib critere ent piece ac3. |
||
| 4182 | * |
||
| 4183 | * @param string|null $libCritereEntPieceAc3 The lib critere ent piece ac3. |
||
| 4184 | * @return Constantes2 Returns this Constantes2. |
||
| 4185 | */ |
||
| 4186 | public function setLibCritereEntPieceAc3(?string $libCritereEntPieceAc3): Constantes2 { |
||
| 4190 | |||
| 4191 | /** |
||
| 4192 | * Set the lib critere ent piece ac4. |
||
| 4193 | * |
||
| 4194 | * @param string|null $libCritereEntPieceAc4 The lib critere ent piece ac4. |
||
| 4195 | * @return Constantes2 Returns this Constantes2. |
||
| 4196 | */ |
||
| 4197 | public function setLibCritereEntPieceAc4(?string $libCritereEntPieceAc4): Constantes2 { |
||
| 4201 | |||
| 4202 | /** |
||
| 4203 | * Set the lib critere ent piece ac5. |
||
| 4204 | * |
||
| 4205 | * @param string|null $libCritereEntPieceAc5 The lib critere ent piece ac5. |
||
| 4206 | * @return Constantes2 Returns this Constantes2. |
||
| 4207 | */ |
||
| 4208 | public function setLibCritereEntPieceAc5(?string $libCritereEntPieceAc5): Constantes2 { |
||
| 4212 | |||
| 4213 | /** |
||
| 4214 | * Set the lib critere ent piece ac6. |
||
| 4215 | * |
||
| 4216 | * @param string|null $libCritereEntPieceAc6 The lib critere ent piece ac6. |
||
| 4217 | * @return Constantes2 Returns this Constantes2. |
||
| 4218 | */ |
||
| 4219 | public function setLibCritereEntPieceAc6(?string $libCritereEntPieceAc6): Constantes2 { |
||
| 4223 | |||
| 4224 | /** |
||
| 4225 | * Set the lib critere ent piece ac7. |
||
| 4226 | * |
||
| 4227 | * @param string|null $libCritereEntPieceAc7 The lib critere ent piece ac7. |
||
| 4228 | * @return Constantes2 Returns this Constantes2. |
||
| 4229 | */ |
||
| 4230 | public function setLibCritereEntPieceAc7(?string $libCritereEntPieceAc7): Constantes2 { |
||
| 4234 | |||
| 4235 | /** |
||
| 4236 | * Set the lib critere ent piece ac8. |
||
| 4237 | * |
||
| 4238 | * @param string|null $libCritereEntPieceAc8 The lib critere ent piece ac8. |
||
| 4239 | * @return Constantes2 Returns this Constantes2. |
||
| 4240 | */ |
||
| 4241 | public function setLibCritereEntPieceAc8(?string $libCritereEntPieceAc8): Constantes2 { |
||
| 4245 | |||
| 4246 | /** |
||
| 4247 | * Set the lib critere ent piece ac9. |
||
| 4248 | * |
||
| 4249 | * @param string|null $libCritereEntPieceAc9 The lib critere ent piece ac9. |
||
| 4250 | * @return Constantes2 Returns this Constantes2. |
||
| 4251 | */ |
||
| 4252 | public function setLibCritereEntPieceAc9(?string $libCritereEntPieceAc9): Constantes2 { |
||
| 4256 | |||
| 4257 | /** |
||
| 4258 | * Set the lib frais1. |
||
| 4259 | * |
||
| 4260 | * @param string|null $libFrais1 The lib frais1. |
||
| 4261 | * @return Constantes2 Returns this Constantes2. |
||
| 4262 | */ |
||
| 4263 | public function setLibFrais1(?string $libFrais1): Constantes2 { |
||
| 4267 | |||
| 4268 | /** |
||
| 4269 | * Set the lib frais2. |
||
| 4270 | * |
||
| 4271 | * @param string|null $libFrais2 The lib frais2. |
||
| 4272 | * @return Constantes2 Returns this Constantes2. |
||
| 4273 | */ |
||
| 4274 | public function setLibFrais2(?string $libFrais2): Constantes2 { |
||
| 4278 | |||
| 4279 | /** |
||
| 4280 | * Set the lib frais3. |
||
| 4281 | * |
||
| 4282 | * @param string|null $libFrais3 The lib frais3. |
||
| 4283 | * @return Constantes2 Returns this Constantes2. |
||
| 4284 | */ |
||
| 4285 | public function setLibFrais3(?string $libFrais3): Constantes2 { |
||
| 4289 | |||
| 4290 | /** |
||
| 4291 | * Set the libelle gamme. |
||
| 4292 | * |
||
| 4293 | * @param string|null $libelleGamme The libelle gamme. |
||
| 4294 | * @return Constantes2 Returns this Constantes2. |
||
| 4295 | */ |
||
| 4296 | public function setLibelleGamme(?string $libelleGamme): Constantes2 { |
||
| 4300 | |||
| 4301 | /** |
||
| 4302 | * Set the libelle variante. |
||
| 4303 | * |
||
| 4304 | * @param string|null $libelleVariante The libelle variante. |
||
| 4305 | * @return Constantes2 Returns this Constantes2. |
||
| 4306 | */ |
||
| 4307 | public function setLibelleVariante(?string $libelleVariante): Constantes2 { |
||
| 4311 | |||
| 4312 | /** |
||
| 4313 | * Set the longueur num aff. |
||
| 4314 | * |
||
| 4315 | * @param int|null $longueurNumAff The longueur num aff. |
||
| 4316 | * @return Constantes2 Returns this Constantes2. |
||
| 4317 | */ |
||
| 4318 | public function setLongueurNumAff(?int $longueurNumAff): Constantes2 { |
||
| 4322 | |||
| 4323 | /** |
||
| 4324 | * Set the maj codes activite cga. |
||
| 4325 | * |
||
| 4326 | * @param string|null $majCodesActiviteCga The maj codes activite cga. |
||
| 4327 | * @return Constantes2 Returns this Constantes2. |
||
| 4328 | */ |
||
| 4329 | public function setMajCodesActiviteCga(?string $majCodesActiviteCga): Constantes2 { |
||
| 4333 | |||
| 4334 | /** |
||
| 4335 | * Set the mess aspod. |
||
| 4336 | * |
||
| 4337 | * @param bool|null $messAspod The mess aspod. |
||
| 4338 | * @return Constantes2 Returns this Constantes2. |
||
| 4339 | */ |
||
| 4340 | public function setMessAspod(?bool $messAspod): Constantes2 { |
||
| 4344 | |||
| 4345 | /** |
||
| 4346 | * Set the modif affaire. |
||
| 4347 | * |
||
| 4348 | * @param string|null $modifAffaire The modif affaire. |
||
| 4349 | * @return Constantes2 Returns this Constantes2. |
||
| 4350 | */ |
||
| 4351 | public function setModifAffaire(?string $modifAffaire): Constantes2 { |
||
| 4355 | |||
| 4356 | /** |
||
| 4357 | * Set the modif droits asp. |
||
| 4358 | * |
||
| 4359 | * @param bool|null $modifDroitsAsp The modif droits asp. |
||
| 4360 | * @return Constantes2 Returns this Constantes2. |
||
| 4361 | */ |
||
| 4362 | public function setModifDroitsAsp(?bool $modifDroitsAsp): Constantes2 { |
||
| 4366 | |||
| 4367 | /** |
||
| 4368 | * Set the nb max gamme. |
||
| 4369 | * |
||
| 4370 | * @param int|null $nbMaxGamme The nb max gamme. |
||
| 4371 | * @return Constantes2 Returns this Constantes2. |
||
| 4372 | */ |
||
| 4373 | public function setNbMaxGamme(?int $nbMaxGamme): Constantes2 { |
||
| 4377 | |||
| 4378 | /** |
||
| 4379 | * Set the ne pas creer cpt cli. |
||
| 4380 | * |
||
| 4381 | * @param bool|null $nePasCreerCptCli The ne pas creer cpt cli. |
||
| 4382 | * @return Constantes2 Returns this Constantes2. |
||
| 4383 | */ |
||
| 4384 | public function setNePasCreerCptCli(?bool $nePasCreerCptCli): Constantes2 { |
||
| 4388 | |||
| 4389 | /** |
||
| 4390 | * Set the ne pas creer cpt frn. |
||
| 4391 | * |
||
| 4392 | * @param bool|null $nePasCreerCptFrn The ne pas creer cpt frn. |
||
| 4393 | * @return Constantes2 Returns this Constantes2. |
||
| 4394 | */ |
||
| 4395 | public function setNePasCreerCptFrn(?bool $nePasCreerCptFrn): Constantes2 { |
||
| 4399 | |||
| 4400 | /** |
||
| 4401 | * Set the new db infos. |
||
| 4402 | * |
||
| 4403 | * @param bool|null $newDbInfos The new db infos. |
||
| 4404 | * @return Constantes2 Returns this Constantes2. |
||
| 4405 | */ |
||
| 4406 | public function setNewDbInfos(?bool $newDbInfos): Constantes2 { |
||
| 4410 | |||
| 4411 | /** |
||
| 4412 | * Set the new q bureau. |
||
| 4413 | * |
||
| 4414 | * @param bool|null $newQBureau The new q bureau. |
||
| 4415 | * @return Constantes2 Returns this Constantes2. |
||
| 4416 | */ |
||
| 4417 | public function setNewQBureau(?bool $newQBureau): Constantes2 { |
||
| 4421 | |||
| 4422 | /** |
||
| 4423 | * Set the no doss fact cab. |
||
| 4424 | * |
||
| 4425 | * @param string|null $noDossFactCab The no doss fact cab. |
||
| 4426 | * @return Constantes2 Returns this Constantes2. |
||
| 4427 | */ |
||
| 4428 | public function setNoDossFactCab(?string $noDossFactCab): Constantes2 { |
||
| 4432 | |||
| 4433 | /** |
||
| 4434 | * Set the pas de lien comptabilite. |
||
| 4435 | * |
||
| 4436 | * @param bool|null $pasDeLienComptabilite The pas de lien comptabilite. |
||
| 4437 | * @return Constantes2 Returns this Constantes2. |
||
| 4438 | */ |
||
| 4439 | public function setPasDeLienComptabilite(?bool $pasDeLienComptabilite): Constantes2 { |
||
| 4443 | |||
| 4444 | /** |
||
| 4445 | * Set the pme dossier rattachement. |
||
| 4446 | * |
||
| 4447 | * @param string|null $pmeDossierRattachement The pme dossier rattachement. |
||
| 4448 | * @return Constantes2 Returns this Constantes2. |
||
| 4449 | */ |
||
| 4450 | public function setPmeDossierRattachement(?string $pmeDossierRattachement): Constantes2 { |
||
| 4454 | |||
| 4455 | /** |
||
| 4456 | * Set the prefixe code client. |
||
| 4457 | * |
||
| 4458 | * @param string|null $prefixeCodeClient The prefixe code client. |
||
| 4459 | * @return Constantes2 Returns this Constantes2. |
||
| 4460 | */ |
||
| 4461 | public function setPrefixeCodeClient(?string $prefixeCodeClient): Constantes2 { |
||
| 4465 | |||
| 4466 | /** |
||
| 4467 | * Set the prochain code client. |
||
| 4468 | * |
||
| 4469 | * @param string|null $prochainCodeClient The prochain code client. |
||
| 4470 | * @return Constantes2 Returns this Constantes2. |
||
| 4471 | */ |
||
| 4472 | public function setProchainCodeClient(?string $prochainCodeClient): Constantes2 { |
||
| 4476 | |||
| 4477 | /** |
||
| 4478 | * Set the proxy actif. |
||
| 4479 | * |
||
| 4480 | * @param bool|null $proxyActif The proxy actif. |
||
| 4481 | * @return Constantes2 Returns this Constantes2. |
||
| 4482 | */ |
||
| 4483 | public function setProxyActif(?bool $proxyActif): Constantes2 { |
||
| 4487 | |||
| 4488 | /** |
||
| 4489 | * Set the proxy adresse. |
||
| 4490 | * |
||
| 4491 | * @param string|null $proxyAdresse The proxy adresse. |
||
| 4492 | * @return Constantes2 Returns this Constantes2. |
||
| 4493 | */ |
||
| 4494 | public function setProxyAdresse(?string $proxyAdresse): Constantes2 { |
||
| 4498 | |||
| 4499 | /** |
||
| 4500 | * Set the proxy port. |
||
| 4501 | * |
||
| 4502 | * @param int|null $proxyPort The proxy port. |
||
| 4503 | * @return Constantes2 Returns this Constantes2. |
||
| 4504 | */ |
||
| 4505 | public function setProxyPort(?int $proxyPort): Constantes2 { |
||
| 4509 | |||
| 4510 | /** |
||
| 4511 | * Set the q pub web code collaborateur dest. |
||
| 4512 | * |
||
| 4513 | * @param string|null $qPubWebCodeCollaborateurDest The q pub web code collaborateur dest. |
||
| 4514 | * @return Constantes2 Returns this Constantes2. |
||
| 4515 | */ |
||
| 4516 | public function setQPubWebCodeCollaborateurDest(?string $qPubWebCodeCollaborateurDest): Constantes2 { |
||
| 4520 | |||
| 4521 | /** |
||
| 4522 | * Set the qws chemin logo. |
||
| 4523 | * |
||
| 4524 | * @param string|null $qwsCheminLogo The qws chemin logo. |
||
| 4525 | * @return Constantes2 Returns this Constantes2. |
||
| 4526 | */ |
||
| 4527 | public function setQwsCheminLogo(?string $qwsCheminLogo): Constantes2 { |
||
| 4531 | |||
| 4532 | /** |
||
| 4533 | * Set the qws code ipl. |
||
| 4534 | * |
||
| 4535 | * @param string|null $qwsCodeIpl The qws code ipl. |
||
| 4536 | * @return Constantes2 Returns this Constantes2. |
||
| 4537 | */ |
||
| 4538 | public function setQwsCodeIpl(?string $qwsCodeIpl): Constantes2 { |
||
| 4542 | |||
| 4543 | /** |
||
| 4544 | * Set the qws http securise. |
||
| 4545 | * |
||
| 4546 | * @param bool|null $qwsHttpSecurise The qws http securise. |
||
| 4547 | * @return Constantes2 Returns this Constantes2. |
||
| 4548 | */ |
||
| 4549 | public function setQwsHttpSecurise(?bool $qwsHttpSecurise): Constantes2 { |
||
| 4553 | |||
| 4554 | /** |
||
| 4555 | * Set the qws nom produit. |
||
| 4556 | * |
||
| 4557 | * @param string|null $qwsNomProduit The qws nom produit. |
||
| 4558 | * @return Constantes2 Returns this Constantes2. |
||
| 4559 | */ |
||
| 4560 | public function setQwsNomProduit(?string $qwsNomProduit): Constantes2 { |
||
| 4564 | |||
| 4565 | /** |
||
| 4566 | * Set the qws utiliser logo cabinet. |
||
| 4567 | * |
||
| 4568 | * @param bool|null $qwsUtiliserLogoCabinet The qws utiliser logo cabinet. |
||
| 4569 | * @return Constantes2 Returns this Constantes2. |
||
| 4570 | */ |
||
| 4571 | public function setQwsUtiliserLogoCabinet(?bool $qwsUtiliserLogoCabinet): Constantes2 { |
||
| 4575 | |||
| 4576 | /** |
||
| 4577 | * Set the qwsipl. |
||
| 4578 | * |
||
| 4579 | * @param string|null $qwsipl The qwsipl. |
||
| 4580 | * @return Constantes2 Returns this Constantes2. |
||
| 4581 | */ |
||
| 4582 | public function setQwsipl(?string $qwsipl): Constantes2 { |
||
| 4586 | |||
| 4587 | /** |
||
| 4588 | * Set the rac data paie. |
||
| 4589 | * |
||
| 4590 | * @param string|null $racDataPaie The rac data paie. |
||
| 4591 | * @return Constantes2 Returns this Constantes2. |
||
| 4592 | */ |
||
| 4593 | public function setRacDataPaie(?string $racDataPaie): Constantes2 { |
||
| 4597 | |||
| 4598 | /** |
||
| 4599 | * Set the rapport q infos. |
||
| 4600 | * |
||
| 4601 | * @param string|null $rapportQInfos The rapport q infos. |
||
| 4602 | * @return Constantes2 Returns this Constantes2. |
||
| 4603 | */ |
||
| 4604 | public function setRapportQInfos(?string $rapportQInfos): Constantes2 { |
||
| 4608 | |||
| 4609 | /** |
||
| 4610 | * Set the req demandeur. |
||
| 4611 | * |
||
| 4612 | * @param string|null $reqDemandeur The req demandeur. |
||
| 4613 | * @return Constantes2 Returns this Constantes2. |
||
| 4614 | */ |
||
| 4615 | public function setReqDemandeur(?string $reqDemandeur): Constantes2 { |
||
| 4619 | |||
| 4620 | /** |
||
| 4621 | * Set the saisie propriete mess. |
||
| 4622 | * |
||
| 4623 | * @param int|null $saisieProprieteMess The saisie propriete mess. |
||
| 4624 | * @return Constantes2 Returns this Constantes2. |
||
| 4625 | */ |
||
| 4626 | public function setSaisieProprieteMess(?int $saisieProprieteMess): Constantes2 { |
||
| 4630 | |||
| 4631 | /** |
||
| 4632 | * Set the saisie regl direct. |
||
| 4633 | * |
||
| 4634 | * @param bool|null $saisieReglDirect The saisie regl direct. |
||
| 4635 | * @return Constantes2 Returns this Constantes2. |
||
| 4636 | */ |
||
| 4637 | public function setSaisieReglDirect(?bool $saisieReglDirect): Constantes2 { |
||
| 4641 | |||
| 4642 | /** |
||
| 4643 | * Set the saisie temps nb j apres. |
||
| 4644 | * |
||
| 4645 | * @param int|null $saisieTempsNbJApres The saisie temps nb j apres. |
||
| 4646 | * @return Constantes2 Returns this Constantes2. |
||
| 4647 | */ |
||
| 4648 | public function setSaisieTempsNbJApres(?int $saisieTempsNbJApres): Constantes2 { |
||
| 4652 | |||
| 4653 | /** |
||
| 4654 | * Set the saisie temps nb j avant. |
||
| 4655 | * |
||
| 4656 | * @param int|null $saisieTempsNbJAvant The saisie temps nb j avant. |
||
| 4657 | * @return Constantes2 Returns this Constantes2. |
||
| 4658 | */ |
||
| 4659 | public function setSaisieTempsNbJAvant(?int $saisieTempsNbJAvant): Constantes2 { |
||
| 4663 | |||
| 4664 | /** |
||
| 4665 | * Set the saisie tp ne pas afficher dp. |
||
| 4666 | * |
||
| 4667 | * @param bool|null $saisieTpNePasAfficherDp The saisie tp ne pas afficher dp. |
||
| 4668 | * @return Constantes2 Returns this Constantes2. |
||
| 4669 | */ |
||
| 4670 | public function setSaisieTpNePasAfficherDp(?bool $saisieTpNePasAfficherDp): Constantes2 { |
||
| 4674 | |||
| 4675 | /** |
||
| 4676 | * Set the saisie tp onglet unique dp. |
||
| 4677 | * |
||
| 4678 | * @param bool|null $saisieTpOngletUniqueDp The saisie tp onglet unique dp. |
||
| 4679 | * @return Constantes2 Returns this Constantes2. |
||
| 4680 | */ |
||
| 4681 | public function setSaisieTpOngletUniqueDp(?bool $saisieTpOngletUniqueDp): Constantes2 { |
||
| 4685 | |||
| 4686 | /** |
||
| 4687 | * Set the saisie tp onglet unique tn. |
||
| 4688 | * |
||
| 4689 | * @param bool|null $saisieTpOngletUniqueTn The saisie tp onglet unique tn. |
||
| 4690 | * @return Constantes2 Returns this Constantes2. |
||
| 4691 | */ |
||
| 4692 | public function setSaisieTpOngletUniqueTn(?bool $saisieTpOngletUniqueTn): Constantes2 { |
||
| 4696 | |||
| 4697 | /** |
||
| 4698 | * Set the save histo memo2 file. |
||
| 4699 | * |
||
| 4700 | * @param bool|null $saveHistoMemo2File The save histo memo2 file. |
||
| 4701 | * @return Constantes2 Returns this Constantes2. |
||
| 4702 | */ |
||
| 4703 | public function setSaveHistoMemo2File(?bool $saveHistoMemo2File): Constantes2 { |
||
| 4707 | |||
| 4708 | /** |
||
| 4709 | * Set the sel av lst perso acces gestion modifiables. |
||
| 4710 | * |
||
| 4711 | * @param bool|null $selAvLstPersoAccesGestionModifiables The sel av lst perso acces gestion modifiables. |
||
| 4712 | * @return Constantes2 Returns this Constantes2. |
||
| 4713 | */ |
||
| 4714 | public function setSelAvLstPersoAccesGestionModifiables(?bool $selAvLstPersoAccesGestionModifiables): Constantes2 { |
||
| 4718 | |||
| 4719 | /** |
||
| 4720 | * Set the sel av lst perso acces gestionnaire. |
||
| 4721 | * |
||
| 4722 | * @param bool|null $selAvLstPersoAccesGestionnaire The sel av lst perso acces gestionnaire. |
||
| 4723 | * @return Constantes2 Returns this Constantes2. |
||
| 4724 | */ |
||
| 4725 | public function setSelAvLstPersoAccesGestionnaire(?bool $selAvLstPersoAccesGestionnaire): Constantes2 { |
||
| 4729 | |||
| 4730 | /** |
||
| 4731 | * Set the sel av lst perso champs modif. |
||
| 4732 | * |
||
| 4733 | * @param bool|null $selAvLstPersoChampsModif The sel av lst perso champs modif. |
||
| 4734 | * @return Constantes2 Returns this Constantes2. |
||
| 4735 | */ |
||
| 4736 | public function setSelAvLstPersoChampsModif(?bool $selAvLstPersoChampsModif): Constantes2 { |
||
| 4740 | |||
| 4741 | /** |
||
| 4742 | * Set the sel av lst perso copie colonne. |
||
| 4743 | * |
||
| 4744 | * @param bool|null $selAvLstPersoCopieColonne The sel av lst perso copie colonne. |
||
| 4745 | * @return Constantes2 Returns this Constantes2. |
||
| 4746 | */ |
||
| 4747 | public function setSelAvLstPersoCopieColonne(?bool $selAvLstPersoCopieColonne): Constantes2 { |
||
| 4751 | |||
| 4752 | /** |
||
| 4753 | * Set the sel av lst perso interdire creat. |
||
| 4754 | * |
||
| 4755 | * @param bool|null $selAvLstPersoInterdireCreat The sel av lst perso interdire creat. |
||
| 4756 | * @return Constantes2 Returns this Constantes2. |
||
| 4757 | */ |
||
| 4758 | public function setSelAvLstPersoInterdireCreat(?bool $selAvLstPersoInterdireCreat): Constantes2 { |
||
| 4762 | |||
| 4763 | /** |
||
| 4764 | * Set the sms api key. |
||
| 4765 | * |
||
| 4766 | * @param string|null $smsApiKey The sms api key. |
||
| 4767 | * @return Constantes2 Returns this Constantes2. |
||
| 4768 | */ |
||
| 4769 | public function setSmsApiKey(?string $smsApiKey): Constantes2 { |
||
| 4773 | |||
| 4774 | /** |
||
| 4775 | * Set the sms droit acces. |
||
| 4776 | * |
||
| 4777 | * @param bool|null $smsDroitAcces The sms droit acces. |
||
| 4778 | * @return Constantes2 Returns this Constantes2. |
||
| 4779 | */ |
||
| 4780 | public function setSmsDroitAcces(?bool $smsDroitAcces): Constantes2 { |
||
| 4784 | |||
| 4785 | /** |
||
| 4786 | * Set the sms key. |
||
| 4787 | * |
||
| 4788 | * @param string|null $smsKey The sms key. |
||
| 4789 | * @return Constantes2 Returns this Constantes2. |
||
| 4790 | */ |
||
| 4791 | public function setSmsKey(?string $smsKey): Constantes2 { |
||
| 4795 | |||
| 4796 | /** |
||
| 4797 | * Set the sms prestataire. |
||
| 4798 | * |
||
| 4799 | * @param string|null $smsPrestataire The sms prestataire. |
||
| 4800 | * @return Constantes2 Returns this Constantes2. |
||
| 4801 | */ |
||
| 4802 | public function setSmsPrestataire(?string $smsPrestataire): Constantes2 { |
||
| 4806 | |||
| 4807 | /** |
||
| 4808 | * Set the sms sender. |
||
| 4809 | * |
||
| 4810 | * @param string|null $smsSender The sms sender. |
||
| 4811 | * @return Constantes2 Returns this Constantes2. |
||
| 4812 | */ |
||
| 4813 | public function setSmsSender(?string $smsSender): Constantes2 { |
||
| 4817 | |||
| 4818 | /** |
||
| 4819 | * Set the sms type. |
||
| 4820 | * |
||
| 4821 | * @param int|null $smsType The sms type. |
||
| 4822 | * @return Constantes2 Returns this Constantes2. |
||
| 4823 | */ |
||
| 4824 | public function setSmsType(?int $smsType): Constantes2 { |
||
| 4828 | |||
| 4829 | /** |
||
| 4830 | * Set the sms user login. |
||
| 4831 | * |
||
| 4832 | * @param string|null $smsUserLogin The sms user login. |
||
| 4833 | * @return Constantes2 Returns this Constantes2. |
||
| 4834 | */ |
||
| 4835 | public function setSmsUserLogin(?string $smsUserLogin): Constantes2 { |
||
| 4839 | |||
| 4840 | /** |
||
| 4841 | * Set the solde cpta od. |
||
| 4842 | * |
||
| 4843 | * @param bool|null $soldeCptaOd The solde cpta od. |
||
| 4844 | * @return Constantes2 Returns this Constantes2. |
||
| 4845 | */ |
||
| 4846 | public function setSoldeCptaOd(?bool $soldeCptaOd): Constantes2 { |
||
| 4850 | |||
| 4851 | /** |
||
| 4852 | * Set the suivi client intitule generic1. |
||
| 4853 | * |
||
| 4854 | * @param string|null $suiviClientIntituleGeneric1 The suivi client intitule generic1. |
||
| 4855 | * @return Constantes2 Returns this Constantes2. |
||
| 4856 | */ |
||
| 4857 | public function setSuiviClientIntituleGeneric1(?string $suiviClientIntituleGeneric1): Constantes2 { |
||
| 4861 | |||
| 4862 | /** |
||
| 4863 | * Set the suivi client intitule generic10. |
||
| 4864 | * |
||
| 4865 | * @param string|null $suiviClientIntituleGeneric10 The suivi client intitule generic10. |
||
| 4866 | * @return Constantes2 Returns this Constantes2. |
||
| 4867 | */ |
||
| 4868 | public function setSuiviClientIntituleGeneric10(?string $suiviClientIntituleGeneric10): Constantes2 { |
||
| 4872 | |||
| 4873 | /** |
||
| 4874 | * Set the suivi client intitule generic2. |
||
| 4875 | * |
||
| 4876 | * @param string|null $suiviClientIntituleGeneric2 The suivi client intitule generic2. |
||
| 4877 | * @return Constantes2 Returns this Constantes2. |
||
| 4878 | */ |
||
| 4879 | public function setSuiviClientIntituleGeneric2(?string $suiviClientIntituleGeneric2): Constantes2 { |
||
| 4883 | |||
| 4884 | /** |
||
| 4885 | * Set the suivi client intitule generic3. |
||
| 4886 | * |
||
| 4887 | * @param string|null $suiviClientIntituleGeneric3 The suivi client intitule generic3. |
||
| 4888 | * @return Constantes2 Returns this Constantes2. |
||
| 4889 | */ |
||
| 4890 | public function setSuiviClientIntituleGeneric3(?string $suiviClientIntituleGeneric3): Constantes2 { |
||
| 4894 | |||
| 4895 | /** |
||
| 4896 | * Set the suivi client intitule generic4. |
||
| 4897 | * |
||
| 4898 | * @param string|null $suiviClientIntituleGeneric4 The suivi client intitule generic4. |
||
| 4899 | * @return Constantes2 Returns this Constantes2. |
||
| 4900 | */ |
||
| 4901 | public function setSuiviClientIntituleGeneric4(?string $suiviClientIntituleGeneric4): Constantes2 { |
||
| 4905 | |||
| 4906 | /** |
||
| 4907 | * Set the suivi client intitule generic5. |
||
| 4908 | * |
||
| 4909 | * @param string|null $suiviClientIntituleGeneric5 The suivi client intitule generic5. |
||
| 4910 | * @return Constantes2 Returns this Constantes2. |
||
| 4911 | */ |
||
| 4912 | public function setSuiviClientIntituleGeneric5(?string $suiviClientIntituleGeneric5): Constantes2 { |
||
| 4916 | |||
| 4917 | /** |
||
| 4918 | * Set the suivi client intitule generic6. |
||
| 4919 | * |
||
| 4920 | * @param string|null $suiviClientIntituleGeneric6 The suivi client intitule generic6. |
||
| 4921 | * @return Constantes2 Returns this Constantes2. |
||
| 4922 | */ |
||
| 4923 | public function setSuiviClientIntituleGeneric6(?string $suiviClientIntituleGeneric6): Constantes2 { |
||
| 4927 | |||
| 4928 | /** |
||
| 4929 | * Set the suivi client intitule generic7. |
||
| 4930 | * |
||
| 4931 | * @param string|null $suiviClientIntituleGeneric7 The suivi client intitule generic7. |
||
| 4932 | * @return Constantes2 Returns this Constantes2. |
||
| 4933 | */ |
||
| 4934 | public function setSuiviClientIntituleGeneric7(?string $suiviClientIntituleGeneric7): Constantes2 { |
||
| 4938 | |||
| 4939 | /** |
||
| 4940 | * Set the suivi client intitule generic8. |
||
| 4941 | * |
||
| 4942 | * @param string|null $suiviClientIntituleGeneric8 The suivi client intitule generic8. |
||
| 4943 | * @return Constantes2 Returns this Constantes2. |
||
| 4944 | */ |
||
| 4945 | public function setSuiviClientIntituleGeneric8(?string $suiviClientIntituleGeneric8): Constantes2 { |
||
| 4949 | |||
| 4950 | /** |
||
| 4951 | * Set the suivi client intitule generic9. |
||
| 4952 | * |
||
| 4953 | * @param string|null $suiviClientIntituleGeneric9 The suivi client intitule generic9. |
||
| 4954 | * @return Constantes2 Returns this Constantes2. |
||
| 4955 | */ |
||
| 4956 | public function setSuiviClientIntituleGeneric9(?string $suiviClientIntituleGeneric9): Constantes2 { |
||
| 4960 | |||
| 4961 | /** |
||
| 4962 | * Set the tp acces encours client. |
||
| 4963 | * |
||
| 4964 | * @param bool|null $tpAccesEncoursClient The tp acces encours client. |
||
| 4965 | * @return Constantes2 Returns this Constantes2. |
||
| 4966 | */ |
||
| 4967 | public function setTpAccesEncoursClient(?bool $tpAccesEncoursClient): Constantes2 { |
||
| 4971 | |||
| 4972 | /** |
||
| 4973 | * Set the tp avancement a la ligne. |
||
| 4974 | * |
||
| 4975 | * @param bool|null $tpAvancementALaLigne The tp avancement a la ligne. |
||
| 4976 | * @return Constantes2 Returns this Constantes2. |
||
| 4977 | */ |
||
| 4978 | public function setTpAvancementALaLigne(?bool $tpAvancementALaLigne): Constantes2 { |
||
| 4982 | |||
| 4983 | /** |
||
| 4984 | * Set the tp interdit qte. |
||
| 4985 | * |
||
| 4986 | * @param bool|null $tpInterditQte The tp interdit qte. |
||
| 4987 | * @return Constantes2 Returns this Constantes2. |
||
| 4988 | */ |
||
| 4989 | public function setTpInterditQte(?bool $tpInterditQte): Constantes2 { |
||
| 4993 | |||
| 4994 | /** |
||
| 4995 | * Set the tp libelle mission. |
||
| 4996 | * |
||
| 4997 | * @param bool|null $tpLibelleMission The tp libelle mission. |
||
| 4998 | * @return Constantes2 Returns this Constantes2. |
||
| 4999 | */ |
||
| 5000 | public function setTpLibelleMission(?bool $tpLibelleMission): Constantes2 { |
||
| 5004 | |||
| 5005 | /** |
||
| 5006 | * Set the tp limite saisie non operationnel. |
||
| 5007 | * |
||
| 5008 | * @param bool|null $tpLimiteSaisieNonOperationnel The tp limite saisie non operationnel. |
||
| 5009 | * @return Constantes2 Returns this Constantes2. |
||
| 5010 | */ |
||
| 5011 | public function setTpLimiteSaisieNonOperationnel(?bool $tpLimiteSaisieNonOperationnel): Constantes2 { |
||
| 5015 | |||
| 5016 | /** |
||
| 5017 | * Set the tp pas mois cloture. |
||
| 5018 | * |
||
| 5019 | * @param bool|null $tpPasMoisCloture The tp pas mois cloture. |
||
| 5020 | * @return Constantes2 Returns this Constantes2. |
||
| 5021 | */ |
||
| 5022 | public function setTpPasMoisCloture(?bool $tpPasMoisCloture): Constantes2 { |
||
| 5026 | |||
| 5027 | /** |
||
| 5028 | * Set the tp pourcentage non operationnel date. |
||
| 5029 | * |
||
| 5030 | * @param DateTime|null $tpPourcentageNonOperationnelDate The tp pourcentage non operationnel date. |
||
| 5031 | * @return Constantes2 Returns this Constantes2. |
||
| 5032 | */ |
||
| 5033 | public function setTpPourcentageNonOperationnelDate(?DateTime $tpPourcentageNonOperationnelDate): Constantes2 { |
||
| 5037 | |||
| 5038 | /** |
||
| 5039 | * Set the tp qte invisible. |
||
| 5040 | * |
||
| 5041 | * @param bool|null $tpQteInvisible The tp qte invisible. |
||
| 5042 | * @return Constantes2 Returns this Constantes2. |
||
| 5043 | */ |
||
| 5044 | public function setTpQteInvisible(?bool $tpQteInvisible): Constantes2 { |
||
| 5048 | |||
| 5049 | /** |
||
| 5050 | * Set the tp saisie avancement. |
||
| 5051 | * |
||
| 5052 | * @param bool|null $tpSaisieAvancement The tp saisie avancement. |
||
| 5053 | * @return Constantes2 Returns this Constantes2. |
||
| 5054 | */ |
||
| 5055 | public function setTpSaisieAvancement(?bool $tpSaisieAvancement): Constantes2 { |
||
| 5059 | |||
| 5060 | /** |
||
| 5061 | * Set the tppupv123. |
||
| 5062 | * |
||
| 5063 | * @param bool|null $tppupv123 The tppupv123. |
||
| 5064 | * @return Constantes2 Returns this Constantes2. |
||
| 5065 | */ |
||
| 5066 | public function setTppupv123(?bool $tppupv123): Constantes2 { |
||
| 5070 | |||
| 5071 | /** |
||
| 5072 | * Set the tps num archive. |
||
| 5073 | * |
||
| 5074 | * @param string|null $tpsNumArchive The tps num archive. |
||
| 5075 | * @return Constantes2 Returns this Constantes2. |
||
| 5076 | */ |
||
| 5077 | public function setTpsNumArchive(?string $tpsNumArchive): Constantes2 { |
||
| 5081 | |||
| 5082 | /** |
||
| 5083 | * Set the trans variantes factgi. |
||
| 5084 | * |
||
| 5085 | * @param bool|null $transVariantesFactgi The trans variantes factgi. |
||
| 5086 | * @return Constantes2 Returns this Constantes2. |
||
| 5087 | */ |
||
| 5088 | public function setTransVariantesFactgi(?bool $transVariantesFactgi): Constantes2 { |
||
| 5092 | |||
| 5093 | /** |
||
| 5094 | * Set the type affichage solde fourn. |
||
| 5095 | * |
||
| 5096 | * @param string|null $typeAffichageSoldeFourn The type affichage solde fourn. |
||
| 5097 | * @return Constantes2 Returns this Constantes2. |
||
| 5098 | */ |
||
| 5099 | public function setTypeAffichageSoldeFourn(?string $typeAffichageSoldeFourn): Constantes2 { |
||
| 5103 | |||
| 5104 | /** |
||
| 5105 | * Set the type frais1. |
||
| 5106 | * |
||
| 5107 | * @param bool|null $typeFrais1 The type frais1. |
||
| 5108 | * @return Constantes2 Returns this Constantes2. |
||
| 5109 | */ |
||
| 5110 | public function setTypeFrais1(?bool $typeFrais1): Constantes2 { |
||
| 5114 | |||
| 5115 | /** |
||
| 5116 | * Set the type frais2. |
||
| 5117 | * |
||
| 5118 | * @param bool|null $typeFrais2 The type frais2. |
||
| 5119 | * @return Constantes2 Returns this Constantes2. |
||
| 5120 | */ |
||
| 5121 | public function setTypeFrais2(?bool $typeFrais2): Constantes2 { |
||
| 5125 | |||
| 5126 | /** |
||
| 5127 | * Set the type frais3. |
||
| 5128 | * |
||
| 5129 | * @param bool|null $typeFrais3 The type frais3. |
||
| 5130 | * @return Constantes2 Returns this Constantes2. |
||
| 5131 | */ |
||
| 5132 | public function setTypeFrais3(?bool $typeFrais3): Constantes2 { |
||
| 5136 | |||
| 5137 | /** |
||
| 5138 | * Set the type saisie taux devises. |
||
| 5139 | * |
||
| 5140 | * @param string|null $typeSaisieTauxDevises The type saisie taux devises. |
||
| 5141 | * @return Constantes2 Returns this Constantes2. |
||
| 5142 | */ |
||
| 5143 | public function setTypeSaisieTauxDevises(?string $typeSaisieTauxDevises): Constantes2 { |
||
| 5147 | |||
| 5148 | /** |
||
| 5149 | * Set the v esur dep aff. |
||
| 5150 | * |
||
| 5151 | * @param bool|null $vEsurDepAff The v esur dep aff. |
||
| 5152 | * @return Constantes2 Returns this Constantes2. |
||
| 5153 | */ |
||
| 5154 | public function setVEsurDepAff(?bool $vEsurDepAff): Constantes2 { |
||
| 5158 | |||
| 5159 | /** |
||
| 5160 | * Set the val auto tarifs transporteurs. |
||
| 5161 | * |
||
| 5162 | * @param bool|null $valAutoTarifsTransporteurs The val auto tarifs transporteurs. |
||
| 5163 | * @return Constantes2 Returns this Constantes2. |
||
| 5164 | */ |
||
| 5165 | public function setValAutoTarifsTransporteurs(?bool $valAutoTarifsTransporteurs): Constantes2 { |
||
| 5169 | |||
| 5170 | /** |
||
| 5171 | * Set the visualisation fiche cabinet. |
||
| 5172 | * |
||
| 5173 | * @param bool|null $visualisationFicheCabinet The visualisation fiche cabinet. |
||
| 5174 | * @return Constantes2 Returns this Constantes2. |
||
| 5175 | */ |
||
| 5176 | public function setVisualisationFicheCabinet(?bool $visualisationFicheCabinet): Constantes2 { |
||
| 5180 | |||
| 5181 | /** |
||
| 5182 | * Set the word acces par q client. |
||
| 5183 | * |
||
| 5184 | * @param bool|null $wordAccesParQClient The word acces par q client. |
||
| 5185 | * @return Constantes2 Returns this Constantes2. |
||
| 5186 | */ |
||
| 5187 | public function setWordAccesParQClient(?bool $wordAccesParQClient): Constantes2 { |
||
| 5191 | |||
| 5192 | /** |
||
| 5193 | * Set the e ws cabinet. |
||
| 5194 | * |
||
| 5195 | * @param string|null $eWsCabinet The e ws cabinet. |
||
| 5196 | * @return Constantes2 Returns this Constantes2. |
||
| 5197 | */ |
||
| 5198 | public function seteWsCabinet(?string $eWsCabinet): Constantes2 { |
||
| 5202 | |||
| 5203 | /** |
||
| 5204 | * Set the e ws coll id. |
||
| 5205 | * |
||
| 5206 | * @param string|null $eWsCollId The e ws coll id. |
||
| 5207 | * @return Constantes2 Returns this Constantes2. |
||
| 5208 | */ |
||
| 5209 | public function seteWsCollId(?string $eWsCollId): Constantes2 { |
||
| 5213 | |||
| 5214 | /** |
||
| 5215 | * Set the e ws coll mdp. |
||
| 5216 | * |
||
| 5217 | * @param string|null $eWsCollMdp The e ws coll mdp. |
||
| 5218 | * @return Constantes2 Returns this Constantes2. |
||
| 5219 | */ |
||
| 5220 | public function seteWsCollMdp(?string $eWsCollMdp): Constantes2 { |
||
| 5224 | |||
| 5225 | /** |
||
| 5226 | * Set the e ws srv mdp. |
||
| 5227 | * |
||
| 5228 | * @param string|null $eWsSrvMdp The e ws srv mdp. |
||
| 5229 | * @return Constantes2 Returns this Constantes2. |
||
| 5230 | */ |
||
| 5231 | public function seteWsSrvMdp(?string $eWsSrvMdp): Constantes2 { |
||
| 5235 | |||
| 5236 | /** |
||
| 5237 | * Set the e ws srv name. |
||
| 5238 | * |
||
| 5239 | * @param string|null $eWsSrvName The e ws srv name. |
||
| 5240 | * @return Constantes2 Returns this Constantes2. |
||
| 5241 | */ |
||
| 5242 | public function seteWsSrvName(?string $eWsSrvName): Constantes2 { |
||
| 5246 | |||
| 5247 | /** |
||
| 5248 | * Set the e ws srv util. |
||
| 5249 | * |
||
| 5250 | * @param string|null $eWsSrvUtil The e ws srv util. |
||
| 5251 | * @return Constantes2 Returns this Constantes2. |
||
| 5252 | */ |
||
| 5253 | public function seteWsSrvUtil(?string $eWsSrvUtil): Constantes2 { |
||
| 5257 | |||
| 5258 | /** |
||
| 5259 | * Set the lng code article auto. |
||
| 5260 | * |
||
| 5261 | * @param int|null $lngCodeArticleAuto The lng code article auto. |
||
| 5262 | * @return Constantes2 Returns this Constantes2. |
||
| 5263 | */ |
||
| 5264 | public function setlngCodeArticleAuto(?int $lngCodeArticleAuto): Constantes2 { |
||
| 5268 | } |
||
| 5269 |