Complex classes like ConstantesEntreprise 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 ConstantesEntreprise, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 22 | class ConstantesEntreprise { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Absence extra. |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $absenceExtra; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Activer pointage q w s. |
||
| 33 | * |
||
| 34 | * @var boolean |
||
| 35 | */ |
||
| 36 | private $activerPointageQWS; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Adhesion tds norme. |
||
| 40 | * |
||
| 41 | * @var string |
||
| 42 | */ |
||
| 43 | private $adhesionTdsNorme; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Affaire. |
||
| 47 | * |
||
| 48 | * @var string |
||
| 49 | */ |
||
| 50 | private $affaire; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Affectation taux27. |
||
| 54 | * |
||
| 55 | * @var boolean |
||
| 56 | */ |
||
| 57 | private $affectationTaux27; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * Analytique employe. |
||
| 61 | * |
||
| 62 | * @var boolean |
||
| 63 | */ |
||
| 64 | private $analytiqueEmploye; |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Arbitrage auto. |
||
| 68 | * |
||
| 69 | * @var string |
||
| 70 | */ |
||
| 71 | private $arbitrageAuto; |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Archivage actif. |
||
| 75 | * |
||
| 76 | * @var boolean |
||
| 77 | */ |
||
| 78 | private $archivageActif; |
||
| 79 | |||
| 80 | /** |
||
| 81 | * Attest auto. |
||
| 82 | * |
||
| 83 | * @var boolean |
||
| 84 | */ |
||
| 85 | private $attestAuto; |
||
| 86 | |||
| 87 | /** |
||
| 88 | * Beneficie c i c e. |
||
| 89 | * |
||
| 90 | * @var boolean |
||
| 91 | */ |
||
| 92 | private $beneficieCICE; |
||
| 93 | |||
| 94 | /** |
||
| 95 | * Brutal sal min conv. |
||
| 96 | * |
||
| 97 | * @var boolean |
||
| 98 | */ |
||
| 99 | private $brutalSalMinConv; |
||
| 100 | |||
| 101 | /** |
||
| 102 | * C i c e pj mail cli ducs edi. |
||
| 103 | * |
||
| 104 | * @var boolean |
||
| 105 | */ |
||
| 106 | private $cICEPjMailCliDucsEdi; |
||
| 107 | |||
| 108 | /** |
||
| 109 | * Calcul auto h theorique. |
||
| 110 | * |
||
| 111 | * @var boolean |
||
| 112 | */ |
||
| 113 | private $calculAutoHTheorique; |
||
| 114 | |||
| 115 | /** |
||
| 116 | * Certif auto. |
||
| 117 | * |
||
| 118 | * @var boolean |
||
| 119 | */ |
||
| 120 | private $certifAuto; |
||
| 121 | |||
| 122 | /** |
||
| 123 | * Cheques euro. |
||
| 124 | * |
||
| 125 | * @var string |
||
| 126 | */ |
||
| 127 | private $chequesEuro; |
||
| 128 | |||
| 129 | /** |
||
| 130 | * Choix edition cheque t c. |
||
| 131 | * |
||
| 132 | * @var boolean |
||
| 133 | */ |
||
| 134 | private $choixEditionChequeTC; |
||
| 135 | |||
| 136 | /** |
||
| 137 | * Cle acces1. |
||
| 138 | * |
||
| 139 | * @var string |
||
| 140 | */ |
||
| 141 | private $cleAcces1; |
||
| 142 | |||
| 143 | /** |
||
| 144 | * Cle portable. |
||
| 145 | * |
||
| 146 | * @var string |
||
| 147 | */ |
||
| 148 | private $clePortable; |
||
| 149 | |||
| 150 | /** |
||
| 151 | * Code org b t p d a d s u. |
||
| 152 | * |
||
| 153 | * @var string |
||
| 154 | */ |
||
| 155 | private $codeOrgBTPDADSU; |
||
| 156 | |||
| 157 | /** |
||
| 158 | * Collaborateuri paie. |
||
| 159 | * |
||
| 160 | * @var string |
||
| 161 | */ |
||
| 162 | private $collaborateuriPaie; |
||
| 163 | |||
| 164 | /** |
||
| 165 | * Compression. |
||
| 166 | * |
||
| 167 | * @var boolean |
||
| 168 | */ |
||
| 169 | private $compression; |
||
| 170 | |||
| 171 | /** |
||
| 172 | * Compte gain euro. |
||
| 173 | * |
||
| 174 | * @var string |
||
| 175 | */ |
||
| 176 | private $compteGainEuro; |
||
| 177 | |||
| 178 | /** |
||
| 179 | * Compte perte euro. |
||
| 180 | * |
||
| 181 | * @var string |
||
| 182 | */ |
||
| 183 | private $comptePerteEuro; |
||
| 184 | |||
| 185 | /** |
||
| 186 | * Cpta elit euros. |
||
| 187 | * |
||
| 188 | * @var boolean |
||
| 189 | */ |
||
| 190 | private $cptaElitEuros; |
||
| 191 | |||
| 192 | /** |
||
| 193 | * Ctrl auto c p. |
||
| 194 | * |
||
| 195 | * @var boolean |
||
| 196 | */ |
||
| 197 | private $ctrlAutoCP; |
||
| 198 | |||
| 199 | /** |
||
| 200 | * Ctrl auto c p anticip. |
||
| 201 | * |
||
| 202 | * @var boolean |
||
| 203 | */ |
||
| 204 | private $ctrlAutoCPAnticip; |
||
| 205 | |||
| 206 | /** |
||
| 207 | * Ctrl taux base. |
||
| 208 | * |
||
| 209 | * @var boolean |
||
| 210 | */ |
||
| 211 | private $ctrlTauxBase; |
||
| 212 | |||
| 213 | /** |
||
| 214 | * D a d s dernier choix gestion a e n. |
||
| 215 | * |
||
| 216 | * @var string |
||
| 217 | */ |
||
| 218 | private $dADSDernierChoixGestionAEN; |
||
| 219 | |||
| 220 | /** |
||
| 221 | * D a d s type gestion a e n. |
||
| 222 | * |
||
| 223 | * @var string |
||
| 224 | */ |
||
| 225 | private $dADSTypeGestionAEN; |
||
| 226 | |||
| 227 | /** |
||
| 228 | * D a d s u num agr a n s p. |
||
| 229 | * |
||
| 230 | * @var string |
||
| 231 | */ |
||
| 232 | private $dADSUNumAgrANSP; |
||
| 233 | |||
| 234 | /** |
||
| 235 | * D a d s u ref dec. |
||
| 236 | * |
||
| 237 | * @var string |
||
| 238 | */ |
||
| 239 | private $dADSURefDec; |
||
| 240 | |||
| 241 | /** |
||
| 242 | * D a s type decl. |
||
| 243 | * |
||
| 244 | * @var string |
||
| 245 | */ |
||
| 246 | private $dASTypeDecl; |
||
| 247 | |||
| 248 | /** |
||
| 249 | * D a s type decl detail. |
||
| 250 | * |
||
| 251 | * @var string |
||
| 252 | */ |
||
| 253 | private $dASTypeDeclDetail; |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Date dp. |
||
| 257 | * |
||
| 258 | * @var DateTime |
||
| 259 | */ |
||
| 260 | private $dateDp; |
||
| 261 | |||
| 262 | /** |
||
| 263 | * Debut periode d a s. |
||
| 264 | * |
||
| 265 | * @var DateTime |
||
| 266 | */ |
||
| 267 | private $debutPeriodeDAS; |
||
| 268 | |||
| 269 | /** |
||
| 270 | * Debut periode histo d a s. |
||
| 271 | * |
||
| 272 | * @var DateTime |
||
| 273 | */ |
||
| 274 | private $debutPeriodeHistoDAS; |
||
| 275 | |||
| 276 | /** |
||
| 277 | * Deduction h sup fillon. |
||
| 278 | * |
||
| 279 | * @var boolean |
||
| 280 | */ |
||
| 281 | private $deductionHSupFillon; |
||
| 282 | |||
| 283 | /** |
||
| 284 | * Deduire h sup non structurelle. |
||
| 285 | * |
||
| 286 | * @var boolean |
||
| 287 | */ |
||
| 288 | private $deduireHSupNonStructurelle; |
||
| 289 | |||
| 290 | /** |
||
| 291 | * Dernier indice bul. |
||
| 292 | * |
||
| 293 | * @var int |
||
| 294 | */ |
||
| 295 | private $dernierIndiceBul; |
||
| 296 | |||
| 297 | /** |
||
| 298 | * Dest point irc. |
||
| 299 | * |
||
| 300 | * @var string |
||
| 301 | */ |
||
| 302 | private $destPointIrc; |
||
| 303 | |||
| 304 | /** |
||
| 305 | * Dest tri point. |
||
| 306 | * |
||
| 307 | * @var string |
||
| 308 | */ |
||
| 309 | private $destTriPoint; |
||
| 310 | |||
| 311 | /** |
||
| 312 | * Dossier proprete. |
||
| 313 | * |
||
| 314 | * @var string |
||
| 315 | */ |
||
| 316 | private $dossierProprete; |
||
| 317 | |||
| 318 | /** |
||
| 319 | * Dossier sur web. |
||
| 320 | * |
||
| 321 | * @var boolean |
||
| 322 | */ |
||
| 323 | private $dossierSurWeb; |
||
| 324 | |||
| 325 | /** |
||
| 326 | * Ds code collab. |
||
| 327 | * |
||
| 328 | * @var string |
||
| 329 | */ |
||
| 330 | private $dsCodeCollab; |
||
| 331 | |||
| 332 | /** |
||
| 333 | * Ds date retour. |
||
| 334 | * |
||
| 335 | * @var DateTime |
||
| 336 | */ |
||
| 337 | private $dsDateRetour; |
||
| 338 | |||
| 339 | /** |
||
| 340 | * Ds date sortie. |
||
| 341 | * |
||
| 342 | * @var DateTime |
||
| 343 | */ |
||
| 344 | private $dsDateSortie; |
||
| 345 | |||
| 346 | /** |
||
| 347 | * Ds fusion. |
||
| 348 | * |
||
| 349 | * @var string |
||
| 350 | */ |
||
| 351 | private $dsFusion; |
||
| 352 | |||
| 353 | /** |
||
| 354 | * Ds type edition. |
||
| 355 | * |
||
| 356 | * @var string |
||
| 357 | */ |
||
| 358 | private $dsTypeEdition; |
||
| 359 | |||
| 360 | /** |
||
| 361 | * Dt debut periode. |
||
| 362 | * |
||
| 363 | * @var DateTime |
||
| 364 | */ |
||
| 365 | private $dtDebutPeriode; |
||
| 366 | |||
| 367 | /** |
||
| 368 | * Dt fin periode. |
||
| 369 | * |
||
| 370 | * @var DateTime |
||
| 371 | */ |
||
| 372 | private $dtFinPeriode; |
||
| 373 | |||
| 374 | /** |
||
| 375 | * Ducs franc euro. |
||
| 376 | * |
||
| 377 | * @var string |
||
| 378 | */ |
||
| 379 | private $ducsFrancEuro; |
||
| 380 | |||
| 381 | /** |
||
| 382 | * Ecr type. |
||
| 383 | * |
||
| 384 | * @var string |
||
| 385 | */ |
||
| 386 | private $ecrType; |
||
| 387 | |||
| 388 | /** |
||
| 389 | * Ed bord choix modele. |
||
| 390 | * |
||
| 391 | * @var string |
||
| 392 | */ |
||
| 393 | private $edBordChoixModele; |
||
| 394 | |||
| 395 | /** |
||
| 396 | * Ed bord rupture emp. |
||
| 397 | * |
||
| 398 | * @var boolean |
||
| 399 | */ |
||
| 400 | private $edBordRuptureEmp; |
||
| 401 | |||
| 402 | /** |
||
| 403 | * Ed bord type imp. |
||
| 404 | * |
||
| 405 | * @var string |
||
| 406 | */ |
||
| 407 | private $edBordTypeImp; |
||
| 408 | |||
| 409 | /** |
||
| 410 | * Ed bordereau. |
||
| 411 | * |
||
| 412 | * @var boolean |
||
| 413 | */ |
||
| 414 | private $edBordereau; |
||
| 415 | |||
| 416 | /** |
||
| 417 | * Ed bordereau prep. |
||
| 418 | * |
||
| 419 | * @var boolean |
||
| 420 | */ |
||
| 421 | private $edBordereauPrep; |
||
| 422 | |||
| 423 | /** |
||
| 424 | * Ed bordereau prepa. |
||
| 425 | * |
||
| 426 | * @var boolean |
||
| 427 | */ |
||
| 428 | private $edBordereauPrepa; |
||
| 429 | |||
| 430 | /** |
||
| 431 | * Ed bul last fax. |
||
| 432 | * |
||
| 433 | * @var string |
||
| 434 | */ |
||
| 435 | private $edBulLastFax; |
||
| 436 | |||
| 437 | /** |
||
| 438 | * Ed bul last mail. |
||
| 439 | * |
||
| 440 | * @var string |
||
| 441 | */ |
||
| 442 | private $edBulLastMail; |
||
| 443 | |||
| 444 | /** |
||
| 445 | * Ed bul type sortie. |
||
| 446 | * |
||
| 447 | * @var string |
||
| 448 | */ |
||
| 449 | private $edBulTypeSortie; |
||
| 450 | |||
| 451 | /** |
||
| 452 | * Ed correspondance. |
||
| 453 | * |
||
| 454 | * @var boolean |
||
| 455 | */ |
||
| 456 | private $edCorrespondance; |
||
| 457 | |||
| 458 | /** |
||
| 459 | * Ed d u c s nb ex. |
||
| 460 | * |
||
| 461 | * @var string |
||
| 462 | */ |
||
| 463 | private $edDUCSNbEx; |
||
| 464 | |||
| 465 | /** |
||
| 466 | * Ed d u c s opt b t p. |
||
| 467 | * |
||
| 468 | * @var string |
||
| 469 | */ |
||
| 470 | private $edDUCSOptBTP; |
||
| 471 | |||
| 472 | /** |
||
| 473 | * Ed d u c s type sortie. |
||
| 474 | * |
||
| 475 | * @var string |
||
| 476 | */ |
||
| 477 | private $edDUCSTypeSortie; |
||
| 478 | |||
| 479 | /** |
||
| 480 | * Ed ducs auto. |
||
| 481 | * |
||
| 482 | * @var boolean |
||
| 483 | */ |
||
| 484 | private $edDucsAuto; |
||
| 485 | |||
| 486 | /** |
||
| 487 | * Ed h sup bonif que majo. |
||
| 488 | * |
||
| 489 | * @var boolean |
||
| 490 | */ |
||
| 491 | private $edHSupBonifQueMajo; |
||
| 492 | |||
| 493 | /** |
||
| 494 | * Ed histo tri emp. |
||
| 495 | * |
||
| 496 | * @var string |
||
| 497 | */ |
||
| 498 | private $edHistoTriEmp; |
||
| 499 | |||
| 500 | /** |
||
| 501 | * Ed histo tri etablissement. |
||
| 502 | * |
||
| 503 | * @var boolean |
||
| 504 | */ |
||
| 505 | private $edHistoTriEtablissement; |
||
| 506 | |||
| 507 | /** |
||
| 508 | * Ed histo tri service. |
||
| 509 | * |
||
| 510 | * @var boolean |
||
| 511 | */ |
||
| 512 | private $edHistoTriService; |
||
| 513 | |||
| 514 | /** |
||
| 515 | * Ed histo type. |
||
| 516 | * |
||
| 517 | * @var string |
||
| 518 | */ |
||
| 519 | private $edHistoType; |
||
| 520 | |||
| 521 | /** |
||
| 522 | * Ed imput comptable. |
||
| 523 | * |
||
| 524 | * @var boolean |
||
| 525 | */ |
||
| 526 | private $edImputComptable; |
||
| 527 | |||
| 528 | /** |
||
| 529 | * Ed texte1. |
||
| 530 | * |
||
| 531 | * @var string |
||
| 532 | */ |
||
| 533 | private $edTexte1; |
||
| 534 | |||
| 535 | /** |
||
| 536 | * Ed texte2. |
||
| 537 | * |
||
| 538 | * @var string |
||
| 539 | */ |
||
| 540 | private $edTexte2; |
||
| 541 | |||
| 542 | /** |
||
| 543 | * Ed trt cpta last fax. |
||
| 544 | * |
||
| 545 | * @var string |
||
| 546 | */ |
||
| 547 | private $edTrtCptaLastFax; |
||
| 548 | |||
| 549 | /** |
||
| 550 | * Ed trt cpta last mail. |
||
| 551 | * |
||
| 552 | * @var string |
||
| 553 | */ |
||
| 554 | private $edTrtCptaLastMail; |
||
| 555 | |||
| 556 | /** |
||
| 557 | * Ed trt cpta sortie. |
||
| 558 | * |
||
| 559 | * @var string |
||
| 560 | */ |
||
| 561 | private $edTrtCptaSortie; |
||
| 562 | |||
| 563 | /** |
||
| 564 | * Edit q p x l absences. |
||
| 565 | * |
||
| 566 | * @var boolean |
||
| 567 | */ |
||
| 568 | private $editQPXLAbsences; |
||
| 569 | |||
| 570 | /** |
||
| 571 | * Edit q p x l acomptes. |
||
| 572 | * |
||
| 573 | * @var boolean |
||
| 574 | */ |
||
| 575 | private $editQPXLAcomptes; |
||
| 576 | |||
| 577 | /** |
||
| 578 | * Edit q p x l tri emp. |
||
| 579 | * |
||
| 580 | * @var string |
||
| 581 | */ |
||
| 582 | private $editQPXLTriEmp; |
||
| 583 | |||
| 584 | /** |
||
| 585 | * Edit q p x l vider lib. |
||
| 586 | * |
||
| 587 | * @var boolean |
||
| 588 | */ |
||
| 589 | private $editQPXLViderLib; |
||
| 590 | |||
| 591 | /** |
||
| 592 | * Editer bulletin s t c. |
||
| 593 | * |
||
| 594 | * @var boolean |
||
| 595 | */ |
||
| 596 | private $editerBulletinSTC; |
||
| 597 | |||
| 598 | /** |
||
| 599 | * Edition cheque t c. |
||
| 600 | * |
||
| 601 | * @var boolean |
||
| 602 | */ |
||
| 603 | private $editionChequeTC; |
||
| 604 | |||
| 605 | /** |
||
| 606 | * Edition date. |
||
| 607 | * |
||
| 608 | * @var boolean |
||
| 609 | */ |
||
| 610 | private $editionDate; |
||
| 611 | |||
| 612 | /** |
||
| 613 | * Edition heure. |
||
| 614 | * |
||
| 615 | * @var boolean |
||
| 616 | */ |
||
| 617 | private $editionHeure; |
||
| 618 | |||
| 619 | /** |
||
| 620 | * Email. |
||
| 621 | * |
||
| 622 | * @var string |
||
| 623 | */ |
||
| 624 | private $email; |
||
| 625 | |||
| 626 | /** |
||
| 627 | * Entete solde t c. |
||
| 628 | * |
||
| 629 | * @var boolean |
||
| 630 | */ |
||
| 631 | private $enteteSoldeTC; |
||
| 632 | |||
| 633 | /** |
||
| 634 | * Etat controle d a d s u. |
||
| 635 | * |
||
| 636 | * @var string |
||
| 637 | */ |
||
| 638 | private $etatControleDADSU; |
||
| 639 | |||
| 640 | /** |
||
| 641 | * Etat ctrl norme. |
||
| 642 | * |
||
| 643 | * @var string |
||
| 644 | */ |
||
| 645 | private $etatCtrlNorme; |
||
| 646 | |||
| 647 | /** |
||
| 648 | * Etat d a s. |
||
| 649 | * |
||
| 650 | * @var string |
||
| 651 | */ |
||
| 652 | private $etatDAS; |
||
| 653 | |||
| 654 | /** |
||
| 655 | * Etat d a s rect. |
||
| 656 | * |
||
| 657 | * @var string |
||
| 658 | */ |
||
| 659 | private $etatDASRect; |
||
| 660 | |||
| 661 | /** |
||
| 662 | * Fichier unique. |
||
| 663 | * |
||
| 664 | * @var boolean |
||
| 665 | */ |
||
| 666 | private $fichierUnique; |
||
| 667 | |||
| 668 | /** |
||
| 669 | * Filtrer liste emp. |
||
| 670 | * |
||
| 671 | * @var int |
||
| 672 | */ |
||
| 673 | private $filtrerListeEmp; |
||
| 674 | |||
| 675 | /** |
||
| 676 | * Fin periode d a s. |
||
| 677 | * |
||
| 678 | * @var DateTime |
||
| 679 | */ |
||
| 680 | private $finPeriodeDAS; |
||
| 681 | |||
| 682 | /** |
||
| 683 | * Fin periode histo d a s. |
||
| 684 | * |
||
| 685 | * @var DateTime |
||
| 686 | */ |
||
| 687 | private $finPeriodeHistoDAS; |
||
| 688 | |||
| 689 | /** |
||
| 690 | * Flag traite. |
||
| 691 | * |
||
| 692 | * @var string |
||
| 693 | */ |
||
| 694 | private $flagTraite; |
||
| 695 | |||
| 696 | /** |
||
| 697 | * Flag traite2. |
||
| 698 | * |
||
| 699 | * @var int |
||
| 700 | */ |
||
| 701 | private $flagTraite2; |
||
| 702 | |||
| 703 | /** |
||
| 704 | * Flag traite3. |
||
| 705 | * |
||
| 706 | * @var int |
||
| 707 | */ |
||
| 708 | private $flagTraite3; |
||
| 709 | |||
| 710 | /** |
||
| 711 | * Format fic virement. |
||
| 712 | * |
||
| 713 | * @var string |
||
| 714 | */ |
||
| 715 | private $formatFicVirement; |
||
| 716 | |||
| 717 | /** |
||
| 718 | * Gest num bulletin. |
||
| 719 | * |
||
| 720 | * @var boolean |
||
| 721 | */ |
||
| 722 | private $gestNumBulletin; |
||
| 723 | |||
| 724 | /** |
||
| 725 | * Gest repo compens. |
||
| 726 | * |
||
| 727 | * @var boolean |
||
| 728 | */ |
||
| 729 | private $gestRepoCompens; |
||
| 730 | |||
| 731 | /** |
||
| 732 | * Gest texte. |
||
| 733 | * |
||
| 734 | * @var boolean |
||
| 735 | */ |
||
| 736 | private $gestTexte; |
||
| 737 | |||
| 738 | /** |
||
| 739 | * Gestion coeff. |
||
| 740 | * |
||
| 741 | * @var boolean |
||
| 742 | */ |
||
| 743 | private $gestionCoeff; |
||
| 744 | |||
| 745 | /** |
||
| 746 | * Gestion coeff grille. |
||
| 747 | * |
||
| 748 | * @var boolean |
||
| 749 | */ |
||
| 750 | private $gestionCoeffGrille; |
||
| 751 | |||
| 752 | /** |
||
| 753 | * Gestion exemplaire. |
||
| 754 | * |
||
| 755 | * @var string |
||
| 756 | */ |
||
| 757 | private $gestionExemplaire; |
||
| 758 | |||
| 759 | /** |
||
| 760 | * Gestion intemperie. |
||
| 761 | * |
||
| 762 | * @var boolean |
||
| 763 | */ |
||
| 764 | private $gestionIntemperie; |
||
| 765 | |||
| 766 | /** |
||
| 767 | * Gestion numero employe auto. |
||
| 768 | * |
||
| 769 | * @var boolean |
||
| 770 | */ |
||
| 771 | private $gestionNumeroEmployeAuto; |
||
| 772 | |||
| 773 | /** |
||
| 774 | * Gestion q p x l. |
||
| 775 | * |
||
| 776 | * @var boolean |
||
| 777 | */ |
||
| 778 | private $gestionQPXL; |
||
| 779 | |||
| 780 | /** |
||
| 781 | * Gestion t d bilaterale. |
||
| 782 | * |
||
| 783 | * @var boolean |
||
| 784 | */ |
||
| 785 | private $gestionTDBilaterale; |
||
| 786 | |||
| 787 | /** |
||
| 788 | * Gestion t d sou d a d s u. |
||
| 789 | * |
||
| 790 | * @var boolean |
||
| 791 | */ |
||
| 792 | private $gestionTDSouDADSU; |
||
| 793 | |||
| 794 | /** |
||
| 795 | * Groupe g i. |
||
| 796 | * |
||
| 797 | * @var string |
||
| 798 | */ |
||
| 799 | private $groupeGI; |
||
| 800 | |||
| 801 | /** |
||
| 802 | * H bonif influ cassation. |
||
| 803 | * |
||
| 804 | * @var string |
||
| 805 | */ |
||
| 806 | private $hBonifInfluCassation; |
||
| 807 | |||
| 808 | /** |
||
| 809 | * H sup1 structurelle. |
||
| 810 | * |
||
| 811 | * @var boolean |
||
| 812 | */ |
||
| 813 | private $hSup1Structurelle; |
||
| 814 | |||
| 815 | /** |
||
| 816 | * H sup2 structurelle. |
||
| 817 | * |
||
| 818 | * @var boolean |
||
| 819 | */ |
||
| 820 | private $hSup2Structurelle; |
||
| 821 | |||
| 822 | /** |
||
| 823 | * H sup3 structurelle. |
||
| 824 | * |
||
| 825 | * @var boolean |
||
| 826 | */ |
||
| 827 | private $hSup3Structurelle; |
||
| 828 | |||
| 829 | /** |
||
| 830 | * H sup4 structurelle. |
||
| 831 | * |
||
| 832 | * @var boolean |
||
| 833 | */ |
||
| 834 | private $hSup4Structurelle; |
||
| 835 | |||
| 836 | /** |
||
| 837 | * H sup5 structurelle. |
||
| 838 | * |
||
| 839 | * @var boolean |
||
| 840 | */ |
||
| 841 | private $hSup5Structurelle; |
||
| 842 | |||
| 843 | /** |
||
| 844 | * Heure sup2 influ cassation. |
||
| 845 | * |
||
| 846 | * @var string |
||
| 847 | */ |
||
| 848 | private $heureSup2InfluCassation; |
||
| 849 | |||
| 850 | /** |
||
| 851 | * Heure sup3 influ cassation. |
||
| 852 | * |
||
| 853 | * @var string |
||
| 854 | */ |
||
| 855 | private $heureSup3InfluCassation; |
||
| 856 | |||
| 857 | /** |
||
| 858 | * Heure sup4 influ cassation. |
||
| 859 | * |
||
| 860 | * @var string |
||
| 861 | */ |
||
| 862 | private $heureSup4InfluCassation; |
||
| 863 | |||
| 864 | /** |
||
| 865 | * Heure sup5 influ cassation. |
||
| 866 | * |
||
| 867 | * @var string |
||
| 868 | */ |
||
| 869 | private $heureSup5InfluCassation; |
||
| 870 | |||
| 871 | /** |
||
| 872 | * Heure sup influ cassation. |
||
| 873 | * |
||
| 874 | * @var string |
||
| 875 | */ |
||
| 876 | private $heureSupInfluCassation; |
||
| 877 | |||
| 878 | /** |
||
| 879 | * Heure theo base trav. |
||
| 880 | * |
||
| 881 | * @var string |
||
| 882 | */ |
||
| 883 | private $heureTheoBaseTrav; |
||
| 884 | |||
| 885 | /** |
||
| 886 | * Indem cp intervient brutal. |
||
| 887 | * |
||
| 888 | * @var boolean |
||
| 889 | */ |
||
| 890 | private $indemCpIntervientBrutal; |
||
| 891 | |||
| 892 | /** |
||
| 893 | * Jour debut transfert. |
||
| 894 | * |
||
| 895 | * @var int |
||
| 896 | */ |
||
| 897 | private $jourDebutTransfert; |
||
| 898 | |||
| 899 | /** |
||
| 900 | * Jour fin transfert. |
||
| 901 | * |
||
| 902 | * @var int |
||
| 903 | */ |
||
| 904 | private $jourFinTransfert; |
||
| 905 | |||
| 906 | /** |
||
| 907 | * Jrn format. |
||
| 908 | * |
||
| 909 | * @var string |
||
| 910 | */ |
||
| 911 | private $jrnFormat; |
||
| 912 | |||
| 913 | /** |
||
| 914 | * Jrn regroupe abs. |
||
| 915 | * |
||
| 916 | * @var boolean |
||
| 917 | */ |
||
| 918 | private $jrnRegroupeAbs; |
||
| 919 | |||
| 920 | /** |
||
| 921 | * Jrn tri. |
||
| 922 | * |
||
| 923 | * @var string |
||
| 924 | */ |
||
| 925 | private $jrnTri; |
||
| 926 | |||
| 927 | /** |
||
| 928 | * Jrn tri etablissement. |
||
| 929 | * |
||
| 930 | * @var string |
||
| 931 | */ |
||
| 932 | private $jrnTriEtablissement; |
||
| 933 | |||
| 934 | /** |
||
| 935 | * Jrn tri service. |
||
| 936 | * |
||
| 937 | * @var string |
||
| 938 | */ |
||
| 939 | private $jrnTriService; |
||
| 940 | |||
| 941 | /** |
||
| 942 | * Jrn type. |
||
| 943 | * |
||
| 944 | * @var string |
||
| 945 | */ |
||
| 946 | private $jrnType; |
||
| 947 | |||
| 948 | /** |
||
| 949 | * Liaison proprete. |
||
| 950 | * |
||
| 951 | * @var boolean |
||
| 952 | */ |
||
| 953 | private $liaisonProprete; |
||
| 954 | |||
| 955 | /** |
||
| 956 | * Lib arbitrage. |
||
| 957 | * |
||
| 958 | * @var string |
||
| 959 | */ |
||
| 960 | private $libArbitrage; |
||
| 961 | |||
| 962 | /** |
||
| 963 | * Lib b q c p. |
||
| 964 | * |
||
| 965 | * @var string |
||
| 966 | */ |
||
| 967 | private $libBQCP; |
||
| 968 | |||
| 969 | /** |
||
| 970 | * Lib base conge. |
||
| 971 | * |
||
| 972 | * @var string |
||
| 973 | */ |
||
| 974 | private $libBaseConge; |
||
| 975 | |||
| 976 | /** |
||
| 977 | * Lib cachet a e m. |
||
| 978 | * |
||
| 979 | * @var string |
||
| 980 | */ |
||
| 981 | private $libCachetAEM; |
||
| 982 | |||
| 983 | /** |
||
| 984 | * Lib cotis c n e. |
||
| 985 | * |
||
| 986 | * @var string |
||
| 987 | */ |
||
| 988 | private $libCotisCNE; |
||
| 989 | |||
| 990 | /** |
||
| 991 | * Lib fin contrat. |
||
| 992 | * |
||
| 993 | * @var string |
||
| 994 | */ |
||
| 995 | private $libFinContrat; |
||
| 996 | |||
| 997 | /** |
||
| 998 | * Lib fin contrat c n e. |
||
| 999 | * |
||
| 1000 | * @var string |
||
| 1001 | */ |
||
| 1002 | private $libFinContratCNE; |
||
| 1003 | |||
| 1004 | /** |
||
| 1005 | * Lib indem cp. |
||
| 1006 | * |
||
| 1007 | * @var string |
||
| 1008 | */ |
||
| 1009 | private $libIndemCp; |
||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * Libelle libre virement. |
||
| 1013 | * |
||
| 1014 | * @var string |
||
| 1015 | */ |
||
| 1016 | private $libelleLibreVirement; |
||
| 1017 | |||
| 1018 | /** |
||
| 1019 | * Ligne bul euro. |
||
| 1020 | * |
||
| 1021 | * @var boolean |
||
| 1022 | */ |
||
| 1023 | private $ligneBulEuro; |
||
| 1024 | |||
| 1025 | /** |
||
| 1026 | * Lignes transport. |
||
| 1027 | * |
||
| 1028 | * @var boolean |
||
| 1029 | */ |
||
| 1030 | private $lignesTransport; |
||
| 1031 | |||
| 1032 | /** |
||
| 1033 | * Mail bulletin. |
||
| 1034 | * |
||
| 1035 | * @var string |
||
| 1036 | */ |
||
| 1037 | private $mailBulletin; |
||
| 1038 | |||
| 1039 | /** |
||
| 1040 | * Mail bulletin cle. |
||
| 1041 | * |
||
| 1042 | * @var string |
||
| 1043 | */ |
||
| 1044 | private $mailBulletinCle; |
||
| 1045 | |||
| 1046 | /** |
||
| 1047 | * Mail bulletin p j. |
||
| 1048 | * |
||
| 1049 | * @var string |
||
| 1050 | */ |
||
| 1051 | private $mailBulletinPJ; |
||
| 1052 | |||
| 1053 | /** |
||
| 1054 | * Mail c li ducs edi. |
||
| 1055 | * |
||
| 1056 | * @var boolean |
||
| 1057 | */ |
||
| 1058 | private $mailCLiDucsEdi; |
||
| 1059 | |||
| 1060 | /** |
||
| 1061 | * Mention cp. |
||
| 1062 | * |
||
| 1063 | * @var boolean |
||
| 1064 | */ |
||
| 1065 | private $mentionCp; |
||
| 1066 | |||
| 1067 | /** |
||
| 1068 | * Message vu. |
||
| 1069 | * |
||
| 1070 | * @var boolean |
||
| 1071 | */ |
||
| 1072 | private $messageVu; |
||
| 1073 | |||
| 1074 | /** |
||
| 1075 | * Millesime_1. |
||
| 1076 | * |
||
| 1077 | * @var int |
||
| 1078 | */ |
||
| 1079 | private $millesime_1; |
||
| 1080 | |||
| 1081 | /** |
||
| 1082 | * Mode planning. |
||
| 1083 | * |
||
| 1084 | * @var int |
||
| 1085 | */ |
||
| 1086 | private $modePlanning; |
||
| 1087 | |||
| 1088 | /** |
||
| 1089 | * Modele apercu. |
||
| 1090 | * |
||
| 1091 | * @var string |
||
| 1092 | */ |
||
| 1093 | private $modeleApercu; |
||
| 1094 | |||
| 1095 | /** |
||
| 1096 | * Modele bon bleu. |
||
| 1097 | * |
||
| 1098 | * @var string |
||
| 1099 | */ |
||
| 1100 | private $modeleBonBleu; |
||
| 1101 | |||
| 1102 | /** |
||
| 1103 | * Modele bulletin. |
||
| 1104 | * |
||
| 1105 | * @var string |
||
| 1106 | */ |
||
| 1107 | private $modeleBulletin; |
||
| 1108 | |||
| 1109 | /** |
||
| 1110 | * Modele certif. |
||
| 1111 | * |
||
| 1112 | * @var string |
||
| 1113 | */ |
||
| 1114 | private $modeleCertif; |
||
| 1115 | |||
| 1116 | /** |
||
| 1117 | * Modele certif trav. |
||
| 1118 | * |
||
| 1119 | * @var string |
||
| 1120 | */ |
||
| 1121 | private $modeleCertifTrav; |
||
| 1122 | |||
| 1123 | /** |
||
| 1124 | * Modele cheque. |
||
| 1125 | * |
||
| 1126 | * @var string |
||
| 1127 | */ |
||
| 1128 | private $modeleCheque; |
||
| 1129 | |||
| 1130 | /** |
||
| 1131 | * Mois cloture an. |
||
| 1132 | * |
||
| 1133 | * @var string |
||
| 1134 | */ |
||
| 1135 | private $moisClotureAn; |
||
| 1136 | |||
| 1137 | /** |
||
| 1138 | * N attest a e m. |
||
| 1139 | * |
||
| 1140 | * @var int |
||
| 1141 | */ |
||
| 1142 | private $nAttestAEM; |
||
| 1143 | |||
| 1144 | /** |
||
| 1145 | * N attest a e m e d i. |
||
| 1146 | * |
||
| 1147 | * @var int |
||
| 1148 | */ |
||
| 1149 | private $nAttestAEMEDI; |
||
| 1150 | |||
| 1151 | /** |
||
| 1152 | * N attest a e m x. |
||
| 1153 | * |
||
| 1154 | * @var int |
||
| 1155 | */ |
||
| 1156 | private $nAttestAEMX; |
||
| 1157 | |||
| 1158 | /** |
||
| 1159 | * N attest assedic. |
||
| 1160 | * |
||
| 1161 | * @var int |
||
| 1162 | */ |
||
| 1163 | private $nAttestAssedic; |
||
| 1164 | |||
| 1165 | /** |
||
| 1166 | * N attest extras. |
||
| 1167 | * |
||
| 1168 | * @var int |
||
| 1169 | */ |
||
| 1170 | private $nAttestExtras; |
||
| 1171 | |||
| 1172 | /** |
||
| 1173 | * N attest ijss. |
||
| 1174 | * |
||
| 1175 | * @var int |
||
| 1176 | */ |
||
| 1177 | private $nAttestIjss; |
||
| 1178 | |||
| 1179 | /** |
||
| 1180 | * N attest ijss a t. |
||
| 1181 | * |
||
| 1182 | * @var int |
||
| 1183 | */ |
||
| 1184 | private $nAttestIjssAT; |
||
| 1185 | |||
| 1186 | /** |
||
| 1187 | * N c e conges spectacles. |
||
| 1188 | * |
||
| 1189 | * @var int |
||
| 1190 | */ |
||
| 1191 | private $nCECongesSpectacles; |
||
| 1192 | |||
| 1193 | /** |
||
| 1194 | * N der document. |
||
| 1195 | * |
||
| 1196 | * @var int |
||
| 1197 | */ |
||
| 1198 | private $nDerDocument; |
||
| 1199 | |||
| 1200 | /** |
||
| 1201 | * Nap euro. |
||
| 1202 | * |
||
| 1203 | * @var boolean |
||
| 1204 | */ |
||
| 1205 | private $napEuro; |
||
| 1206 | |||
| 1207 | /** |
||
| 1208 | * Nb exemplaire. |
||
| 1209 | * |
||
| 1210 | * @var string |
||
| 1211 | */ |
||
| 1212 | private $nbExemplaire; |
||
| 1213 | |||
| 1214 | /** |
||
| 1215 | * Nouv param retraite type. |
||
| 1216 | * |
||
| 1217 | * @var boolean |
||
| 1218 | */ |
||
| 1219 | private $nouvParamRetraiteType; |
||
| 1220 | |||
| 1221 | /** |
||
| 1222 | * Options calc abs. |
||
| 1223 | * |
||
| 1224 | * @var boolean |
||
| 1225 | */ |
||
| 1226 | private $optionsCalcAbs; |
||
| 1227 | |||
| 1228 | /** |
||
| 1229 | * Ordre libelle h sup. |
||
| 1230 | * |
||
| 1231 | * @var string |
||
| 1232 | */ |
||
| 1233 | private $ordreLibelleHSup; |
||
| 1234 | |||
| 1235 | /** |
||
| 1236 | * Paie euro. |
||
| 1237 | * |
||
| 1238 | * @var boolean |
||
| 1239 | */ |
||
| 1240 | private $paieEuro; |
||
| 1241 | |||
| 1242 | /** |
||
| 1243 | * Part sal seule. |
||
| 1244 | * |
||
| 1245 | * @var boolean |
||
| 1246 | */ |
||
| 1247 | private $partSalSeule; |
||
| 1248 | |||
| 1249 | /** |
||
| 1250 | * Pas gestion indice bul. |
||
| 1251 | * |
||
| 1252 | * @var boolean |
||
| 1253 | */ |
||
| 1254 | private $pasGestionIndiceBul; |
||
| 1255 | |||
| 1256 | /** |
||
| 1257 | * Pas prendre i c c p fillon. |
||
| 1258 | * |
||
| 1259 | * @var boolean |
||
| 1260 | */ |
||
| 1261 | private $pasPrendreICCPFillon; |
||
| 1262 | |||
| 1263 | /** |
||
| 1264 | * Pas sous tot s base. |
||
| 1265 | * |
||
| 1266 | * @var boolean |
||
| 1267 | */ |
||
| 1268 | private $pasSousTotSBase; |
||
| 1269 | |||
| 1270 | /** |
||
| 1271 | * Passage35 h fait. |
||
| 1272 | * |
||
| 1273 | * @var boolean |
||
| 1274 | */ |
||
| 1275 | private $passage35HFait; |
||
| 1276 | |||
| 1277 | /** |
||
| 1278 | * Path virement. |
||
| 1279 | * |
||
| 1280 | * @var string |
||
| 1281 | */ |
||
| 1282 | private $pathVirement; |
||
| 1283 | |||
| 1284 | /** |
||
| 1285 | * Periode i paie. |
||
| 1286 | * |
||
| 1287 | * @var DateTime |
||
| 1288 | */ |
||
| 1289 | private $periodeIPaie; |
||
| 1290 | |||
| 1291 | /** |
||
| 1292 | * Periode paie. |
||
| 1293 | * |
||
| 1294 | * @var DateTime |
||
| 1295 | */ |
||
| 1296 | private $periodePaie; |
||
| 1297 | |||
| 1298 | /** |
||
| 1299 | * Pj mail c li ducs edi. |
||
| 1300 | * |
||
| 1301 | * @var boolean |
||
| 1302 | */ |
||
| 1303 | private $pjMailCLiDucsEdi; |
||
| 1304 | |||
| 1305 | /** |
||
| 1306 | * Pj mail cli coupon paiement. |
||
| 1307 | * |
||
| 1308 | * @var boolean |
||
| 1309 | */ |
||
| 1310 | private $pjMailCliCouponPaiement; |
||
| 1311 | |||
| 1312 | /** |
||
| 1313 | * Plafond. |
||
| 1314 | * |
||
| 1315 | * @var float |
||
| 1316 | */ |
||
| 1317 | private $plafond; |
||
| 1318 | |||
| 1319 | /** |
||
| 1320 | * Porta frais sante certif trav. |
||
| 1321 | * |
||
| 1322 | * @var boolean |
||
| 1323 | */ |
||
| 1324 | private $portaFraisSanteCertifTrav; |
||
| 1325 | |||
| 1326 | /** |
||
| 1327 | * Porta prevoyance oblig. |
||
| 1328 | * |
||
| 1329 | * @var boolean |
||
| 1330 | */ |
||
| 1331 | private $portaPrevoyanceOblig; |
||
| 1332 | |||
| 1333 | /** |
||
| 1334 | * Preparation t d p. |
||
| 1335 | * |
||
| 1336 | * @var boolean |
||
| 1337 | */ |
||
| 1338 | private $preparationTDP; |
||
| 1339 | |||
| 1340 | /** |
||
| 1341 | * Presence min. |
||
| 1342 | * |
||
| 1343 | * @var string |
||
| 1344 | */ |
||
| 1345 | private $presenceMin; |
||
| 1346 | |||
| 1347 | /** |
||
| 1348 | * Prorata dif certif trav. |
||
| 1349 | * |
||
| 1350 | * @var boolean |
||
| 1351 | */ |
||
| 1352 | private $prorataDifCertifTrav; |
||
| 1353 | |||
| 1354 | /** |
||
| 1355 | * R d l p_ a s c i i. |
||
| 1356 | * |
||
| 1357 | * @var boolean |
||
| 1358 | */ |
||
| 1359 | private $rDLP_ASCII; |
||
| 1360 | |||
| 1361 | /** |
||
| 1362 | * R d l p_ e m p l o y e s. |
||
| 1363 | * |
||
| 1364 | * @var boolean |
||
| 1365 | */ |
||
| 1366 | private $rDLP_EMPLOYES; |
||
| 1367 | |||
| 1368 | /** |
||
| 1369 | * Raz commentaire. |
||
| 1370 | * |
||
| 1371 | * @var string |
||
| 1372 | */ |
||
| 1373 | private $razCommentaire; |
||
| 1374 | |||
| 1375 | /** |
||
| 1376 | * Raz h sup. |
||
| 1377 | * |
||
| 1378 | * @var string |
||
| 1379 | */ |
||
| 1380 | private $razHSup; |
||
| 1381 | |||
| 1382 | /** |
||
| 1383 | * Ref remise. |
||
| 1384 | * |
||
| 1385 | * @var int |
||
| 1386 | */ |
||
| 1387 | private $refRemise; |
||
| 1388 | |||
| 1389 | /** |
||
| 1390 | * Ref trans. |
||
| 1391 | * |
||
| 1392 | * @var int |
||
| 1393 | */ |
||
| 1394 | private $refTrans; |
||
| 1395 | |||
| 1396 | /** |
||
| 1397 | * Reference interne virement. |
||
| 1398 | * |
||
| 1399 | * @var string |
||
| 1400 | */ |
||
| 1401 | private $referenceInterneVirement; |
||
| 1402 | |||
| 1403 | /** |
||
| 1404 | * Regroup lib ed bul. |
||
| 1405 | * |
||
| 1406 | * @var boolean |
||
| 1407 | */ |
||
| 1408 | private $regroupLibEdBul; |
||
| 1409 | |||
| 1410 | /** |
||
| 1411 | * Report minimum. |
||
| 1412 | * |
||
| 1413 | * @var int |
||
| 1414 | */ |
||
| 1415 | private $reportMinimum; |
||
| 1416 | |||
| 1417 | /** |
||
| 1418 | * Retraite97. |
||
| 1419 | * |
||
| 1420 | * @var boolean |
||
| 1421 | */ |
||
| 1422 | private $retraite97; |
||
| 1423 | |||
| 1424 | /** |
||
| 1425 | * Sais plan emp sem. |
||
| 1426 | * |
||
| 1427 | * @var string |
||
| 1428 | */ |
||
| 1429 | private $saisPlanEmpSem; |
||
| 1430 | |||
| 1431 | /** |
||
| 1432 | * Saisie indice bul. |
||
| 1433 | * |
||
| 1434 | * @var boolean |
||
| 1435 | */ |
||
| 1436 | private $saisieIndiceBul; |
||
| 1437 | |||
| 1438 | /** |
||
| 1439 | * Saut page. |
||
| 1440 | * |
||
| 1441 | * @var boolean |
||
| 1442 | */ |
||
| 1443 | private $sautPage; |
||
| 1444 | |||
| 1445 | /** |
||
| 1446 | * Seuil. |
||
| 1447 | * |
||
| 1448 | * @var float |
||
| 1449 | */ |
||
| 1450 | private $seuil; |
||
| 1451 | |||
| 1452 | /** |
||
| 1453 | * Seuil conting. |
||
| 1454 | * |
||
| 1455 | * @var float |
||
| 1456 | */ |
||
| 1457 | private $seuilConting; |
||
| 1458 | |||
| 1459 | /** |
||
| 1460 | * Stc auto. |
||
| 1461 | * |
||
| 1462 | * @var boolean |
||
| 1463 | */ |
||
| 1464 | private $stcAuto; |
||
| 1465 | |||
| 1466 | /** |
||
| 1467 | * Tab bord tri etablissement. |
||
| 1468 | * |
||
| 1469 | * @var boolean |
||
| 1470 | */ |
||
| 1471 | private $tabBordTriEtablissement; |
||
| 1472 | |||
| 1473 | /** |
||
| 1474 | * Tab bord tri service. |
||
| 1475 | * |
||
| 1476 | * @var boolean |
||
| 1477 | */ |
||
| 1478 | private $tabBordTriService; |
||
| 1479 | |||
| 1480 | /** |
||
| 1481 | * Tableau charge. |
||
| 1482 | * |
||
| 1483 | * @var string |
||
| 1484 | */ |
||
| 1485 | private $tableauCharge; |
||
| 1486 | |||
| 1487 | /** |
||
| 1488 | * Tds annee. |
||
| 1489 | * |
||
| 1490 | * @var int |
||
| 1491 | */ |
||
| 1492 | private $tdsAnnee; |
||
| 1493 | |||
| 1494 | /** |
||
| 1495 | * Tds euro. |
||
| 1496 | * |
||
| 1497 | * @var boolean |
||
| 1498 | */ |
||
| 1499 | private $tdsEuro; |
||
| 1500 | |||
| 1501 | /** |
||
| 1502 | * Tot gene isole. |
||
| 1503 | * |
||
| 1504 | * @var string |
||
| 1505 | */ |
||
| 1506 | private $totGeneIsole; |
||
| 1507 | |||
| 1508 | /** |
||
| 1509 | * Tot service isole. |
||
| 1510 | * |
||
| 1511 | * @var string |
||
| 1512 | */ |
||
| 1513 | private $totServiceIsole; |
||
| 1514 | |||
| 1515 | /** |
||
| 1516 | * Total etab isole. |
||
| 1517 | * |
||
| 1518 | * @var string |
||
| 1519 | */ |
||
| 1520 | private $totalEtabIsole; |
||
| 1521 | |||
| 1522 | /** |
||
| 1523 | * Trans rupture. |
||
| 1524 | * |
||
| 1525 | * @var string |
||
| 1526 | */ |
||
| 1527 | private $transRupture; |
||
| 1528 | |||
| 1529 | /** |
||
| 1530 | * Trans tri etablissement. |
||
| 1531 | * |
||
| 1532 | * @var string |
||
| 1533 | */ |
||
| 1534 | private $transTriEtablissement; |
||
| 1535 | |||
| 1536 | /** |
||
| 1537 | * Transfert t d s emp. |
||
| 1538 | * |
||
| 1539 | * @var boolean |
||
| 1540 | */ |
||
| 1541 | private $transfertTDSEmp; |
||
| 1542 | |||
| 1543 | /** |
||
| 1544 | * Tri employe. |
||
| 1545 | * |
||
| 1546 | * @var string |
||
| 1547 | */ |
||
| 1548 | private $triEmploye; |
||
| 1549 | |||
| 1550 | /** |
||
| 1551 | * Tx sal decote. |
||
| 1552 | * |
||
| 1553 | * @var float |
||
| 1554 | */ |
||
| 1555 | private $txSalDecote; |
||
| 1556 | |||
| 1557 | /** |
||
| 1558 | * Type abs sans solde. |
||
| 1559 | * |
||
| 1560 | * @var string |
||
| 1561 | */ |
||
| 1562 | private $typeAbsSansSolde; |
||
| 1563 | |||
| 1564 | /** |
||
| 1565 | * Type agrement a e m. |
||
| 1566 | * |
||
| 1567 | * @var string |
||
| 1568 | */ |
||
| 1569 | private $typeAgrementAEM; |
||
| 1570 | |||
| 1571 | /** |
||
| 1572 | * Type bordereau prepa. |
||
| 1573 | * |
||
| 1574 | * @var string |
||
| 1575 | */ |
||
| 1576 | private $typeBordereauPrepa; |
||
| 1577 | |||
| 1578 | /** |
||
| 1579 | * Type bulletin. |
||
| 1580 | * |
||
| 1581 | * @var string |
||
| 1582 | */ |
||
| 1583 | private $typeBulletin; |
||
| 1584 | |||
| 1585 | /** |
||
| 1586 | * Type d u e. |
||
| 1587 | * |
||
| 1588 | * @var string |
||
| 1589 | */ |
||
| 1590 | private $typeDUE; |
||
| 1591 | |||
| 1592 | /** |
||
| 1593 | * Type dossier. |
||
| 1594 | * |
||
| 1595 | * @var string |
||
| 1596 | */ |
||
| 1597 | private $typeDossier; |
||
| 1598 | |||
| 1599 | /** |
||
| 1600 | * Type effectif. |
||
| 1601 | * |
||
| 1602 | * @var string |
||
| 1603 | */ |
||
| 1604 | private $typeEffectif; |
||
| 1605 | |||
| 1606 | /** |
||
| 1607 | * Type fich bilat. |
||
| 1608 | * |
||
| 1609 | * @var string |
||
| 1610 | */ |
||
| 1611 | private $typeFichBilat; |
||
| 1612 | |||
| 1613 | /** |
||
| 1614 | * Type gestion bal. |
||
| 1615 | * |
||
| 1616 | * @var string |
||
| 1617 | */ |
||
| 1618 | private $typeGestionBal; |
||
| 1619 | |||
| 1620 | /** |
||
| 1621 | * Type modele. |
||
| 1622 | * |
||
| 1623 | * @var string |
||
| 1624 | */ |
||
| 1625 | private $typeModele; |
||
| 1626 | |||
| 1627 | /** |
||
| 1628 | * Type prep d a d s u. |
||
| 1629 | * |
||
| 1630 | * @var string |
||
| 1631 | */ |
||
| 1632 | private $typePrepDADSU; |
||
| 1633 | |||
| 1634 | /** |
||
| 1635 | * Type saisie abs. |
||
| 1636 | * |
||
| 1637 | * @var string |
||
| 1638 | */ |
||
| 1639 | private $typeSaisieAbs; |
||
| 1640 | |||
| 1641 | /** |
||
| 1642 | * Type saisie absence. |
||
| 1643 | * |
||
| 1644 | * @var string |
||
| 1645 | */ |
||
| 1646 | private $typeSaisieAbsence; |
||
| 1647 | |||
| 1648 | /** |
||
| 1649 | * Type stc. |
||
| 1650 | * |
||
| 1651 | * @var string |
||
| 1652 | */ |
||
| 1653 | private $typeStc; |
||
| 1654 | |||
| 1655 | /** |
||
| 1656 | * Type taux intemperie. |
||
| 1657 | * |
||
| 1658 | * @var string |
||
| 1659 | */ |
||
| 1660 | private $typeTauxIntemperie; |
||
| 1661 | |||
| 1662 | /** |
||
| 1663 | * Type tri. |
||
| 1664 | * |
||
| 1665 | * @var string |
||
| 1666 | */ |
||
| 1667 | private $typeTri; |
||
| 1668 | |||
| 1669 | /** |
||
| 1670 | * Type virement. |
||
| 1671 | * |
||
| 1672 | * @var string |
||
| 1673 | */ |
||
| 1674 | private $typeVirement; |
||
| 1675 | |||
| 1676 | /** |
||
| 1677 | * Type visu col saisie bul. |
||
| 1678 | * |
||
| 1679 | * @var string |
||
| 1680 | */ |
||
| 1681 | private $typeVisuColSaisieBul; |
||
| 1682 | |||
| 1683 | /** |
||
| 1684 | * Utilise pdp quadra. |
||
| 1685 | * |
||
| 1686 | * @var boolean |
||
| 1687 | */ |
||
| 1688 | private $utilisePdpQuadra; |
||
| 1689 | |||
| 1690 | /** |
||
| 1691 | * Utilise pdp quadra2. |
||
| 1692 | * |
||
| 1693 | * @var boolean |
||
| 1694 | */ |
||
| 1695 | private $utilisePdpQuadra2; |
||
| 1696 | |||
| 1697 | /** |
||
| 1698 | * Val cp bulletin. |
||
| 1699 | * |
||
| 1700 | * @var boolean |
||
| 1701 | */ |
||
| 1702 | private $valCpBulletin; |
||
| 1703 | |||
| 1704 | /** |
||
| 1705 | * Val filtre liste emp. |
||
| 1706 | * |
||
| 1707 | * @var int |
||
| 1708 | */ |
||
| 1709 | private $valFiltreListeEmp; |
||
| 1710 | |||
| 1711 | /** |
||
| 1712 | * Version controle d a d s u. |
||
| 1713 | * |
||
| 1714 | * @var int |
||
| 1715 | */ |
||
| 1716 | private $versionControleDADSU; |
||
| 1717 | |||
| 1718 | /** |
||
| 1719 | * Vir code etab. |
||
| 1720 | * |
||
| 1721 | * @var string |
||
| 1722 | */ |
||
| 1723 | private $virCodeEtab; |
||
| 1724 | |||
| 1725 | /** |
||
| 1726 | * Vir collectivite. |
||
| 1727 | * |
||
| 1728 | * @var string |
||
| 1729 | */ |
||
| 1730 | private $virCollectivite; |
||
| 1731 | |||
| 1732 | /** |
||
| 1733 | * Vir comptable centre. |
||
| 1734 | * |
||
| 1735 | * @var string |
||
| 1736 | */ |
||
| 1737 | private $virComptableCentre; |
||
| 1738 | |||
| 1739 | /** |
||
| 1740 | * Vir comptable sub. |
||
| 1741 | * |
||
| 1742 | * @var string |
||
| 1743 | */ |
||
| 1744 | private $virComptableSub; |
||
| 1745 | |||
| 1746 | /** |
||
| 1747 | * Vir fonction publique. |
||
| 1748 | * |
||
| 1749 | * @var boolean |
||
| 1750 | */ |
||
| 1751 | private $virFonctionPublique; |
||
| 1752 | |||
| 1753 | /** |
||
| 1754 | * Vir seuil. |
||
| 1755 | * |
||
| 1756 | * @var float |
||
| 1757 | */ |
||
| 1758 | private $virSeuil; |
||
| 1759 | |||
| 1760 | /** |
||
| 1761 | * Vir type etab. |
||
| 1762 | * |
||
| 1763 | * @var string |
||
| 1764 | */ |
||
| 1765 | private $virTypeEtab; |
||
| 1766 | |||
| 1767 | /** |
||
| 1768 | * Virement cr lf. |
||
| 1769 | * |
||
| 1770 | * @var boolean |
||
| 1771 | */ |
||
| 1772 | private $virementCrLf; |
||
| 1773 | |||
| 1774 | /** |
||
| 1775 | * Virements euro. |
||
| 1776 | * |
||
| 1777 | * @var string |
||
| 1778 | */ |
||
| 1779 | private $virementsEuro; |
||
| 1780 | |||
| 1781 | /** |
||
| 1782 | * Web prioritaire. |
||
| 1783 | * |
||
| 1784 | * @var boolean |
||
| 1785 | */ |
||
| 1786 | private $webPrioritaire; |
||
| 1787 | |||
| 1788 | /** |
||
| 1789 | * Constructor. |
||
| 1790 | */ |
||
| 1791 | public function __construct() { |
||
| 1792 | // NOTHING TO DO; |
||
| 1793 | } |
||
| 1794 | |||
| 1795 | /** |
||
| 1796 | * Get the absence extra. |
||
| 1797 | * |
||
| 1798 | * @return string Returns the absence extra. |
||
| 1799 | */ |
||
| 1800 | public function getAbsenceExtra() { |
||
| 1801 | return $this->absenceExtra; |
||
| 1802 | } |
||
| 1803 | |||
| 1804 | /** |
||
| 1805 | * Get the activer pointage q w s. |
||
| 1806 | * |
||
| 1807 | * @return boolean Returns the activer pointage q w s. |
||
| 1808 | */ |
||
| 1809 | public function getActiverPointageQWS() { |
||
| 1810 | return $this->activerPointageQWS; |
||
| 1811 | } |
||
| 1812 | |||
| 1813 | /** |
||
| 1814 | * Get the adhesion tds norme. |
||
| 1815 | * |
||
| 1816 | * @return string Returns the adhesion tds norme. |
||
| 1817 | */ |
||
| 1818 | public function getAdhesionTdsNorme() { |
||
| 1819 | return $this->adhesionTdsNorme; |
||
| 1820 | } |
||
| 1821 | |||
| 1822 | /** |
||
| 1823 | * Get the affaire. |
||
| 1824 | * |
||
| 1825 | * @return string Returns the affaire. |
||
| 1826 | */ |
||
| 1827 | public function getAffaire() { |
||
| 1828 | return $this->affaire; |
||
| 1829 | } |
||
| 1830 | |||
| 1831 | /** |
||
| 1832 | * Get the affectation taux27. |
||
| 1833 | * |
||
| 1834 | * @return boolean Returns the affectation taux27. |
||
| 1835 | */ |
||
| 1836 | public function getAffectationTaux27() { |
||
| 1837 | return $this->affectationTaux27; |
||
| 1838 | } |
||
| 1839 | |||
| 1840 | /** |
||
| 1841 | * Get the analytique employe. |
||
| 1842 | * |
||
| 1843 | * @return boolean Returns the analytique employe. |
||
| 1844 | */ |
||
| 1845 | public function getAnalytiqueEmploye() { |
||
| 1846 | return $this->analytiqueEmploye; |
||
| 1847 | } |
||
| 1848 | |||
| 1849 | /** |
||
| 1850 | * Get the arbitrage auto. |
||
| 1851 | * |
||
| 1852 | * @return string Returns the arbitrage auto. |
||
| 1853 | */ |
||
| 1854 | public function getArbitrageAuto() { |
||
| 1855 | return $this->arbitrageAuto; |
||
| 1856 | } |
||
| 1857 | |||
| 1858 | /** |
||
| 1859 | * Get the archivage actif. |
||
| 1860 | * |
||
| 1861 | * @return boolean Returns the archivage actif. |
||
| 1862 | */ |
||
| 1863 | public function getArchivageActif() { |
||
| 1864 | return $this->archivageActif; |
||
| 1865 | } |
||
| 1866 | |||
| 1867 | /** |
||
| 1868 | * Get the attest auto. |
||
| 1869 | * |
||
| 1870 | * @return boolean Returns the attest auto. |
||
| 1871 | */ |
||
| 1872 | public function getAttestAuto() { |
||
| 1873 | return $this->attestAuto; |
||
| 1874 | } |
||
| 1875 | |||
| 1876 | /** |
||
| 1877 | * Get the beneficie c i c e. |
||
| 1878 | * |
||
| 1879 | * @return boolean Returns the beneficie c i c e. |
||
| 1880 | */ |
||
| 1881 | public function getBeneficieCICE() { |
||
| 1882 | return $this->beneficieCICE; |
||
| 1883 | } |
||
| 1884 | |||
| 1885 | /** |
||
| 1886 | * Get the brutal sal min conv. |
||
| 1887 | * |
||
| 1888 | * @return boolean Returns the brutal sal min conv. |
||
| 1889 | */ |
||
| 1890 | public function getBrutalSalMinConv() { |
||
| 1891 | return $this->brutalSalMinConv; |
||
| 1892 | } |
||
| 1893 | |||
| 1894 | /** |
||
| 1895 | * Get the c i c e pj mail cli ducs edi. |
||
| 1896 | * |
||
| 1897 | * @return boolean Returns the c i c e pj mail cli ducs edi. |
||
| 1898 | */ |
||
| 1899 | public function getCICEPjMailCliDucsEdi() { |
||
| 1900 | return $this->cICEPjMailCliDucsEdi; |
||
| 1901 | } |
||
| 1902 | |||
| 1903 | /** |
||
| 1904 | * Get the calcul auto h theorique. |
||
| 1905 | * |
||
| 1906 | * @return boolean Returns the calcul auto h theorique. |
||
| 1907 | */ |
||
| 1908 | public function getCalculAutoHTheorique() { |
||
| 1909 | return $this->calculAutoHTheorique; |
||
| 1910 | } |
||
| 1911 | |||
| 1912 | /** |
||
| 1913 | * Get the certif auto. |
||
| 1914 | * |
||
| 1915 | * @return boolean Returns the certif auto. |
||
| 1916 | */ |
||
| 1917 | public function getCertifAuto() { |
||
| 1918 | return $this->certifAuto; |
||
| 1919 | } |
||
| 1920 | |||
| 1921 | /** |
||
| 1922 | * Get the cheques euro. |
||
| 1923 | * |
||
| 1924 | * @return string Returns the cheques euro. |
||
| 1925 | */ |
||
| 1926 | public function getChequesEuro() { |
||
| 1927 | return $this->chequesEuro; |
||
| 1928 | } |
||
| 1929 | |||
| 1930 | /** |
||
| 1931 | * Get the choix edition cheque t c. |
||
| 1932 | * |
||
| 1933 | * @return boolean Returns the choix edition cheque t c. |
||
| 1934 | */ |
||
| 1935 | public function getChoixEditionChequeTC() { |
||
| 1936 | return $this->choixEditionChequeTC; |
||
| 1937 | } |
||
| 1938 | |||
| 1939 | /** |
||
| 1940 | * Get the cle acces1. |
||
| 1941 | * |
||
| 1942 | * @return string Returns the cle acces1. |
||
| 1943 | */ |
||
| 1944 | public function getCleAcces1() { |
||
| 1945 | return $this->cleAcces1; |
||
| 1946 | } |
||
| 1947 | |||
| 1948 | /** |
||
| 1949 | * Get the cle portable. |
||
| 1950 | * |
||
| 1951 | * @return string Returns the cle portable. |
||
| 1952 | */ |
||
| 1953 | public function getClePortable() { |
||
| 1954 | return $this->clePortable; |
||
| 1955 | } |
||
| 1956 | |||
| 1957 | /** |
||
| 1958 | * Get the code org b t p d a d s u. |
||
| 1959 | * |
||
| 1960 | * @return string Returns the code org b t p d a d s u. |
||
| 1961 | */ |
||
| 1962 | public function getCodeOrgBTPDADSU() { |
||
| 1963 | return $this->codeOrgBTPDADSU; |
||
| 1964 | } |
||
| 1965 | |||
| 1966 | /** |
||
| 1967 | * Get the collaborateuri paie. |
||
| 1968 | * |
||
| 1969 | * @return string Returns the collaborateuri paie. |
||
| 1970 | */ |
||
| 1971 | public function getCollaborateuriPaie() { |
||
| 1972 | return $this->collaborateuriPaie; |
||
| 1973 | } |
||
| 1974 | |||
| 1975 | /** |
||
| 1976 | * Get the compression. |
||
| 1977 | * |
||
| 1978 | * @return boolean Returns the compression. |
||
| 1979 | */ |
||
| 1980 | public function getCompression() { |
||
| 1981 | return $this->compression; |
||
| 1982 | } |
||
| 1983 | |||
| 1984 | /** |
||
| 1985 | * Get the compte gain euro. |
||
| 1986 | * |
||
| 1987 | * @return string Returns the compte gain euro. |
||
| 1988 | */ |
||
| 1989 | public function getCompteGainEuro() { |
||
| 1990 | return $this->compteGainEuro; |
||
| 1991 | } |
||
| 1992 | |||
| 1993 | /** |
||
| 1994 | * Get the compte perte euro. |
||
| 1995 | * |
||
| 1996 | * @return string Returns the compte perte euro. |
||
| 1997 | */ |
||
| 1998 | public function getComptePerteEuro() { |
||
| 1999 | return $this->comptePerteEuro; |
||
| 2000 | } |
||
| 2001 | |||
| 2002 | /** |
||
| 2003 | * Get the cpta elit euros. |
||
| 2004 | * |
||
| 2005 | * @return boolean Returns the cpta elit euros. |
||
| 2006 | */ |
||
| 2007 | public function getCptaElitEuros() { |
||
| 2008 | return $this->cptaElitEuros; |
||
| 2009 | } |
||
| 2010 | |||
| 2011 | /** |
||
| 2012 | * Get the ctrl auto c p. |
||
| 2013 | * |
||
| 2014 | * @return boolean Returns the ctrl auto c p. |
||
| 2015 | */ |
||
| 2016 | public function getCtrlAutoCP() { |
||
| 2017 | return $this->ctrlAutoCP; |
||
| 2018 | } |
||
| 2019 | |||
| 2020 | /** |
||
| 2021 | * Get the ctrl auto c p anticip. |
||
| 2022 | * |
||
| 2023 | * @return boolean Returns the ctrl auto c p anticip. |
||
| 2024 | */ |
||
| 2025 | public function getCtrlAutoCPAnticip() { |
||
| 2026 | return $this->ctrlAutoCPAnticip; |
||
| 2027 | } |
||
| 2028 | |||
| 2029 | /** |
||
| 2030 | * Get the ctrl taux base. |
||
| 2031 | * |
||
| 2032 | * @return boolean Returns the ctrl taux base. |
||
| 2033 | */ |
||
| 2034 | public function getCtrlTauxBase() { |
||
| 2035 | return $this->ctrlTauxBase; |
||
| 2036 | } |
||
| 2037 | |||
| 2038 | /** |
||
| 2039 | * Get the d a d s dernier choix gestion a e n. |
||
| 2040 | * |
||
| 2041 | * @return string Returns the d a d s dernier choix gestion a e n. |
||
| 2042 | */ |
||
| 2043 | public function getDADSDernierChoixGestionAEN() { |
||
| 2044 | return $this->dADSDernierChoixGestionAEN; |
||
| 2045 | } |
||
| 2046 | |||
| 2047 | /** |
||
| 2048 | * Get the d a d s type gestion a e n. |
||
| 2049 | * |
||
| 2050 | * @return string Returns the d a d s type gestion a e n. |
||
| 2051 | */ |
||
| 2052 | public function getDADSTypeGestionAEN() { |
||
| 2053 | return $this->dADSTypeGestionAEN; |
||
| 2054 | } |
||
| 2055 | |||
| 2056 | /** |
||
| 2057 | * Get the d a d s u num agr a n s p. |
||
| 2058 | * |
||
| 2059 | * @return string Returns the d a d s u num agr a n s p. |
||
| 2060 | */ |
||
| 2061 | public function getDADSUNumAgrANSP() { |
||
| 2062 | return $this->dADSUNumAgrANSP; |
||
| 2063 | } |
||
| 2064 | |||
| 2065 | /** |
||
| 2066 | * Get the d a d s u ref dec. |
||
| 2067 | * |
||
| 2068 | * @return string Returns the d a d s u ref dec. |
||
| 2069 | */ |
||
| 2070 | public function getDADSURefDec() { |
||
| 2071 | return $this->dADSURefDec; |
||
| 2072 | } |
||
| 2073 | |||
| 2074 | /** |
||
| 2075 | * Get the d a s type decl. |
||
| 2076 | * |
||
| 2077 | * @return string Returns the d a s type decl. |
||
| 2078 | */ |
||
| 2079 | public function getDASTypeDecl() { |
||
| 2080 | return $this->dASTypeDecl; |
||
| 2081 | } |
||
| 2082 | |||
| 2083 | /** |
||
| 2084 | * Get the d a s type decl detail. |
||
| 2085 | * |
||
| 2086 | * @return string Returns the d a s type decl detail. |
||
| 2087 | */ |
||
| 2088 | public function getDASTypeDeclDetail() { |
||
| 2089 | return $this->dASTypeDeclDetail; |
||
| 2090 | } |
||
| 2091 | |||
| 2092 | /** |
||
| 2093 | * Get the date dp. |
||
| 2094 | * |
||
| 2095 | * @return DateTime Returns the date dp. |
||
| 2096 | */ |
||
| 2097 | public function getDateDp() { |
||
| 2098 | return $this->dateDp; |
||
| 2099 | } |
||
| 2100 | |||
| 2101 | /** |
||
| 2102 | * Get the debut periode d a s. |
||
| 2103 | * |
||
| 2104 | * @return DateTime Returns the debut periode d a s. |
||
| 2105 | */ |
||
| 2106 | public function getDebutPeriodeDAS() { |
||
| 2107 | return $this->debutPeriodeDAS; |
||
| 2108 | } |
||
| 2109 | |||
| 2110 | /** |
||
| 2111 | * Get the debut periode histo d a s. |
||
| 2112 | * |
||
| 2113 | * @return DateTime Returns the debut periode histo d a s. |
||
| 2114 | */ |
||
| 2115 | public function getDebutPeriodeHistoDAS() { |
||
| 2116 | return $this->debutPeriodeHistoDAS; |
||
| 2117 | } |
||
| 2118 | |||
| 2119 | /** |
||
| 2120 | * Get the deduction h sup fillon. |
||
| 2121 | * |
||
| 2122 | * @return boolean Returns the deduction h sup fillon. |
||
| 2123 | */ |
||
| 2124 | public function getDeductionHSupFillon() { |
||
| 2125 | return $this->deductionHSupFillon; |
||
| 2126 | } |
||
| 2127 | |||
| 2128 | /** |
||
| 2129 | * Get the deduire h sup non structurelle. |
||
| 2130 | * |
||
| 2131 | * @return boolean Returns the deduire h sup non structurelle. |
||
| 2132 | */ |
||
| 2133 | public function getDeduireHSupNonStructurelle() { |
||
| 2134 | return $this->deduireHSupNonStructurelle; |
||
| 2135 | } |
||
| 2136 | |||
| 2137 | /** |
||
| 2138 | * Get the dernier indice bul. |
||
| 2139 | * |
||
| 2140 | * @return int Returns the dernier indice bul. |
||
| 2141 | */ |
||
| 2142 | public function getDernierIndiceBul() { |
||
| 2143 | return $this->dernierIndiceBul; |
||
| 2144 | } |
||
| 2145 | |||
| 2146 | /** |
||
| 2147 | * Get the dest point irc. |
||
| 2148 | * |
||
| 2149 | * @return string Returns the dest point irc. |
||
| 2150 | */ |
||
| 2151 | public function getDestPointIrc() { |
||
| 2152 | return $this->destPointIrc; |
||
| 2153 | } |
||
| 2154 | |||
| 2155 | /** |
||
| 2156 | * Get the dest tri point. |
||
| 2157 | * |
||
| 2158 | * @return string Returns the dest tri point. |
||
| 2159 | */ |
||
| 2160 | public function getDestTriPoint() { |
||
| 2161 | return $this->destTriPoint; |
||
| 2162 | } |
||
| 2163 | |||
| 2164 | /** |
||
| 2165 | * Get the dossier proprete. |
||
| 2166 | * |
||
| 2167 | * @return string Returns the dossier proprete. |
||
| 2168 | */ |
||
| 2169 | public function getDossierProprete() { |
||
| 2170 | return $this->dossierProprete; |
||
| 2171 | } |
||
| 2172 | |||
| 2173 | /** |
||
| 2174 | * Get the dossier sur web. |
||
| 2175 | * |
||
| 2176 | * @return boolean Returns the dossier sur web. |
||
| 2177 | */ |
||
| 2178 | public function getDossierSurWeb() { |
||
| 2179 | return $this->dossierSurWeb; |
||
| 2180 | } |
||
| 2181 | |||
| 2182 | /** |
||
| 2183 | * Get the ds code collab. |
||
| 2184 | * |
||
| 2185 | * @return string Returns the ds code collab. |
||
| 2186 | */ |
||
| 2187 | public function getDsCodeCollab() { |
||
| 2188 | return $this->dsCodeCollab; |
||
| 2189 | } |
||
| 2190 | |||
| 2191 | /** |
||
| 2192 | * Get the ds date retour. |
||
| 2193 | * |
||
| 2194 | * @return DateTime Returns the ds date retour. |
||
| 2195 | */ |
||
| 2196 | public function getDsDateRetour() { |
||
| 2197 | return $this->dsDateRetour; |
||
| 2198 | } |
||
| 2199 | |||
| 2200 | /** |
||
| 2201 | * Get the ds date sortie. |
||
| 2202 | * |
||
| 2203 | * @return DateTime Returns the ds date sortie. |
||
| 2204 | */ |
||
| 2205 | public function getDsDateSortie() { |
||
| 2206 | return $this->dsDateSortie; |
||
| 2207 | } |
||
| 2208 | |||
| 2209 | /** |
||
| 2210 | * Get the ds fusion. |
||
| 2211 | * |
||
| 2212 | * @return string Returns the ds fusion. |
||
| 2213 | */ |
||
| 2214 | public function getDsFusion() { |
||
| 2215 | return $this->dsFusion; |
||
| 2216 | } |
||
| 2217 | |||
| 2218 | /** |
||
| 2219 | * Get the ds type edition. |
||
| 2220 | * |
||
| 2221 | * @return string Returns the ds type edition. |
||
| 2222 | */ |
||
| 2223 | public function getDsTypeEdition() { |
||
| 2224 | return $this->dsTypeEdition; |
||
| 2225 | } |
||
| 2226 | |||
| 2227 | /** |
||
| 2228 | * Get the dt debut periode. |
||
| 2229 | * |
||
| 2230 | * @return DateTime Returns the dt debut periode. |
||
| 2231 | */ |
||
| 2232 | public function getDtDebutPeriode() { |
||
| 2233 | return $this->dtDebutPeriode; |
||
| 2234 | } |
||
| 2235 | |||
| 2236 | /** |
||
| 2237 | * Get the dt fin periode. |
||
| 2238 | * |
||
| 2239 | * @return DateTime Returns the dt fin periode. |
||
| 2240 | */ |
||
| 2241 | public function getDtFinPeriode() { |
||
| 2242 | return $this->dtFinPeriode; |
||
| 2243 | } |
||
| 2244 | |||
| 2245 | /** |
||
| 2246 | * Get the ducs franc euro. |
||
| 2247 | * |
||
| 2248 | * @return string Returns the ducs franc euro. |
||
| 2249 | */ |
||
| 2250 | public function getDucsFrancEuro() { |
||
| 2251 | return $this->ducsFrancEuro; |
||
| 2252 | } |
||
| 2253 | |||
| 2254 | /** |
||
| 2255 | * Get the ecr type. |
||
| 2256 | * |
||
| 2257 | * @return string Returns the ecr type. |
||
| 2258 | */ |
||
| 2259 | public function getEcrType() { |
||
| 2260 | return $this->ecrType; |
||
| 2261 | } |
||
| 2262 | |||
| 2263 | /** |
||
| 2264 | * Get the ed bord choix modele. |
||
| 2265 | * |
||
| 2266 | * @return string Returns the ed bord choix modele. |
||
| 2267 | */ |
||
| 2268 | public function getEdBordChoixModele() { |
||
| 2269 | return $this->edBordChoixModele; |
||
| 2270 | } |
||
| 2271 | |||
| 2272 | /** |
||
| 2273 | * Get the ed bord rupture emp. |
||
| 2274 | * |
||
| 2275 | * @return boolean Returns the ed bord rupture emp. |
||
| 2276 | */ |
||
| 2277 | public function getEdBordRuptureEmp() { |
||
| 2278 | return $this->edBordRuptureEmp; |
||
| 2279 | } |
||
| 2280 | |||
| 2281 | /** |
||
| 2282 | * Get the ed bord type imp. |
||
| 2283 | * |
||
| 2284 | * @return string Returns the ed bord type imp. |
||
| 2285 | */ |
||
| 2286 | public function getEdBordTypeImp() { |
||
| 2287 | return $this->edBordTypeImp; |
||
| 2288 | } |
||
| 2289 | |||
| 2290 | /** |
||
| 2291 | * Get the ed bordereau. |
||
| 2292 | * |
||
| 2293 | * @return boolean Returns the ed bordereau. |
||
| 2294 | */ |
||
| 2295 | public function getEdBordereau() { |
||
| 2296 | return $this->edBordereau; |
||
| 2297 | } |
||
| 2298 | |||
| 2299 | /** |
||
| 2300 | * Get the ed bordereau prep. |
||
| 2301 | * |
||
| 2302 | * @return boolean Returns the ed bordereau prep. |
||
| 2303 | */ |
||
| 2304 | public function getEdBordereauPrep() { |
||
| 2305 | return $this->edBordereauPrep; |
||
| 2306 | } |
||
| 2307 | |||
| 2308 | /** |
||
| 2309 | * Get the ed bordereau prepa. |
||
| 2310 | * |
||
| 2311 | * @return boolean Returns the ed bordereau prepa. |
||
| 2312 | */ |
||
| 2313 | public function getEdBordereauPrepa() { |
||
| 2314 | return $this->edBordereauPrepa; |
||
| 2315 | } |
||
| 2316 | |||
| 2317 | /** |
||
| 2318 | * Get the ed bul last fax. |
||
| 2319 | * |
||
| 2320 | * @return string Returns the ed bul last fax. |
||
| 2321 | */ |
||
| 2322 | public function getEdBulLastFax() { |
||
| 2323 | return $this->edBulLastFax; |
||
| 2324 | } |
||
| 2325 | |||
| 2326 | /** |
||
| 2327 | * Get the ed bul last mail. |
||
| 2328 | * |
||
| 2329 | * @return string Returns the ed bul last mail. |
||
| 2330 | */ |
||
| 2331 | public function getEdBulLastMail() { |
||
| 2332 | return $this->edBulLastMail; |
||
| 2333 | } |
||
| 2334 | |||
| 2335 | /** |
||
| 2336 | * Get the ed bul type sortie. |
||
| 2337 | * |
||
| 2338 | * @return string Returns the ed bul type sortie. |
||
| 2339 | */ |
||
| 2340 | public function getEdBulTypeSortie() { |
||
| 2341 | return $this->edBulTypeSortie; |
||
| 2342 | } |
||
| 2343 | |||
| 2344 | /** |
||
| 2345 | * Get the ed correspondance. |
||
| 2346 | * |
||
| 2347 | * @return boolean Returns the ed correspondance. |
||
| 2348 | */ |
||
| 2349 | public function getEdCorrespondance() { |
||
| 2350 | return $this->edCorrespondance; |
||
| 2351 | } |
||
| 2352 | |||
| 2353 | /** |
||
| 2354 | * Get the ed d u c s nb ex. |
||
| 2355 | * |
||
| 2356 | * @return string Returns the ed d u c s nb ex. |
||
| 2357 | */ |
||
| 2358 | public function getEdDUCSNbEx() { |
||
| 2359 | return $this->edDUCSNbEx; |
||
| 2360 | } |
||
| 2361 | |||
| 2362 | /** |
||
| 2363 | * Get the ed d u c s opt b t p. |
||
| 2364 | * |
||
| 2365 | * @return string Returns the ed d u c s opt b t p. |
||
| 2366 | */ |
||
| 2367 | public function getEdDUCSOptBTP() { |
||
| 2368 | return $this->edDUCSOptBTP; |
||
| 2369 | } |
||
| 2370 | |||
| 2371 | /** |
||
| 2372 | * Get the ed d u c s type sortie. |
||
| 2373 | * |
||
| 2374 | * @return string Returns the ed d u c s type sortie. |
||
| 2375 | */ |
||
| 2376 | public function getEdDUCSTypeSortie() { |
||
| 2377 | return $this->edDUCSTypeSortie; |
||
| 2378 | } |
||
| 2379 | |||
| 2380 | /** |
||
| 2381 | * Get the ed ducs auto. |
||
| 2382 | * |
||
| 2383 | * @return boolean Returns the ed ducs auto. |
||
| 2384 | */ |
||
| 2385 | public function getEdDucsAuto() { |
||
| 2386 | return $this->edDucsAuto; |
||
| 2387 | } |
||
| 2388 | |||
| 2389 | /** |
||
| 2390 | * Get the ed h sup bonif que majo. |
||
| 2391 | * |
||
| 2392 | * @return boolean Returns the ed h sup bonif que majo. |
||
| 2393 | */ |
||
| 2394 | public function getEdHSupBonifQueMajo() { |
||
| 2395 | return $this->edHSupBonifQueMajo; |
||
| 2396 | } |
||
| 2397 | |||
| 2398 | /** |
||
| 2399 | * Get the ed histo tri emp. |
||
| 2400 | * |
||
| 2401 | * @return string Returns the ed histo tri emp. |
||
| 2402 | */ |
||
| 2403 | public function getEdHistoTriEmp() { |
||
| 2404 | return $this->edHistoTriEmp; |
||
| 2405 | } |
||
| 2406 | |||
| 2407 | /** |
||
| 2408 | * Get the ed histo tri etablissement. |
||
| 2409 | * |
||
| 2410 | * @return boolean Returns the ed histo tri etablissement. |
||
| 2411 | */ |
||
| 2412 | public function getEdHistoTriEtablissement() { |
||
| 2413 | return $this->edHistoTriEtablissement; |
||
| 2414 | } |
||
| 2415 | |||
| 2416 | /** |
||
| 2417 | * Get the ed histo tri service. |
||
| 2418 | * |
||
| 2419 | * @return boolean Returns the ed histo tri service. |
||
| 2420 | */ |
||
| 2421 | public function getEdHistoTriService() { |
||
| 2422 | return $this->edHistoTriService; |
||
| 2423 | } |
||
| 2424 | |||
| 2425 | /** |
||
| 2426 | * Get the ed histo type. |
||
| 2427 | * |
||
| 2428 | * @return string Returns the ed histo type. |
||
| 2429 | */ |
||
| 2430 | public function getEdHistoType() { |
||
| 2431 | return $this->edHistoType; |
||
| 2432 | } |
||
| 2433 | |||
| 2434 | /** |
||
| 2435 | * Get the ed imput comptable. |
||
| 2436 | * |
||
| 2437 | * @return boolean Returns the ed imput comptable. |
||
| 2438 | */ |
||
| 2439 | public function getEdImputComptable() { |
||
| 2440 | return $this->edImputComptable; |
||
| 2441 | } |
||
| 2442 | |||
| 2443 | /** |
||
| 2444 | * Get the ed texte1. |
||
| 2445 | * |
||
| 2446 | * @return string Returns the ed texte1. |
||
| 2447 | */ |
||
| 2448 | public function getEdTexte1() { |
||
| 2449 | return $this->edTexte1; |
||
| 2450 | } |
||
| 2451 | |||
| 2452 | /** |
||
| 2453 | * Get the ed texte2. |
||
| 2454 | * |
||
| 2455 | * @return string Returns the ed texte2. |
||
| 2456 | */ |
||
| 2457 | public function getEdTexte2() { |
||
| 2458 | return $this->edTexte2; |
||
| 2459 | } |
||
| 2460 | |||
| 2461 | /** |
||
| 2462 | * Get the ed trt cpta last fax. |
||
| 2463 | * |
||
| 2464 | * @return string Returns the ed trt cpta last fax. |
||
| 2465 | */ |
||
| 2466 | public function getEdTrtCptaLastFax() { |
||
| 2467 | return $this->edTrtCptaLastFax; |
||
| 2468 | } |
||
| 2469 | |||
| 2470 | /** |
||
| 2471 | * Get the ed trt cpta last mail. |
||
| 2472 | * |
||
| 2473 | * @return string Returns the ed trt cpta last mail. |
||
| 2474 | */ |
||
| 2475 | public function getEdTrtCptaLastMail() { |
||
| 2476 | return $this->edTrtCptaLastMail; |
||
| 2477 | } |
||
| 2478 | |||
| 2479 | /** |
||
| 2480 | * Get the ed trt cpta sortie. |
||
| 2481 | * |
||
| 2482 | * @return string Returns the ed trt cpta sortie. |
||
| 2483 | */ |
||
| 2484 | public function getEdTrtCptaSortie() { |
||
| 2485 | return $this->edTrtCptaSortie; |
||
| 2486 | } |
||
| 2487 | |||
| 2488 | /** |
||
| 2489 | * Get the edit q p x l absences. |
||
| 2490 | * |
||
| 2491 | * @return boolean Returns the edit q p x l absences. |
||
| 2492 | */ |
||
| 2493 | public function getEditQPXLAbsences() { |
||
| 2494 | return $this->editQPXLAbsences; |
||
| 2495 | } |
||
| 2496 | |||
| 2497 | /** |
||
| 2498 | * Get the edit q p x l acomptes. |
||
| 2499 | * |
||
| 2500 | * @return boolean Returns the edit q p x l acomptes. |
||
| 2501 | */ |
||
| 2502 | public function getEditQPXLAcomptes() { |
||
| 2503 | return $this->editQPXLAcomptes; |
||
| 2504 | } |
||
| 2505 | |||
| 2506 | /** |
||
| 2507 | * Get the edit q p x l tri emp. |
||
| 2508 | * |
||
| 2509 | * @return string Returns the edit q p x l tri emp. |
||
| 2510 | */ |
||
| 2511 | public function getEditQPXLTriEmp() { |
||
| 2512 | return $this->editQPXLTriEmp; |
||
| 2513 | } |
||
| 2514 | |||
| 2515 | /** |
||
| 2516 | * Get the edit q p x l vider lib. |
||
| 2517 | * |
||
| 2518 | * @return boolean Returns the edit q p x l vider lib. |
||
| 2519 | */ |
||
| 2520 | public function getEditQPXLViderLib() { |
||
| 2521 | return $this->editQPXLViderLib; |
||
| 2522 | } |
||
| 2523 | |||
| 2524 | /** |
||
| 2525 | * Get the editer bulletin s t c. |
||
| 2526 | * |
||
| 2527 | * @return boolean Returns the editer bulletin s t c. |
||
| 2528 | */ |
||
| 2529 | public function getEditerBulletinSTC() { |
||
| 2530 | return $this->editerBulletinSTC; |
||
| 2531 | } |
||
| 2532 | |||
| 2533 | /** |
||
| 2534 | * Get the edition cheque t c. |
||
| 2535 | * |
||
| 2536 | * @return boolean Returns the edition cheque t c. |
||
| 2537 | */ |
||
| 2538 | public function getEditionChequeTC() { |
||
| 2539 | return $this->editionChequeTC; |
||
| 2540 | } |
||
| 2541 | |||
| 2542 | /** |
||
| 2543 | * Get the edition date. |
||
| 2544 | * |
||
| 2545 | * @return boolean Returns the edition date. |
||
| 2546 | */ |
||
| 2547 | public function getEditionDate() { |
||
| 2548 | return $this->editionDate; |
||
| 2549 | } |
||
| 2550 | |||
| 2551 | /** |
||
| 2552 | * Get the edition heure. |
||
| 2553 | * |
||
| 2554 | * @return boolean Returns the edition heure. |
||
| 2555 | */ |
||
| 2556 | public function getEditionHeure() { |
||
| 2557 | return $this->editionHeure; |
||
| 2558 | } |
||
| 2559 | |||
| 2560 | /** |
||
| 2561 | * Get the email. |
||
| 2562 | * |
||
| 2563 | * @return string Returns the email. |
||
| 2564 | */ |
||
| 2565 | public function getEmail() { |
||
| 2566 | return $this->email; |
||
| 2567 | } |
||
| 2568 | |||
| 2569 | /** |
||
| 2570 | * Get the entete solde t c. |
||
| 2571 | * |
||
| 2572 | * @return boolean Returns the entete solde t c. |
||
| 2573 | */ |
||
| 2574 | public function getEnteteSoldeTC() { |
||
| 2575 | return $this->enteteSoldeTC; |
||
| 2576 | } |
||
| 2577 | |||
| 2578 | /** |
||
| 2579 | * Get the etat controle d a d s u. |
||
| 2580 | * |
||
| 2581 | * @return string Returns the etat controle d a d s u. |
||
| 2582 | */ |
||
| 2583 | public function getEtatControleDADSU() { |
||
| 2584 | return $this->etatControleDADSU; |
||
| 2585 | } |
||
| 2586 | |||
| 2587 | /** |
||
| 2588 | * Get the etat ctrl norme. |
||
| 2589 | * |
||
| 2590 | * @return string Returns the etat ctrl norme. |
||
| 2591 | */ |
||
| 2592 | public function getEtatCtrlNorme() { |
||
| 2593 | return $this->etatCtrlNorme; |
||
| 2594 | } |
||
| 2595 | |||
| 2596 | /** |
||
| 2597 | * Get the etat d a s. |
||
| 2598 | * |
||
| 2599 | * @return string Returns the etat d a s. |
||
| 2600 | */ |
||
| 2601 | public function getEtatDAS() { |
||
| 2602 | return $this->etatDAS; |
||
| 2603 | } |
||
| 2604 | |||
| 2605 | /** |
||
| 2606 | * Get the etat d a s rect. |
||
| 2607 | * |
||
| 2608 | * @return string Returns the etat d a s rect. |
||
| 2609 | */ |
||
| 2610 | public function getEtatDASRect() { |
||
| 2611 | return $this->etatDASRect; |
||
| 2612 | } |
||
| 2613 | |||
| 2614 | /** |
||
| 2615 | * Get the fichier unique. |
||
| 2616 | * |
||
| 2617 | * @return boolean Returns the fichier unique. |
||
| 2618 | */ |
||
| 2619 | public function getFichierUnique() { |
||
| 2620 | return $this->fichierUnique; |
||
| 2621 | } |
||
| 2622 | |||
| 2623 | /** |
||
| 2624 | * Get the filtrer liste emp. |
||
| 2625 | * |
||
| 2626 | * @return int Returns the filtrer liste emp. |
||
| 2627 | */ |
||
| 2628 | public function getFiltrerListeEmp() { |
||
| 2629 | return $this->filtrerListeEmp; |
||
| 2630 | } |
||
| 2631 | |||
| 2632 | /** |
||
| 2633 | * Get the fin periode d a s. |
||
| 2634 | * |
||
| 2635 | * @return DateTime Returns the fin periode d a s. |
||
| 2636 | */ |
||
| 2637 | public function getFinPeriodeDAS() { |
||
| 2638 | return $this->finPeriodeDAS; |
||
| 2639 | } |
||
| 2640 | |||
| 2641 | /** |
||
| 2642 | * Get the fin periode histo d a s. |
||
| 2643 | * |
||
| 2644 | * @return DateTime Returns the fin periode histo d a s. |
||
| 2645 | */ |
||
| 2646 | public function getFinPeriodeHistoDAS() { |
||
| 2647 | return $this->finPeriodeHistoDAS; |
||
| 2648 | } |
||
| 2649 | |||
| 2650 | /** |
||
| 2651 | * Get the flag traite. |
||
| 2652 | * |
||
| 2653 | * @return string Returns the flag traite. |
||
| 2654 | */ |
||
| 2655 | public function getFlagTraite() { |
||
| 2656 | return $this->flagTraite; |
||
| 2657 | } |
||
| 2658 | |||
| 2659 | /** |
||
| 2660 | * Get the flag traite2. |
||
| 2661 | * |
||
| 2662 | * @return int Returns the flag traite2. |
||
| 2663 | */ |
||
| 2664 | public function getFlagTraite2() { |
||
| 2665 | return $this->flagTraite2; |
||
| 2666 | } |
||
| 2667 | |||
| 2668 | /** |
||
| 2669 | * Get the flag traite3. |
||
| 2670 | * |
||
| 2671 | * @return int Returns the flag traite3. |
||
| 2672 | */ |
||
| 2673 | public function getFlagTraite3() { |
||
| 2674 | return $this->flagTraite3; |
||
| 2675 | } |
||
| 2676 | |||
| 2677 | /** |
||
| 2678 | * Get the format fic virement. |
||
| 2679 | * |
||
| 2680 | * @return string Returns the format fic virement. |
||
| 2681 | */ |
||
| 2682 | public function getFormatFicVirement() { |
||
| 2683 | return $this->formatFicVirement; |
||
| 2684 | } |
||
| 2685 | |||
| 2686 | /** |
||
| 2687 | * Get the gest num bulletin. |
||
| 2688 | * |
||
| 2689 | * @return boolean Returns the gest num bulletin. |
||
| 2690 | */ |
||
| 2691 | public function getGestNumBulletin() { |
||
| 2692 | return $this->gestNumBulletin; |
||
| 2693 | } |
||
| 2694 | |||
| 2695 | /** |
||
| 2696 | * Get the gest repo compens. |
||
| 2697 | * |
||
| 2698 | * @return boolean Returns the gest repo compens. |
||
| 2699 | */ |
||
| 2700 | public function getGestRepoCompens() { |
||
| 2701 | return $this->gestRepoCompens; |
||
| 2702 | } |
||
| 2703 | |||
| 2704 | /** |
||
| 2705 | * Get the gest texte. |
||
| 2706 | * |
||
| 2707 | * @return boolean Returns the gest texte. |
||
| 2708 | */ |
||
| 2709 | public function getGestTexte() { |
||
| 2710 | return $this->gestTexte; |
||
| 2711 | } |
||
| 2712 | |||
| 2713 | /** |
||
| 2714 | * Get the gestion coeff. |
||
| 2715 | * |
||
| 2716 | * @return boolean Returns the gestion coeff. |
||
| 2717 | */ |
||
| 2718 | public function getGestionCoeff() { |
||
| 2719 | return $this->gestionCoeff; |
||
| 2720 | } |
||
| 2721 | |||
| 2722 | /** |
||
| 2723 | * Get the gestion coeff grille. |
||
| 2724 | * |
||
| 2725 | * @return boolean Returns the gestion coeff grille. |
||
| 2726 | */ |
||
| 2727 | public function getGestionCoeffGrille() { |
||
| 2728 | return $this->gestionCoeffGrille; |
||
| 2729 | } |
||
| 2730 | |||
| 2731 | /** |
||
| 2732 | * Get the gestion exemplaire. |
||
| 2733 | * |
||
| 2734 | * @return string Returns the gestion exemplaire. |
||
| 2735 | */ |
||
| 2736 | public function getGestionExemplaire() { |
||
| 2737 | return $this->gestionExemplaire; |
||
| 2738 | } |
||
| 2739 | |||
| 2740 | /** |
||
| 2741 | * Get the gestion intemperie. |
||
| 2742 | * |
||
| 2743 | * @return boolean Returns the gestion intemperie. |
||
| 2744 | */ |
||
| 2745 | public function getGestionIntemperie() { |
||
| 2746 | return $this->gestionIntemperie; |
||
| 2747 | } |
||
| 2748 | |||
| 2749 | /** |
||
| 2750 | * Get the gestion numero employe auto. |
||
| 2751 | * |
||
| 2752 | * @return boolean Returns the gestion numero employe auto. |
||
| 2753 | */ |
||
| 2754 | public function getGestionNumeroEmployeAuto() { |
||
| 2755 | return $this->gestionNumeroEmployeAuto; |
||
| 2756 | } |
||
| 2757 | |||
| 2758 | /** |
||
| 2759 | * Get the gestion q p x l. |
||
| 2760 | * |
||
| 2761 | * @return boolean Returns the gestion q p x l. |
||
| 2762 | */ |
||
| 2763 | public function getGestionQPXL() { |
||
| 2764 | return $this->gestionQPXL; |
||
| 2765 | } |
||
| 2766 | |||
| 2767 | /** |
||
| 2768 | * Get the gestion t d bilaterale. |
||
| 2769 | * |
||
| 2770 | * @return boolean Returns the gestion t d bilaterale. |
||
| 2771 | */ |
||
| 2772 | public function getGestionTDBilaterale() { |
||
| 2773 | return $this->gestionTDBilaterale; |
||
| 2774 | } |
||
| 2775 | |||
| 2776 | /** |
||
| 2777 | * Get the gestion t d sou d a d s u. |
||
| 2778 | * |
||
| 2779 | * @return boolean Returns the gestion t d sou d a d s u. |
||
| 2780 | */ |
||
| 2781 | public function getGestionTDSouDADSU() { |
||
| 2782 | return $this->gestionTDSouDADSU; |
||
| 2783 | } |
||
| 2784 | |||
| 2785 | /** |
||
| 2786 | * Get the groupe g i. |
||
| 2787 | * |
||
| 2788 | * @return string Returns the groupe g i. |
||
| 2789 | */ |
||
| 2790 | public function getGroupeGI() { |
||
| 2791 | return $this->groupeGI; |
||
| 2792 | } |
||
| 2793 | |||
| 2794 | /** |
||
| 2795 | * Get the h bonif influ cassation. |
||
| 2796 | * |
||
| 2797 | * @return string Returns the h bonif influ cassation. |
||
| 2798 | */ |
||
| 2799 | public function getHBonifInfluCassation() { |
||
| 2800 | return $this->hBonifInfluCassation; |
||
| 2801 | } |
||
| 2802 | |||
| 2803 | /** |
||
| 2804 | * Get the h sup1 structurelle. |
||
| 2805 | * |
||
| 2806 | * @return boolean Returns the h sup1 structurelle. |
||
| 2807 | */ |
||
| 2808 | public function getHSup1Structurelle() { |
||
| 2809 | return $this->hSup1Structurelle; |
||
| 2810 | } |
||
| 2811 | |||
| 2812 | /** |
||
| 2813 | * Get the h sup2 structurelle. |
||
| 2814 | * |
||
| 2815 | * @return boolean Returns the h sup2 structurelle. |
||
| 2816 | */ |
||
| 2817 | public function getHSup2Structurelle() { |
||
| 2818 | return $this->hSup2Structurelle; |
||
| 2819 | } |
||
| 2820 | |||
| 2821 | /** |
||
| 2822 | * Get the h sup3 structurelle. |
||
| 2823 | * |
||
| 2824 | * @return boolean Returns the h sup3 structurelle. |
||
| 2825 | */ |
||
| 2826 | public function getHSup3Structurelle() { |
||
| 2827 | return $this->hSup3Structurelle; |
||
| 2828 | } |
||
| 2829 | |||
| 2830 | /** |
||
| 2831 | * Get the h sup4 structurelle. |
||
| 2832 | * |
||
| 2833 | * @return boolean Returns the h sup4 structurelle. |
||
| 2834 | */ |
||
| 2835 | public function getHSup4Structurelle() { |
||
| 2836 | return $this->hSup4Structurelle; |
||
| 2837 | } |
||
| 2838 | |||
| 2839 | /** |
||
| 2840 | * Get the h sup5 structurelle. |
||
| 2841 | * |
||
| 2842 | * @return boolean Returns the h sup5 structurelle. |
||
| 2843 | */ |
||
| 2844 | public function getHSup5Structurelle() { |
||
| 2845 | return $this->hSup5Structurelle; |
||
| 2846 | } |
||
| 2847 | |||
| 2848 | /** |
||
| 2849 | * Get the heure sup2 influ cassation. |
||
| 2850 | * |
||
| 2851 | * @return string Returns the heure sup2 influ cassation. |
||
| 2852 | */ |
||
| 2853 | public function getHeureSup2InfluCassation() { |
||
| 2854 | return $this->heureSup2InfluCassation; |
||
| 2855 | } |
||
| 2856 | |||
| 2857 | /** |
||
| 2858 | * Get the heure sup3 influ cassation. |
||
| 2859 | * |
||
| 2860 | * @return string Returns the heure sup3 influ cassation. |
||
| 2861 | */ |
||
| 2862 | public function getHeureSup3InfluCassation() { |
||
| 2863 | return $this->heureSup3InfluCassation; |
||
| 2864 | } |
||
| 2865 | |||
| 2866 | /** |
||
| 2867 | * Get the heure sup4 influ cassation. |
||
| 2868 | * |
||
| 2869 | * @return string Returns the heure sup4 influ cassation. |
||
| 2870 | */ |
||
| 2871 | public function getHeureSup4InfluCassation() { |
||
| 2872 | return $this->heureSup4InfluCassation; |
||
| 2873 | } |
||
| 2874 | |||
| 2875 | /** |
||
| 2876 | * Get the heure sup5 influ cassation. |
||
| 2877 | * |
||
| 2878 | * @return string Returns the heure sup5 influ cassation. |
||
| 2879 | */ |
||
| 2880 | public function getHeureSup5InfluCassation() { |
||
| 2881 | return $this->heureSup5InfluCassation; |
||
| 2882 | } |
||
| 2883 | |||
| 2884 | /** |
||
| 2885 | * Get the heure sup influ cassation. |
||
| 2886 | * |
||
| 2887 | * @return string Returns the heure sup influ cassation. |
||
| 2888 | */ |
||
| 2889 | public function getHeureSupInfluCassation() { |
||
| 2890 | return $this->heureSupInfluCassation; |
||
| 2891 | } |
||
| 2892 | |||
| 2893 | /** |
||
| 2894 | * Get the heure theo base trav. |
||
| 2895 | * |
||
| 2896 | * @return string Returns the heure theo base trav. |
||
| 2897 | */ |
||
| 2898 | public function getHeureTheoBaseTrav() { |
||
| 2899 | return $this->heureTheoBaseTrav; |
||
| 2900 | } |
||
| 2901 | |||
| 2902 | /** |
||
| 2903 | * Get the indem cp intervient brutal. |
||
| 2904 | * |
||
| 2905 | * @return boolean Returns the indem cp intervient brutal. |
||
| 2906 | */ |
||
| 2907 | public function getIndemCpIntervientBrutal() { |
||
| 2908 | return $this->indemCpIntervientBrutal; |
||
| 2909 | } |
||
| 2910 | |||
| 2911 | /** |
||
| 2912 | * Get the jour debut transfert. |
||
| 2913 | * |
||
| 2914 | * @return int Returns the jour debut transfert. |
||
| 2915 | */ |
||
| 2916 | public function getJourDebutTransfert() { |
||
| 2917 | return $this->jourDebutTransfert; |
||
| 2918 | } |
||
| 2919 | |||
| 2920 | /** |
||
| 2921 | * Get the jour fin transfert. |
||
| 2922 | * |
||
| 2923 | * @return int Returns the jour fin transfert. |
||
| 2924 | */ |
||
| 2925 | public function getJourFinTransfert() { |
||
| 2926 | return $this->jourFinTransfert; |
||
| 2927 | } |
||
| 2928 | |||
| 2929 | /** |
||
| 2930 | * Get the jrn format. |
||
| 2931 | * |
||
| 2932 | * @return string Returns the jrn format. |
||
| 2933 | */ |
||
| 2934 | public function getJrnFormat() { |
||
| 2935 | return $this->jrnFormat; |
||
| 2936 | } |
||
| 2937 | |||
| 2938 | /** |
||
| 2939 | * Get the jrn regroupe abs. |
||
| 2940 | * |
||
| 2941 | * @return boolean Returns the jrn regroupe abs. |
||
| 2942 | */ |
||
| 2943 | public function getJrnRegroupeAbs() { |
||
| 2944 | return $this->jrnRegroupeAbs; |
||
| 2945 | } |
||
| 2946 | |||
| 2947 | /** |
||
| 2948 | * Get the jrn tri. |
||
| 2949 | * |
||
| 2950 | * @return string Returns the jrn tri. |
||
| 2951 | */ |
||
| 2952 | public function getJrnTri() { |
||
| 2953 | return $this->jrnTri; |
||
| 2954 | } |
||
| 2955 | |||
| 2956 | /** |
||
| 2957 | * Get the jrn tri etablissement. |
||
| 2958 | * |
||
| 2959 | * @return string Returns the jrn tri etablissement. |
||
| 2960 | */ |
||
| 2961 | public function getJrnTriEtablissement() { |
||
| 2962 | return $this->jrnTriEtablissement; |
||
| 2963 | } |
||
| 2964 | |||
| 2965 | /** |
||
| 2966 | * Get the jrn tri service. |
||
| 2967 | * |
||
| 2968 | * @return string Returns the jrn tri service. |
||
| 2969 | */ |
||
| 2970 | public function getJrnTriService() { |
||
| 2971 | return $this->jrnTriService; |
||
| 2972 | } |
||
| 2973 | |||
| 2974 | /** |
||
| 2975 | * Get the jrn type. |
||
| 2976 | * |
||
| 2977 | * @return string Returns the jrn type. |
||
| 2978 | */ |
||
| 2979 | public function getJrnType() { |
||
| 2980 | return $this->jrnType; |
||
| 2981 | } |
||
| 2982 | |||
| 2983 | /** |
||
| 2984 | * Get the liaison proprete. |
||
| 2985 | * |
||
| 2986 | * @return boolean Returns the liaison proprete. |
||
| 2987 | */ |
||
| 2988 | public function getLiaisonProprete() { |
||
| 2989 | return $this->liaisonProprete; |
||
| 2990 | } |
||
| 2991 | |||
| 2992 | /** |
||
| 2993 | * Get the lib arbitrage. |
||
| 2994 | * |
||
| 2995 | * @return string Returns the lib arbitrage. |
||
| 2996 | */ |
||
| 2997 | public function getLibArbitrage() { |
||
| 2998 | return $this->libArbitrage; |
||
| 2999 | } |
||
| 3000 | |||
| 3001 | /** |
||
| 3002 | * Get the lib b q c p. |
||
| 3003 | * |
||
| 3004 | * @return string Returns the lib b q c p. |
||
| 3005 | */ |
||
| 3006 | public function getLibBQCP() { |
||
| 3007 | return $this->libBQCP; |
||
| 3008 | } |
||
| 3009 | |||
| 3010 | /** |
||
| 3011 | * Get the lib base conge. |
||
| 3012 | * |
||
| 3013 | * @return string Returns the lib base conge. |
||
| 3014 | */ |
||
| 3015 | public function getLibBaseConge() { |
||
| 3016 | return $this->libBaseConge; |
||
| 3017 | } |
||
| 3018 | |||
| 3019 | /** |
||
| 3020 | * Get the lib cachet a e m. |
||
| 3021 | * |
||
| 3022 | * @return string Returns the lib cachet a e m. |
||
| 3023 | */ |
||
| 3024 | public function getLibCachetAEM() { |
||
| 3025 | return $this->libCachetAEM; |
||
| 3026 | } |
||
| 3027 | |||
| 3028 | /** |
||
| 3029 | * Get the lib cotis c n e. |
||
| 3030 | * |
||
| 3031 | * @return string Returns the lib cotis c n e. |
||
| 3032 | */ |
||
| 3033 | public function getLibCotisCNE() { |
||
| 3034 | return $this->libCotisCNE; |
||
| 3035 | } |
||
| 3036 | |||
| 3037 | /** |
||
| 3038 | * Get the lib fin contrat. |
||
| 3039 | * |
||
| 3040 | * @return string Returns the lib fin contrat. |
||
| 3041 | */ |
||
| 3042 | public function getLibFinContrat() { |
||
| 3043 | return $this->libFinContrat; |
||
| 3044 | } |
||
| 3045 | |||
| 3046 | /** |
||
| 3047 | * Get the lib fin contrat c n e. |
||
| 3048 | * |
||
| 3049 | * @return string Returns the lib fin contrat c n e. |
||
| 3050 | */ |
||
| 3051 | public function getLibFinContratCNE() { |
||
| 3052 | return $this->libFinContratCNE; |
||
| 3053 | } |
||
| 3054 | |||
| 3055 | /** |
||
| 3056 | * Get the lib indem cp. |
||
| 3057 | * |
||
| 3058 | * @return string Returns the lib indem cp. |
||
| 3059 | */ |
||
| 3060 | public function getLibIndemCp() { |
||
| 3061 | return $this->libIndemCp; |
||
| 3062 | } |
||
| 3063 | |||
| 3064 | /** |
||
| 3065 | * Get the libelle libre virement. |
||
| 3066 | * |
||
| 3067 | * @return string Returns the libelle libre virement. |
||
| 3068 | */ |
||
| 3069 | public function getLibelleLibreVirement() { |
||
| 3070 | return $this->libelleLibreVirement; |
||
| 3071 | } |
||
| 3072 | |||
| 3073 | /** |
||
| 3074 | * Get the ligne bul euro. |
||
| 3075 | * |
||
| 3076 | * @return boolean Returns the ligne bul euro. |
||
| 3077 | */ |
||
| 3078 | public function getLigneBulEuro() { |
||
| 3079 | return $this->ligneBulEuro; |
||
| 3080 | } |
||
| 3081 | |||
| 3082 | /** |
||
| 3083 | * Get the lignes transport. |
||
| 3084 | * |
||
| 3085 | * @return boolean Returns the lignes transport. |
||
| 3086 | */ |
||
| 3087 | public function getLignesTransport() { |
||
| 3088 | return $this->lignesTransport; |
||
| 3089 | } |
||
| 3090 | |||
| 3091 | /** |
||
| 3092 | * Get the mail bulletin. |
||
| 3093 | * |
||
| 3094 | * @return string Returns the mail bulletin. |
||
| 3095 | */ |
||
| 3096 | public function getMailBulletin() { |
||
| 3097 | return $this->mailBulletin; |
||
| 3098 | } |
||
| 3099 | |||
| 3100 | /** |
||
| 3101 | * Get the mail bulletin cle. |
||
| 3102 | * |
||
| 3103 | * @return string Returns the mail bulletin cle. |
||
| 3104 | */ |
||
| 3105 | public function getMailBulletinCle() { |
||
| 3106 | return $this->mailBulletinCle; |
||
| 3107 | } |
||
| 3108 | |||
| 3109 | /** |
||
| 3110 | * Get the mail bulletin p j. |
||
| 3111 | * |
||
| 3112 | * @return string Returns the mail bulletin p j. |
||
| 3113 | */ |
||
| 3114 | public function getMailBulletinPJ() { |
||
| 3115 | return $this->mailBulletinPJ; |
||
| 3116 | } |
||
| 3117 | |||
| 3118 | /** |
||
| 3119 | * Get the mail c li ducs edi. |
||
| 3120 | * |
||
| 3121 | * @return boolean Returns the mail c li ducs edi. |
||
| 3122 | */ |
||
| 3123 | public function getMailCLiDucsEdi() { |
||
| 3124 | return $this->mailCLiDucsEdi; |
||
| 3125 | } |
||
| 3126 | |||
| 3127 | /** |
||
| 3128 | * Get the mention cp. |
||
| 3129 | * |
||
| 3130 | * @return boolean Returns the mention cp. |
||
| 3131 | */ |
||
| 3132 | public function getMentionCp() { |
||
| 3133 | return $this->mentionCp; |
||
| 3134 | } |
||
| 3135 | |||
| 3136 | /** |
||
| 3137 | * Get the message vu. |
||
| 3138 | * |
||
| 3139 | * @return boolean Returns the message vu. |
||
| 3140 | */ |
||
| 3141 | public function getMessageVu() { |
||
| 3142 | return $this->messageVu; |
||
| 3143 | } |
||
| 3144 | |||
| 3145 | /** |
||
| 3146 | * Get the millesime_1. |
||
| 3147 | * |
||
| 3148 | * @return int Returns the millesime_1. |
||
| 3149 | */ |
||
| 3150 | public function getMillesime_1() { |
||
| 3151 | return $this->millesime_1; |
||
| 3152 | } |
||
| 3153 | |||
| 3154 | /** |
||
| 3155 | * Get the mode planning. |
||
| 3156 | * |
||
| 3157 | * @return int Returns the mode planning. |
||
| 3158 | */ |
||
| 3159 | public function getModePlanning() { |
||
| 3160 | return $this->modePlanning; |
||
| 3161 | } |
||
| 3162 | |||
| 3163 | /** |
||
| 3164 | * Get the modele apercu. |
||
| 3165 | * |
||
| 3166 | * @return string Returns the modele apercu. |
||
| 3167 | */ |
||
| 3168 | public function getModeleApercu() { |
||
| 3169 | return $this->modeleApercu; |
||
| 3170 | } |
||
| 3171 | |||
| 3172 | /** |
||
| 3173 | * Get the modele bon bleu. |
||
| 3174 | * |
||
| 3175 | * @return string Returns the modele bon bleu. |
||
| 3176 | */ |
||
| 3177 | public function getModeleBonBleu() { |
||
| 3178 | return $this->modeleBonBleu; |
||
| 3179 | } |
||
| 3180 | |||
| 3181 | /** |
||
| 3182 | * Get the modele bulletin. |
||
| 3183 | * |
||
| 3184 | * @return string Returns the modele bulletin. |
||
| 3185 | */ |
||
| 3186 | public function getModeleBulletin() { |
||
| 3187 | return $this->modeleBulletin; |
||
| 3188 | } |
||
| 3189 | |||
| 3190 | /** |
||
| 3191 | * Get the modele certif. |
||
| 3192 | * |
||
| 3193 | * @return string Returns the modele certif. |
||
| 3194 | */ |
||
| 3195 | public function getModeleCertif() { |
||
| 3196 | return $this->modeleCertif; |
||
| 3197 | } |
||
| 3198 | |||
| 3199 | /** |
||
| 3200 | * Get the modele certif trav. |
||
| 3201 | * |
||
| 3202 | * @return string Returns the modele certif trav. |
||
| 3203 | */ |
||
| 3204 | public function getModeleCertifTrav() { |
||
| 3205 | return $this->modeleCertifTrav; |
||
| 3206 | } |
||
| 3207 | |||
| 3208 | /** |
||
| 3209 | * Get the modele cheque. |
||
| 3210 | * |
||
| 3211 | * @return string Returns the modele cheque. |
||
| 3212 | */ |
||
| 3213 | public function getModeleCheque() { |
||
| 3214 | return $this->modeleCheque; |
||
| 3215 | } |
||
| 3216 | |||
| 3217 | /** |
||
| 3218 | * Get the mois cloture an. |
||
| 3219 | * |
||
| 3220 | * @return string Returns the mois cloture an. |
||
| 3221 | */ |
||
| 3222 | public function getMoisClotureAn() { |
||
| 3223 | return $this->moisClotureAn; |
||
| 3224 | } |
||
| 3225 | |||
| 3226 | /** |
||
| 3227 | * Get the n attest a e m. |
||
| 3228 | * |
||
| 3229 | * @return int Returns the n attest a e m. |
||
| 3230 | */ |
||
| 3231 | public function getNAttestAEM() { |
||
| 3232 | return $this->nAttestAEM; |
||
| 3233 | } |
||
| 3234 | |||
| 3235 | /** |
||
| 3236 | * Get the n attest a e m e d i. |
||
| 3237 | * |
||
| 3238 | * @return int Returns the n attest a e m e d i. |
||
| 3239 | */ |
||
| 3240 | public function getNAttestAEMEDI() { |
||
| 3241 | return $this->nAttestAEMEDI; |
||
| 3242 | } |
||
| 3243 | |||
| 3244 | /** |
||
| 3245 | * Get the n attest a e m x. |
||
| 3246 | * |
||
| 3247 | * @return int Returns the n attest a e m x. |
||
| 3248 | */ |
||
| 3249 | public function getNAttestAEMX() { |
||
| 3250 | return $this->nAttestAEMX; |
||
| 3251 | } |
||
| 3252 | |||
| 3253 | /** |
||
| 3254 | * Get the n attest assedic. |
||
| 3255 | * |
||
| 3256 | * @return int Returns the n attest assedic. |
||
| 3257 | */ |
||
| 3258 | public function getNAttestAssedic() { |
||
| 3259 | return $this->nAttestAssedic; |
||
| 3260 | } |
||
| 3261 | |||
| 3262 | /** |
||
| 3263 | * Get the n attest extras. |
||
| 3264 | * |
||
| 3265 | * @return int Returns the n attest extras. |
||
| 3266 | */ |
||
| 3267 | public function getNAttestExtras() { |
||
| 3268 | return $this->nAttestExtras; |
||
| 3269 | } |
||
| 3270 | |||
| 3271 | /** |
||
| 3272 | * Get the n attest ijss. |
||
| 3273 | * |
||
| 3274 | * @return int Returns the n attest ijss. |
||
| 3275 | */ |
||
| 3276 | public function getNAttestIjss() { |
||
| 3277 | return $this->nAttestIjss; |
||
| 3278 | } |
||
| 3279 | |||
| 3280 | /** |
||
| 3281 | * Get the n attest ijss a t. |
||
| 3282 | * |
||
| 3283 | * @return int Returns the n attest ijss a t. |
||
| 3284 | */ |
||
| 3285 | public function getNAttestIjssAT() { |
||
| 3286 | return $this->nAttestIjssAT; |
||
| 3287 | } |
||
| 3288 | |||
| 3289 | /** |
||
| 3290 | * Get the n c e conges spectacles. |
||
| 3291 | * |
||
| 3292 | * @return int Returns the n c e conges spectacles. |
||
| 3293 | */ |
||
| 3294 | public function getNCECongesSpectacles() { |
||
| 3295 | return $this->nCECongesSpectacles; |
||
| 3296 | } |
||
| 3297 | |||
| 3298 | /** |
||
| 3299 | * Get the n der document. |
||
| 3300 | * |
||
| 3301 | * @return int Returns the n der document. |
||
| 3302 | */ |
||
| 3303 | public function getNDerDocument() { |
||
| 3304 | return $this->nDerDocument; |
||
| 3305 | } |
||
| 3306 | |||
| 3307 | /** |
||
| 3308 | * Get the nap euro. |
||
| 3309 | * |
||
| 3310 | * @return boolean Returns the nap euro. |
||
| 3311 | */ |
||
| 3312 | public function getNapEuro() { |
||
| 3313 | return $this->napEuro; |
||
| 3314 | } |
||
| 3315 | |||
| 3316 | /** |
||
| 3317 | * Get the nb exemplaire. |
||
| 3318 | * |
||
| 3319 | * @return string Returns the nb exemplaire. |
||
| 3320 | */ |
||
| 3321 | public function getNbExemplaire() { |
||
| 3322 | return $this->nbExemplaire; |
||
| 3323 | } |
||
| 3324 | |||
| 3325 | /** |
||
| 3326 | * Get the nouv param retraite type. |
||
| 3327 | * |
||
| 3328 | * @return boolean Returns the nouv param retraite type. |
||
| 3329 | */ |
||
| 3330 | public function getNouvParamRetraiteType() { |
||
| 3331 | return $this->nouvParamRetraiteType; |
||
| 3332 | } |
||
| 3333 | |||
| 3334 | /** |
||
| 3335 | * Get the options calc abs. |
||
| 3336 | * |
||
| 3337 | * @return boolean Returns the options calc abs. |
||
| 3338 | */ |
||
| 3339 | public function getOptionsCalcAbs() { |
||
| 3340 | return $this->optionsCalcAbs; |
||
| 3341 | } |
||
| 3342 | |||
| 3343 | /** |
||
| 3344 | * Get the ordre libelle h sup. |
||
| 3345 | * |
||
| 3346 | * @return string Returns the ordre libelle h sup. |
||
| 3347 | */ |
||
| 3348 | public function getOrdreLibelleHSup() { |
||
| 3349 | return $this->ordreLibelleHSup; |
||
| 3350 | } |
||
| 3351 | |||
| 3352 | /** |
||
| 3353 | * Get the paie euro. |
||
| 3354 | * |
||
| 3355 | * @return boolean Returns the paie euro. |
||
| 3356 | */ |
||
| 3357 | public function getPaieEuro() { |
||
| 3358 | return $this->paieEuro; |
||
| 3359 | } |
||
| 3360 | |||
| 3361 | /** |
||
| 3362 | * Get the part sal seule. |
||
| 3363 | * |
||
| 3364 | * @return boolean Returns the part sal seule. |
||
| 3365 | */ |
||
| 3366 | public function getPartSalSeule() { |
||
| 3367 | return $this->partSalSeule; |
||
| 3368 | } |
||
| 3369 | |||
| 3370 | /** |
||
| 3371 | * Get the pas gestion indice bul. |
||
| 3372 | * |
||
| 3373 | * @return boolean Returns the pas gestion indice bul. |
||
| 3374 | */ |
||
| 3375 | public function getPasGestionIndiceBul() { |
||
| 3376 | return $this->pasGestionIndiceBul; |
||
| 3377 | } |
||
| 3378 | |||
| 3379 | /** |
||
| 3380 | * Get the pas prendre i c c p fillon. |
||
| 3381 | * |
||
| 3382 | * @return boolean Returns the pas prendre i c c p fillon. |
||
| 3383 | */ |
||
| 3384 | public function getPasPrendreICCPFillon() { |
||
| 3385 | return $this->pasPrendreICCPFillon; |
||
| 3386 | } |
||
| 3387 | |||
| 3388 | /** |
||
| 3389 | * Get the pas sous tot s base. |
||
| 3390 | * |
||
| 3391 | * @return boolean Returns the pas sous tot s base. |
||
| 3392 | */ |
||
| 3393 | public function getPasSousTotSBase() { |
||
| 3394 | return $this->pasSousTotSBase; |
||
| 3395 | } |
||
| 3396 | |||
| 3397 | /** |
||
| 3398 | * Get the passage35 h fait. |
||
| 3399 | * |
||
| 3400 | * @return boolean Returns the passage35 h fait. |
||
| 3401 | */ |
||
| 3402 | public function getPassage35HFait() { |
||
| 3403 | return $this->passage35HFait; |
||
| 3404 | } |
||
| 3405 | |||
| 3406 | /** |
||
| 3407 | * Get the path virement. |
||
| 3408 | * |
||
| 3409 | * @return string Returns the path virement. |
||
| 3410 | */ |
||
| 3411 | public function getPathVirement() { |
||
| 3412 | return $this->pathVirement; |
||
| 3413 | } |
||
| 3414 | |||
| 3415 | /** |
||
| 3416 | * Get the periode i paie. |
||
| 3417 | * |
||
| 3418 | * @return DateTime Returns the periode i paie. |
||
| 3419 | */ |
||
| 3420 | public function getPeriodeIPaie() { |
||
| 3421 | return $this->periodeIPaie; |
||
| 3422 | } |
||
| 3423 | |||
| 3424 | /** |
||
| 3425 | * Get the periode paie. |
||
| 3426 | * |
||
| 3427 | * @return DateTime Returns the periode paie. |
||
| 3428 | */ |
||
| 3429 | public function getPeriodePaie() { |
||
| 3430 | return $this->periodePaie; |
||
| 3431 | } |
||
| 3432 | |||
| 3433 | /** |
||
| 3434 | * Get the pj mail c li ducs edi. |
||
| 3435 | * |
||
| 3436 | * @return boolean Returns the pj mail c li ducs edi. |
||
| 3437 | */ |
||
| 3438 | public function getPjMailCLiDucsEdi() { |
||
| 3439 | return $this->pjMailCLiDucsEdi; |
||
| 3440 | } |
||
| 3441 | |||
| 3442 | /** |
||
| 3443 | * Get the pj mail cli coupon paiement. |
||
| 3444 | * |
||
| 3445 | * @return boolean Returns the pj mail cli coupon paiement. |
||
| 3446 | */ |
||
| 3447 | public function getPjMailCliCouponPaiement() { |
||
| 3448 | return $this->pjMailCliCouponPaiement; |
||
| 3449 | } |
||
| 3450 | |||
| 3451 | /** |
||
| 3452 | * Get the plafond. |
||
| 3453 | * |
||
| 3454 | * @return float Returns the plafond. |
||
| 3455 | */ |
||
| 3456 | public function getPlafond() { |
||
| 3457 | return $this->plafond; |
||
| 3458 | } |
||
| 3459 | |||
| 3460 | /** |
||
| 3461 | * Get the porta frais sante certif trav. |
||
| 3462 | * |
||
| 3463 | * @return boolean Returns the porta frais sante certif trav. |
||
| 3464 | */ |
||
| 3465 | public function getPortaFraisSanteCertifTrav() { |
||
| 3466 | return $this->portaFraisSanteCertifTrav; |
||
| 3467 | } |
||
| 3468 | |||
| 3469 | /** |
||
| 3470 | * Get the porta prevoyance oblig. |
||
| 3471 | * |
||
| 3472 | * @return boolean Returns the porta prevoyance oblig. |
||
| 3473 | */ |
||
| 3474 | public function getPortaPrevoyanceOblig() { |
||
| 3475 | return $this->portaPrevoyanceOblig; |
||
| 3476 | } |
||
| 3477 | |||
| 3478 | /** |
||
| 3479 | * Get the preparation t d p. |
||
| 3480 | * |
||
| 3481 | * @return boolean Returns the preparation t d p. |
||
| 3482 | */ |
||
| 3483 | public function getPreparationTDP() { |
||
| 3484 | return $this->preparationTDP; |
||
| 3485 | } |
||
| 3486 | |||
| 3487 | /** |
||
| 3488 | * Get the presence min. |
||
| 3489 | * |
||
| 3490 | * @return string Returns the presence min. |
||
| 3491 | */ |
||
| 3492 | public function getPresenceMin() { |
||
| 3493 | return $this->presenceMin; |
||
| 3494 | } |
||
| 3495 | |||
| 3496 | /** |
||
| 3497 | * Get the prorata dif certif trav. |
||
| 3498 | * |
||
| 3499 | * @return boolean Returns the prorata dif certif trav. |
||
| 3500 | */ |
||
| 3501 | public function getProrataDifCertifTrav() { |
||
| 3502 | return $this->prorataDifCertifTrav; |
||
| 3503 | } |
||
| 3504 | |||
| 3505 | /** |
||
| 3506 | * Get the r d l p_ a s c i i. |
||
| 3507 | * |
||
| 3508 | * @return boolean Returns the r d l p_ a s c i i. |
||
| 3509 | */ |
||
| 3510 | public function getRDLP_ASCII() { |
||
| 3511 | return $this->rDLP_ASCII; |
||
| 3512 | } |
||
| 3513 | |||
| 3514 | /** |
||
| 3515 | * Get the r d l p_ e m p l o y e s. |
||
| 3516 | * |
||
| 3517 | * @return boolean Returns the r d l p_ e m p l o y e s. |
||
| 3518 | */ |
||
| 3519 | public function getRDLP_EMPLOYES() { |
||
| 3520 | return $this->rDLP_EMPLOYES; |
||
| 3521 | } |
||
| 3522 | |||
| 3523 | /** |
||
| 3524 | * Get the raz commentaire. |
||
| 3525 | * |
||
| 3526 | * @return string Returns the raz commentaire. |
||
| 3527 | */ |
||
| 3528 | public function getRazCommentaire() { |
||
| 3529 | return $this->razCommentaire; |
||
| 3530 | } |
||
| 3531 | |||
| 3532 | /** |
||
| 3533 | * Get the raz h sup. |
||
| 3534 | * |
||
| 3535 | * @return string Returns the raz h sup. |
||
| 3536 | */ |
||
| 3537 | public function getRazHSup() { |
||
| 3538 | return $this->razHSup; |
||
| 3539 | } |
||
| 3540 | |||
| 3541 | /** |
||
| 3542 | * Get the ref remise. |
||
| 3543 | * |
||
| 3544 | * @return int Returns the ref remise. |
||
| 3545 | */ |
||
| 3546 | public function getRefRemise() { |
||
| 3547 | return $this->refRemise; |
||
| 3548 | } |
||
| 3549 | |||
| 3550 | /** |
||
| 3551 | * Get the ref trans. |
||
| 3552 | * |
||
| 3553 | * @return int Returns the ref trans. |
||
| 3554 | */ |
||
| 3555 | public function getRefTrans() { |
||
| 3556 | return $this->refTrans; |
||
| 3557 | } |
||
| 3558 | |||
| 3559 | /** |
||
| 3560 | * Get the reference interne virement. |
||
| 3561 | * |
||
| 3562 | * @return string Returns the reference interne virement. |
||
| 3563 | */ |
||
| 3564 | public function getReferenceInterneVirement() { |
||
| 3565 | return $this->referenceInterneVirement; |
||
| 3566 | } |
||
| 3567 | |||
| 3568 | /** |
||
| 3569 | * Get the regroup lib ed bul. |
||
| 3570 | * |
||
| 3571 | * @return boolean Returns the regroup lib ed bul. |
||
| 3572 | */ |
||
| 3573 | public function getRegroupLibEdBul() { |
||
| 3574 | return $this->regroupLibEdBul; |
||
| 3575 | } |
||
| 3576 | |||
| 3577 | /** |
||
| 3578 | * Get the report minimum. |
||
| 3579 | * |
||
| 3580 | * @return int Returns the report minimum. |
||
| 3581 | */ |
||
| 3582 | public function getReportMinimum() { |
||
| 3583 | return $this->reportMinimum; |
||
| 3584 | } |
||
| 3585 | |||
| 3586 | /** |
||
| 3587 | * Get the retraite97. |
||
| 3588 | * |
||
| 3589 | * @return boolean Returns the retraite97. |
||
| 3590 | */ |
||
| 3591 | public function getRetraite97() { |
||
| 3592 | return $this->retraite97; |
||
| 3593 | } |
||
| 3594 | |||
| 3595 | /** |
||
| 3596 | * Get the sais plan emp sem. |
||
| 3597 | * |
||
| 3598 | * @return string Returns the sais plan emp sem. |
||
| 3599 | */ |
||
| 3600 | public function getSaisPlanEmpSem() { |
||
| 3601 | return $this->saisPlanEmpSem; |
||
| 3602 | } |
||
| 3603 | |||
| 3604 | /** |
||
| 3605 | * Get the saisie indice bul. |
||
| 3606 | * |
||
| 3607 | * @return boolean Returns the saisie indice bul. |
||
| 3608 | */ |
||
| 3609 | public function getSaisieIndiceBul() { |
||
| 3610 | return $this->saisieIndiceBul; |
||
| 3611 | } |
||
| 3612 | |||
| 3613 | /** |
||
| 3614 | * Get the saut page. |
||
| 3615 | * |
||
| 3616 | * @return boolean Returns the saut page. |
||
| 3617 | */ |
||
| 3618 | public function getSautPage() { |
||
| 3619 | return $this->sautPage; |
||
| 3620 | } |
||
| 3621 | |||
| 3622 | /** |
||
| 3623 | * Get the seuil. |
||
| 3624 | * |
||
| 3625 | * @return float Returns the seuil. |
||
| 3626 | */ |
||
| 3627 | public function getSeuil() { |
||
| 3628 | return $this->seuil; |
||
| 3629 | } |
||
| 3630 | |||
| 3631 | /** |
||
| 3632 | * Get the seuil conting. |
||
| 3633 | * |
||
| 3634 | * @return float Returns the seuil conting. |
||
| 3635 | */ |
||
| 3636 | public function getSeuilConting() { |
||
| 3637 | return $this->seuilConting; |
||
| 3638 | } |
||
| 3639 | |||
| 3640 | /** |
||
| 3641 | * Get the stc auto. |
||
| 3642 | * |
||
| 3643 | * @return boolean Returns the stc auto. |
||
| 3644 | */ |
||
| 3645 | public function getStcAuto() { |
||
| 3646 | return $this->stcAuto; |
||
| 3647 | } |
||
| 3648 | |||
| 3649 | /** |
||
| 3650 | * Get the tab bord tri etablissement. |
||
| 3651 | * |
||
| 3652 | * @return boolean Returns the tab bord tri etablissement. |
||
| 3653 | */ |
||
| 3654 | public function getTabBordTriEtablissement() { |
||
| 3655 | return $this->tabBordTriEtablissement; |
||
| 3656 | } |
||
| 3657 | |||
| 3658 | /** |
||
| 3659 | * Get the tab bord tri service. |
||
| 3660 | * |
||
| 3661 | * @return boolean Returns the tab bord tri service. |
||
| 3662 | */ |
||
| 3663 | public function getTabBordTriService() { |
||
| 3664 | return $this->tabBordTriService; |
||
| 3665 | } |
||
| 3666 | |||
| 3667 | /** |
||
| 3668 | * Get the tableau charge. |
||
| 3669 | * |
||
| 3670 | * @return string Returns the tableau charge. |
||
| 3671 | */ |
||
| 3672 | public function getTableauCharge() { |
||
| 3673 | return $this->tableauCharge; |
||
| 3674 | } |
||
| 3675 | |||
| 3676 | /** |
||
| 3677 | * Get the tds annee. |
||
| 3678 | * |
||
| 3679 | * @return int Returns the tds annee. |
||
| 3680 | */ |
||
| 3681 | public function getTdsAnnee() { |
||
| 3682 | return $this->tdsAnnee; |
||
| 3683 | } |
||
| 3684 | |||
| 3685 | /** |
||
| 3686 | * Get the tds euro. |
||
| 3687 | * |
||
| 3688 | * @return boolean Returns the tds euro. |
||
| 3689 | */ |
||
| 3690 | public function getTdsEuro() { |
||
| 3691 | return $this->tdsEuro; |
||
| 3692 | } |
||
| 3693 | |||
| 3694 | /** |
||
| 3695 | * Get the tot gene isole. |
||
| 3696 | * |
||
| 3697 | * @return string Returns the tot gene isole. |
||
| 3698 | */ |
||
| 3699 | public function getTotGeneIsole() { |
||
| 3700 | return $this->totGeneIsole; |
||
| 3701 | } |
||
| 3702 | |||
| 3703 | /** |
||
| 3704 | * Get the tot service isole. |
||
| 3705 | * |
||
| 3706 | * @return string Returns the tot service isole. |
||
| 3707 | */ |
||
| 3708 | public function getTotServiceIsole() { |
||
| 3709 | return $this->totServiceIsole; |
||
| 3710 | } |
||
| 3711 | |||
| 3712 | /** |
||
| 3713 | * Get the total etab isole. |
||
| 3714 | * |
||
| 3715 | * @return string Returns the total etab isole. |
||
| 3716 | */ |
||
| 3717 | public function getTotalEtabIsole() { |
||
| 3718 | return $this->totalEtabIsole; |
||
| 3719 | } |
||
| 3720 | |||
| 3721 | /** |
||
| 3722 | * Get the trans rupture. |
||
| 3723 | * |
||
| 3724 | * @return string Returns the trans rupture. |
||
| 3725 | */ |
||
| 3726 | public function getTransRupture() { |
||
| 3727 | return $this->transRupture; |
||
| 3728 | } |
||
| 3729 | |||
| 3730 | /** |
||
| 3731 | * Get the trans tri etablissement. |
||
| 3732 | * |
||
| 3733 | * @return string Returns the trans tri etablissement. |
||
| 3734 | */ |
||
| 3735 | public function getTransTriEtablissement() { |
||
| 3736 | return $this->transTriEtablissement; |
||
| 3737 | } |
||
| 3738 | |||
| 3739 | /** |
||
| 3740 | * Get the transfert t d s emp. |
||
| 3741 | * |
||
| 3742 | * @return boolean Returns the transfert t d s emp. |
||
| 3743 | */ |
||
| 3744 | public function getTransfertTDSEmp() { |
||
| 3745 | return $this->transfertTDSEmp; |
||
| 3746 | } |
||
| 3747 | |||
| 3748 | /** |
||
| 3749 | * Get the tri employe. |
||
| 3750 | * |
||
| 3751 | * @return string Returns the tri employe. |
||
| 3752 | */ |
||
| 3753 | public function getTriEmploye() { |
||
| 3754 | return $this->triEmploye; |
||
| 3755 | } |
||
| 3756 | |||
| 3757 | /** |
||
| 3758 | * Get the tx sal decote. |
||
| 3759 | * |
||
| 3760 | * @return float Returns the tx sal decote. |
||
| 3761 | */ |
||
| 3762 | public function getTxSalDecote() { |
||
| 3763 | return $this->txSalDecote; |
||
| 3764 | } |
||
| 3765 | |||
| 3766 | /** |
||
| 3767 | * Get the type abs sans solde. |
||
| 3768 | * |
||
| 3769 | * @return string Returns the type abs sans solde. |
||
| 3770 | */ |
||
| 3771 | public function getTypeAbsSansSolde() { |
||
| 3772 | return $this->typeAbsSansSolde; |
||
| 3773 | } |
||
| 3774 | |||
| 3775 | /** |
||
| 3776 | * Get the type agrement a e m. |
||
| 3777 | * |
||
| 3778 | * @return string Returns the type agrement a e m. |
||
| 3779 | */ |
||
| 3780 | public function getTypeAgrementAEM() { |
||
| 3781 | return $this->typeAgrementAEM; |
||
| 3782 | } |
||
| 3783 | |||
| 3784 | /** |
||
| 3785 | * Get the type bordereau prepa. |
||
| 3786 | * |
||
| 3787 | * @return string Returns the type bordereau prepa. |
||
| 3788 | */ |
||
| 3789 | public function getTypeBordereauPrepa() { |
||
| 3790 | return $this->typeBordereauPrepa; |
||
| 3791 | } |
||
| 3792 | |||
| 3793 | /** |
||
| 3794 | * Get the type bulletin. |
||
| 3795 | * |
||
| 3796 | * @return string Returns the type bulletin. |
||
| 3797 | */ |
||
| 3798 | public function getTypeBulletin() { |
||
| 3799 | return $this->typeBulletin; |
||
| 3800 | } |
||
| 3801 | |||
| 3802 | /** |
||
| 3803 | * Get the type d u e. |
||
| 3804 | * |
||
| 3805 | * @return string Returns the type d u e. |
||
| 3806 | */ |
||
| 3807 | public function getTypeDUE() { |
||
| 3808 | return $this->typeDUE; |
||
| 3809 | } |
||
| 3810 | |||
| 3811 | /** |
||
| 3812 | * Get the type dossier. |
||
| 3813 | * |
||
| 3814 | * @return string Returns the type dossier. |
||
| 3815 | */ |
||
| 3816 | public function getTypeDossier() { |
||
| 3817 | return $this->typeDossier; |
||
| 3818 | } |
||
| 3819 | |||
| 3820 | /** |
||
| 3821 | * Get the type effectif. |
||
| 3822 | * |
||
| 3823 | * @return string Returns the type effectif. |
||
| 3824 | */ |
||
| 3825 | public function getTypeEffectif() { |
||
| 3826 | return $this->typeEffectif; |
||
| 3827 | } |
||
| 3828 | |||
| 3829 | /** |
||
| 3830 | * Get the type fich bilat. |
||
| 3831 | * |
||
| 3832 | * @return string Returns the type fich bilat. |
||
| 3833 | */ |
||
| 3834 | public function getTypeFichBilat() { |
||
| 3835 | return $this->typeFichBilat; |
||
| 3836 | } |
||
| 3837 | |||
| 3838 | /** |
||
| 3839 | * Get the type gestion bal. |
||
| 3840 | * |
||
| 3841 | * @return string Returns the type gestion bal. |
||
| 3842 | */ |
||
| 3843 | public function getTypeGestionBal() { |
||
| 3844 | return $this->typeGestionBal; |
||
| 3845 | } |
||
| 3846 | |||
| 3847 | /** |
||
| 3848 | * Get the type modele. |
||
| 3849 | * |
||
| 3850 | * @return string Returns the type modele. |
||
| 3851 | */ |
||
| 3852 | public function getTypeModele() { |
||
| 3853 | return $this->typeModele; |
||
| 3854 | } |
||
| 3855 | |||
| 3856 | /** |
||
| 3857 | * Get the type prep d a d s u. |
||
| 3858 | * |
||
| 3859 | * @return string Returns the type prep d a d s u. |
||
| 3860 | */ |
||
| 3861 | public function getTypePrepDADSU() { |
||
| 3862 | return $this->typePrepDADSU; |
||
| 3863 | } |
||
| 3864 | |||
| 3865 | /** |
||
| 3866 | * Get the type saisie abs. |
||
| 3867 | * |
||
| 3868 | * @return string Returns the type saisie abs. |
||
| 3869 | */ |
||
| 3870 | public function getTypeSaisieAbs() { |
||
| 3871 | return $this->typeSaisieAbs; |
||
| 3872 | } |
||
| 3873 | |||
| 3874 | /** |
||
| 3875 | * Get the type saisie absence. |
||
| 3876 | * |
||
| 3877 | * @return string Returns the type saisie absence. |
||
| 3878 | */ |
||
| 3879 | public function getTypeSaisieAbsence() { |
||
| 3880 | return $this->typeSaisieAbsence; |
||
| 3881 | } |
||
| 3882 | |||
| 3883 | /** |
||
| 3884 | * Get the type stc. |
||
| 3885 | * |
||
| 3886 | * @return string Returns the type stc. |
||
| 3887 | */ |
||
| 3888 | public function getTypeStc() { |
||
| 3889 | return $this->typeStc; |
||
| 3890 | } |
||
| 3891 | |||
| 3892 | /** |
||
| 3893 | * Get the type taux intemperie. |
||
| 3894 | * |
||
| 3895 | * @return string Returns the type taux intemperie. |
||
| 3896 | */ |
||
| 3897 | public function getTypeTauxIntemperie() { |
||
| 3898 | return $this->typeTauxIntemperie; |
||
| 3899 | } |
||
| 3900 | |||
| 3901 | /** |
||
| 3902 | * Get the type tri. |
||
| 3903 | * |
||
| 3904 | * @return string Returns the type tri. |
||
| 3905 | */ |
||
| 3906 | public function getTypeTri() { |
||
| 3907 | return $this->typeTri; |
||
| 3908 | } |
||
| 3909 | |||
| 3910 | /** |
||
| 3911 | * Get the type virement. |
||
| 3912 | * |
||
| 3913 | * @return string Returns the type virement. |
||
| 3914 | */ |
||
| 3915 | public function getTypeVirement() { |
||
| 3916 | return $this->typeVirement; |
||
| 3917 | } |
||
| 3918 | |||
| 3919 | /** |
||
| 3920 | * Get the type visu col saisie bul. |
||
| 3921 | * |
||
| 3922 | * @return string Returns the type visu col saisie bul. |
||
| 3923 | */ |
||
| 3924 | public function getTypeVisuColSaisieBul() { |
||
| 3925 | return $this->typeVisuColSaisieBul; |
||
| 3926 | } |
||
| 3927 | |||
| 3928 | /** |
||
| 3929 | * Get the utilise pdp quadra. |
||
| 3930 | * |
||
| 3931 | * @return boolean Returns the utilise pdp quadra. |
||
| 3932 | */ |
||
| 3933 | public function getUtilisePdpQuadra() { |
||
| 3934 | return $this->utilisePdpQuadra; |
||
| 3935 | } |
||
| 3936 | |||
| 3937 | /** |
||
| 3938 | * Get the utilise pdp quadra2. |
||
| 3939 | * |
||
| 3940 | * @return boolean Returns the utilise pdp quadra2. |
||
| 3941 | */ |
||
| 3942 | public function getUtilisePdpQuadra2() { |
||
| 3943 | return $this->utilisePdpQuadra2; |
||
| 3944 | } |
||
| 3945 | |||
| 3946 | /** |
||
| 3947 | * Get the val cp bulletin. |
||
| 3948 | * |
||
| 3949 | * @return boolean Returns the val cp bulletin. |
||
| 3950 | */ |
||
| 3951 | public function getValCpBulletin() { |
||
| 3952 | return $this->valCpBulletin; |
||
| 3953 | } |
||
| 3954 | |||
| 3955 | /** |
||
| 3956 | * Get the val filtre liste emp. |
||
| 3957 | * |
||
| 3958 | * @return int Returns the val filtre liste emp. |
||
| 3959 | */ |
||
| 3960 | public function getValFiltreListeEmp() { |
||
| 3961 | return $this->valFiltreListeEmp; |
||
| 3962 | } |
||
| 3963 | |||
| 3964 | /** |
||
| 3965 | * Get the version controle d a d s u. |
||
| 3966 | * |
||
| 3967 | * @return int Returns the version controle d a d s u. |
||
| 3968 | */ |
||
| 3969 | public function getVersionControleDADSU() { |
||
| 3970 | return $this->versionControleDADSU; |
||
| 3971 | } |
||
| 3972 | |||
| 3973 | /** |
||
| 3974 | * Get the vir code etab. |
||
| 3975 | * |
||
| 3976 | * @return string Returns the vir code etab. |
||
| 3977 | */ |
||
| 3978 | public function getVirCodeEtab() { |
||
| 3979 | return $this->virCodeEtab; |
||
| 3980 | } |
||
| 3981 | |||
| 3982 | /** |
||
| 3983 | * Get the vir collectivite. |
||
| 3984 | * |
||
| 3985 | * @return string Returns the vir collectivite. |
||
| 3986 | */ |
||
| 3987 | public function getVirCollectivite() { |
||
| 3988 | return $this->virCollectivite; |
||
| 3989 | } |
||
| 3990 | |||
| 3991 | /** |
||
| 3992 | * Get the vir comptable centre. |
||
| 3993 | * |
||
| 3994 | * @return string Returns the vir comptable centre. |
||
| 3995 | */ |
||
| 3996 | public function getVirComptableCentre() { |
||
| 3997 | return $this->virComptableCentre; |
||
| 3998 | } |
||
| 3999 | |||
| 4000 | /** |
||
| 4001 | * Get the vir comptable sub. |
||
| 4002 | * |
||
| 4003 | * @return string Returns the vir comptable sub. |
||
| 4004 | */ |
||
| 4005 | public function getVirComptableSub() { |
||
| 4006 | return $this->virComptableSub; |
||
| 4007 | } |
||
| 4008 | |||
| 4009 | /** |
||
| 4010 | * Get the vir fonction publique. |
||
| 4011 | * |
||
| 4012 | * @return boolean Returns the vir fonction publique. |
||
| 4013 | */ |
||
| 4014 | public function getVirFonctionPublique() { |
||
| 4015 | return $this->virFonctionPublique; |
||
| 4016 | } |
||
| 4017 | |||
| 4018 | /** |
||
| 4019 | * Get the vir seuil. |
||
| 4020 | * |
||
| 4021 | * @return float Returns the vir seuil. |
||
| 4022 | */ |
||
| 4023 | public function getVirSeuil() { |
||
| 4024 | return $this->virSeuil; |
||
| 4025 | } |
||
| 4026 | |||
| 4027 | /** |
||
| 4028 | * Get the vir type etab. |
||
| 4029 | * |
||
| 4030 | * @return string Returns the vir type etab. |
||
| 4031 | */ |
||
| 4032 | public function getVirTypeEtab() { |
||
| 4033 | return $this->virTypeEtab; |
||
| 4034 | } |
||
| 4035 | |||
| 4036 | /** |
||
| 4037 | * Get the virement cr lf. |
||
| 4038 | * |
||
| 4039 | * @return boolean Returns the virement cr lf. |
||
| 4040 | */ |
||
| 4041 | public function getVirementCrLf() { |
||
| 4042 | return $this->virementCrLf; |
||
| 4043 | } |
||
| 4044 | |||
| 4045 | /** |
||
| 4046 | * Get the virements euro. |
||
| 4047 | * |
||
| 4048 | * @return string Returns the virements euro. |
||
| 4049 | */ |
||
| 4050 | public function getVirementsEuro() { |
||
| 4051 | return $this->virementsEuro; |
||
| 4052 | } |
||
| 4053 | |||
| 4054 | /** |
||
| 4055 | * Get the web prioritaire. |
||
| 4056 | * |
||
| 4057 | * @return boolean Returns the web prioritaire. |
||
| 4058 | */ |
||
| 4059 | public function getWebPrioritaire() { |
||
| 4060 | return $this->webPrioritaire; |
||
| 4061 | } |
||
| 4062 | |||
| 4063 | /** |
||
| 4064 | * Set the absence extra. |
||
| 4065 | * |
||
| 4066 | * @param string $absenceExtra The absence extra. |
||
| 4067 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4068 | */ |
||
| 4069 | public function setAbsenceExtra($absenceExtra) { |
||
| 4070 | $this->absenceExtra = $absenceExtra; |
||
| 4071 | return $this; |
||
| 4072 | } |
||
| 4073 | |||
| 4074 | /** |
||
| 4075 | * Set the activer pointage q w s. |
||
| 4076 | * |
||
| 4077 | * @param boolean $activerPointageQWS The activer pointage q w s. |
||
| 4078 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4079 | */ |
||
| 4080 | public function setActiverPointageQWS($activerPointageQWS) { |
||
| 4081 | $this->activerPointageQWS = $activerPointageQWS; |
||
| 4082 | return $this; |
||
| 4083 | } |
||
| 4084 | |||
| 4085 | /** |
||
| 4086 | * Set the adhesion tds norme. |
||
| 4087 | * |
||
| 4088 | * @param string $adhesionTdsNorme The adhesion tds norme. |
||
| 4089 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4090 | */ |
||
| 4091 | public function setAdhesionTdsNorme($adhesionTdsNorme) { |
||
| 4092 | $this->adhesionTdsNorme = $adhesionTdsNorme; |
||
| 4093 | return $this; |
||
| 4094 | } |
||
| 4095 | |||
| 4096 | /** |
||
| 4097 | * Set the affaire. |
||
| 4098 | * |
||
| 4099 | * @param string $affaire The affaire. |
||
| 4100 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4101 | */ |
||
| 4102 | public function setAffaire($affaire) { |
||
| 4103 | $this->affaire = $affaire; |
||
| 4104 | return $this; |
||
| 4105 | } |
||
| 4106 | |||
| 4107 | /** |
||
| 4108 | * Set the affectation taux27. |
||
| 4109 | * |
||
| 4110 | * @param boolean $affectationTaux27 The affectation taux27. |
||
| 4111 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4112 | */ |
||
| 4113 | public function setAffectationTaux27($affectationTaux27) { |
||
| 4114 | $this->affectationTaux27 = $affectationTaux27; |
||
| 4115 | return $this; |
||
| 4116 | } |
||
| 4117 | |||
| 4118 | /** |
||
| 4119 | * Set the analytique employe. |
||
| 4120 | * |
||
| 4121 | * @param boolean $analytiqueEmploye The analytique employe. |
||
| 4122 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4123 | */ |
||
| 4124 | public function setAnalytiqueEmploye($analytiqueEmploye) { |
||
| 4125 | $this->analytiqueEmploye = $analytiqueEmploye; |
||
| 4126 | return $this; |
||
| 4127 | } |
||
| 4128 | |||
| 4129 | /** |
||
| 4130 | * Set the arbitrage auto. |
||
| 4131 | * |
||
| 4132 | * @param string $arbitrageAuto The arbitrage auto. |
||
| 4133 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4134 | */ |
||
| 4135 | public function setArbitrageAuto($arbitrageAuto) { |
||
| 4136 | $this->arbitrageAuto = $arbitrageAuto; |
||
| 4137 | return $this; |
||
| 4138 | } |
||
| 4139 | |||
| 4140 | /** |
||
| 4141 | * Set the archivage actif. |
||
| 4142 | * |
||
| 4143 | * @param boolean $archivageActif The archivage actif. |
||
| 4144 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4145 | */ |
||
| 4146 | public function setArchivageActif($archivageActif) { |
||
| 4147 | $this->archivageActif = $archivageActif; |
||
| 4148 | return $this; |
||
| 4149 | } |
||
| 4150 | |||
| 4151 | /** |
||
| 4152 | * Set the attest auto. |
||
| 4153 | * |
||
| 4154 | * @param boolean $attestAuto The attest auto. |
||
| 4155 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4156 | */ |
||
| 4157 | public function setAttestAuto($attestAuto) { |
||
| 4158 | $this->attestAuto = $attestAuto; |
||
| 4159 | return $this; |
||
| 4160 | } |
||
| 4161 | |||
| 4162 | /** |
||
| 4163 | * Set the beneficie c i c e. |
||
| 4164 | * |
||
| 4165 | * @param boolean $beneficieCICE The beneficie c i c e. |
||
| 4166 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4167 | */ |
||
| 4168 | public function setBeneficieCICE($beneficieCICE) { |
||
| 4169 | $this->beneficieCICE = $beneficieCICE; |
||
| 4170 | return $this; |
||
| 4171 | } |
||
| 4172 | |||
| 4173 | /** |
||
| 4174 | * Set the brutal sal min conv. |
||
| 4175 | * |
||
| 4176 | * @param boolean $brutalSalMinConv The brutal sal min conv. |
||
| 4177 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4178 | */ |
||
| 4179 | public function setBrutalSalMinConv($brutalSalMinConv) { |
||
| 4180 | $this->brutalSalMinConv = $brutalSalMinConv; |
||
| 4181 | return $this; |
||
| 4182 | } |
||
| 4183 | |||
| 4184 | /** |
||
| 4185 | * Set the c i c e pj mail cli ducs edi. |
||
| 4186 | * |
||
| 4187 | * @param boolean $cICEPjMailCliDucsEdi The c i c e pj mail cli ducs edi. |
||
| 4188 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4189 | */ |
||
| 4190 | public function setCICEPjMailCliDucsEdi($cICEPjMailCliDucsEdi) { |
||
| 4191 | $this->cICEPjMailCliDucsEdi = $cICEPjMailCliDucsEdi; |
||
| 4192 | return $this; |
||
| 4193 | } |
||
| 4194 | |||
| 4195 | /** |
||
| 4196 | * Set the calcul auto h theorique. |
||
| 4197 | * |
||
| 4198 | * @param boolean $calculAutoHTheorique The calcul auto h theorique. |
||
| 4199 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4200 | */ |
||
| 4201 | public function setCalculAutoHTheorique($calculAutoHTheorique) { |
||
| 4202 | $this->calculAutoHTheorique = $calculAutoHTheorique; |
||
| 4203 | return $this; |
||
| 4204 | } |
||
| 4205 | |||
| 4206 | /** |
||
| 4207 | * Set the certif auto. |
||
| 4208 | * |
||
| 4209 | * @param boolean $certifAuto The certif auto. |
||
| 4210 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4211 | */ |
||
| 4212 | public function setCertifAuto($certifAuto) { |
||
| 4213 | $this->certifAuto = $certifAuto; |
||
| 4214 | return $this; |
||
| 4215 | } |
||
| 4216 | |||
| 4217 | /** |
||
| 4218 | * Set the cheques euro. |
||
| 4219 | * |
||
| 4220 | * @param string $chequesEuro The cheques euro. |
||
| 4221 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4222 | */ |
||
| 4223 | public function setChequesEuro($chequesEuro) { |
||
| 4224 | $this->chequesEuro = $chequesEuro; |
||
| 4225 | return $this; |
||
| 4226 | } |
||
| 4227 | |||
| 4228 | /** |
||
| 4229 | * Set the choix edition cheque t c. |
||
| 4230 | * |
||
| 4231 | * @param boolean $choixEditionChequeTC The choix edition cheque t c. |
||
| 4232 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4233 | */ |
||
| 4234 | public function setChoixEditionChequeTC($choixEditionChequeTC) { |
||
| 4235 | $this->choixEditionChequeTC = $choixEditionChequeTC; |
||
| 4236 | return $this; |
||
| 4237 | } |
||
| 4238 | |||
| 4239 | /** |
||
| 4240 | * Set the cle acces1. |
||
| 4241 | * |
||
| 4242 | * @param string $cleAcces1 The cle acces1. |
||
| 4243 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4244 | */ |
||
| 4245 | public function setCleAcces1($cleAcces1) { |
||
| 4246 | $this->cleAcces1 = $cleAcces1; |
||
| 4247 | return $this; |
||
| 4248 | } |
||
| 4249 | |||
| 4250 | /** |
||
| 4251 | * Set the cle portable. |
||
| 4252 | * |
||
| 4253 | * @param string $clePortable The cle portable. |
||
| 4254 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4255 | */ |
||
| 4256 | public function setClePortable($clePortable) { |
||
| 4257 | $this->clePortable = $clePortable; |
||
| 4258 | return $this; |
||
| 4259 | } |
||
| 4260 | |||
| 4261 | /** |
||
| 4262 | * Set the code org b t p d a d s u. |
||
| 4263 | * |
||
| 4264 | * @param string $codeOrgBTPDADSU The code org b t p d a d s u. |
||
| 4265 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4266 | */ |
||
| 4267 | public function setCodeOrgBTPDADSU($codeOrgBTPDADSU) { |
||
| 4268 | $this->codeOrgBTPDADSU = $codeOrgBTPDADSU; |
||
| 4269 | return $this; |
||
| 4270 | } |
||
| 4271 | |||
| 4272 | /** |
||
| 4273 | * Set the collaborateuri paie. |
||
| 4274 | * |
||
| 4275 | * @param string $collaborateuriPaie The collaborateuri paie. |
||
| 4276 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4277 | */ |
||
| 4278 | public function setCollaborateuriPaie($collaborateuriPaie) { |
||
| 4279 | $this->collaborateuriPaie = $collaborateuriPaie; |
||
| 4280 | return $this; |
||
| 4281 | } |
||
| 4282 | |||
| 4283 | /** |
||
| 4284 | * Set the compression. |
||
| 4285 | * |
||
| 4286 | * @param boolean $compression The compression. |
||
| 4287 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4288 | */ |
||
| 4289 | public function setCompression($compression) { |
||
| 4290 | $this->compression = $compression; |
||
| 4291 | return $this; |
||
| 4292 | } |
||
| 4293 | |||
| 4294 | /** |
||
| 4295 | * Set the compte gain euro. |
||
| 4296 | * |
||
| 4297 | * @param string $compteGainEuro The compte gain euro. |
||
| 4298 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4299 | */ |
||
| 4300 | public function setCompteGainEuro($compteGainEuro) { |
||
| 4301 | $this->compteGainEuro = $compteGainEuro; |
||
| 4302 | return $this; |
||
| 4303 | } |
||
| 4304 | |||
| 4305 | /** |
||
| 4306 | * Set the compte perte euro. |
||
| 4307 | * |
||
| 4308 | * @param string $comptePerteEuro The compte perte euro. |
||
| 4309 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4310 | */ |
||
| 4311 | public function setComptePerteEuro($comptePerteEuro) { |
||
| 4312 | $this->comptePerteEuro = $comptePerteEuro; |
||
| 4313 | return $this; |
||
| 4314 | } |
||
| 4315 | |||
| 4316 | /** |
||
| 4317 | * Set the cpta elit euros. |
||
| 4318 | * |
||
| 4319 | * @param boolean $cptaElitEuros The cpta elit euros. |
||
| 4320 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4321 | */ |
||
| 4322 | public function setCptaElitEuros($cptaElitEuros) { |
||
| 4323 | $this->cptaElitEuros = $cptaElitEuros; |
||
| 4324 | return $this; |
||
| 4325 | } |
||
| 4326 | |||
| 4327 | /** |
||
| 4328 | * Set the ctrl auto c p. |
||
| 4329 | * |
||
| 4330 | * @param boolean $ctrlAutoCP The ctrl auto c p. |
||
| 4331 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4332 | */ |
||
| 4333 | public function setCtrlAutoCP($ctrlAutoCP) { |
||
| 4334 | $this->ctrlAutoCP = $ctrlAutoCP; |
||
| 4335 | return $this; |
||
| 4336 | } |
||
| 4337 | |||
| 4338 | /** |
||
| 4339 | * Set the ctrl auto c p anticip. |
||
| 4340 | * |
||
| 4341 | * @param boolean $ctrlAutoCPAnticip The ctrl auto c p anticip. |
||
| 4342 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4343 | */ |
||
| 4344 | public function setCtrlAutoCPAnticip($ctrlAutoCPAnticip) { |
||
| 4345 | $this->ctrlAutoCPAnticip = $ctrlAutoCPAnticip; |
||
| 4346 | return $this; |
||
| 4347 | } |
||
| 4348 | |||
| 4349 | /** |
||
| 4350 | * Set the ctrl taux base. |
||
| 4351 | * |
||
| 4352 | * @param boolean $ctrlTauxBase The ctrl taux base. |
||
| 4353 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4354 | */ |
||
| 4355 | public function setCtrlTauxBase($ctrlTauxBase) { |
||
| 4356 | $this->ctrlTauxBase = $ctrlTauxBase; |
||
| 4357 | return $this; |
||
| 4358 | } |
||
| 4359 | |||
| 4360 | /** |
||
| 4361 | * Set the d a d s dernier choix gestion a e n. |
||
| 4362 | * |
||
| 4363 | * @param string $dADSDernierChoixGestionAEN The d a d s dernier choix gestion a e n. |
||
| 4364 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4365 | */ |
||
| 4366 | public function setDADSDernierChoixGestionAEN($dADSDernierChoixGestionAEN) { |
||
| 4367 | $this->dADSDernierChoixGestionAEN = $dADSDernierChoixGestionAEN; |
||
| 4368 | return $this; |
||
| 4369 | } |
||
| 4370 | |||
| 4371 | /** |
||
| 4372 | * Set the d a d s type gestion a e n. |
||
| 4373 | * |
||
| 4374 | * @param string $dADSTypeGestionAEN The d a d s type gestion a e n. |
||
| 4375 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4376 | */ |
||
| 4377 | public function setDADSTypeGestionAEN($dADSTypeGestionAEN) { |
||
| 4378 | $this->dADSTypeGestionAEN = $dADSTypeGestionAEN; |
||
| 4379 | return $this; |
||
| 4380 | } |
||
| 4381 | |||
| 4382 | /** |
||
| 4383 | * Set the d a d s u num agr a n s p. |
||
| 4384 | * |
||
| 4385 | * @param string $dADSUNumAgrANSP The d a d s u num agr a n s p. |
||
| 4386 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4387 | */ |
||
| 4388 | public function setDADSUNumAgrANSP($dADSUNumAgrANSP) { |
||
| 4389 | $this->dADSUNumAgrANSP = $dADSUNumAgrANSP; |
||
| 4390 | return $this; |
||
| 4391 | } |
||
| 4392 | |||
| 4393 | /** |
||
| 4394 | * Set the d a d s u ref dec. |
||
| 4395 | * |
||
| 4396 | * @param string $dADSURefDec The d a d s u ref dec. |
||
| 4397 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4398 | */ |
||
| 4399 | public function setDADSURefDec($dADSURefDec) { |
||
| 4400 | $this->dADSURefDec = $dADSURefDec; |
||
| 4401 | return $this; |
||
| 4402 | } |
||
| 4403 | |||
| 4404 | /** |
||
| 4405 | * Set the d a s type decl. |
||
| 4406 | * |
||
| 4407 | * @param string $dASTypeDecl The d a s type decl. |
||
| 4408 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4409 | */ |
||
| 4410 | public function setDASTypeDecl($dASTypeDecl) { |
||
| 4411 | $this->dASTypeDecl = $dASTypeDecl; |
||
| 4412 | return $this; |
||
| 4413 | } |
||
| 4414 | |||
| 4415 | /** |
||
| 4416 | * Set the d a s type decl detail. |
||
| 4417 | * |
||
| 4418 | * @param string $dASTypeDeclDetail The d a s type decl detail. |
||
| 4419 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4420 | */ |
||
| 4421 | public function setDASTypeDeclDetail($dASTypeDeclDetail) { |
||
| 4422 | $this->dASTypeDeclDetail = $dASTypeDeclDetail; |
||
| 4423 | return $this; |
||
| 4424 | } |
||
| 4425 | |||
| 4426 | /** |
||
| 4427 | * Set the date dp. |
||
| 4428 | * |
||
| 4429 | * @param DateTime $dateDp The date dp. |
||
| 4430 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4431 | */ |
||
| 4432 | public function setDateDp(DateTime $dateDp = null) { |
||
| 4433 | $this->dateDp = $dateDp; |
||
| 4434 | return $this; |
||
| 4435 | } |
||
| 4436 | |||
| 4437 | /** |
||
| 4438 | * Set the debut periode d a s. |
||
| 4439 | * |
||
| 4440 | * @param DateTime $debutPeriodeDAS The debut periode d a s. |
||
| 4441 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4442 | */ |
||
| 4443 | public function setDebutPeriodeDAS(DateTime $debutPeriodeDAS = null) { |
||
| 4444 | $this->debutPeriodeDAS = $debutPeriodeDAS; |
||
| 4445 | return $this; |
||
| 4446 | } |
||
| 4447 | |||
| 4448 | /** |
||
| 4449 | * Set the debut periode histo d a s. |
||
| 4450 | * |
||
| 4451 | * @param DateTime $debutPeriodeHistoDAS The debut periode histo d a s. |
||
| 4452 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4453 | */ |
||
| 4454 | public function setDebutPeriodeHistoDAS(DateTime $debutPeriodeHistoDAS = null) { |
||
| 4455 | $this->debutPeriodeHistoDAS = $debutPeriodeHistoDAS; |
||
| 4456 | return $this; |
||
| 4457 | } |
||
| 4458 | |||
| 4459 | /** |
||
| 4460 | * Set the deduction h sup fillon. |
||
| 4461 | * |
||
| 4462 | * @param boolean $deductionHSupFillon The deduction h sup fillon. |
||
| 4463 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4464 | */ |
||
| 4465 | public function setDeductionHSupFillon($deductionHSupFillon) { |
||
| 4466 | $this->deductionHSupFillon = $deductionHSupFillon; |
||
| 4467 | return $this; |
||
| 4468 | } |
||
| 4469 | |||
| 4470 | /** |
||
| 4471 | * Set the deduire h sup non structurelle. |
||
| 4472 | * |
||
| 4473 | * @param boolean $deduireHSupNonStructurelle The deduire h sup non structurelle. |
||
| 4474 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4475 | */ |
||
| 4476 | public function setDeduireHSupNonStructurelle($deduireHSupNonStructurelle) { |
||
| 4477 | $this->deduireHSupNonStructurelle = $deduireHSupNonStructurelle; |
||
| 4478 | return $this; |
||
| 4479 | } |
||
| 4480 | |||
| 4481 | /** |
||
| 4482 | * Set the dernier indice bul. |
||
| 4483 | * |
||
| 4484 | * @param int $dernierIndiceBul The dernier indice bul. |
||
| 4485 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4486 | */ |
||
| 4487 | public function setDernierIndiceBul($dernierIndiceBul) { |
||
| 4488 | $this->dernierIndiceBul = $dernierIndiceBul; |
||
| 4489 | return $this; |
||
| 4490 | } |
||
| 4491 | |||
| 4492 | /** |
||
| 4493 | * Set the dest point irc. |
||
| 4494 | * |
||
| 4495 | * @param string $destPointIrc The dest point irc. |
||
| 4496 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4497 | */ |
||
| 4498 | public function setDestPointIrc($destPointIrc) { |
||
| 4499 | $this->destPointIrc = $destPointIrc; |
||
| 4500 | return $this; |
||
| 4501 | } |
||
| 4502 | |||
| 4503 | /** |
||
| 4504 | * Set the dest tri point. |
||
| 4505 | * |
||
| 4506 | * @param string $destTriPoint The dest tri point. |
||
| 4507 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4508 | */ |
||
| 4509 | public function setDestTriPoint($destTriPoint) { |
||
| 4510 | $this->destTriPoint = $destTriPoint; |
||
| 4511 | return $this; |
||
| 4512 | } |
||
| 4513 | |||
| 4514 | /** |
||
| 4515 | * Set the dossier proprete. |
||
| 4516 | * |
||
| 4517 | * @param string $dossierProprete The dossier proprete. |
||
| 4518 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4519 | */ |
||
| 4520 | public function setDossierProprete($dossierProprete) { |
||
| 4521 | $this->dossierProprete = $dossierProprete; |
||
| 4522 | return $this; |
||
| 4523 | } |
||
| 4524 | |||
| 4525 | /** |
||
| 4526 | * Set the dossier sur web. |
||
| 4527 | * |
||
| 4528 | * @param boolean $dossierSurWeb The dossier sur web. |
||
| 4529 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4530 | */ |
||
| 4531 | public function setDossierSurWeb($dossierSurWeb) { |
||
| 4532 | $this->dossierSurWeb = $dossierSurWeb; |
||
| 4533 | return $this; |
||
| 4534 | } |
||
| 4535 | |||
| 4536 | /** |
||
| 4537 | * Set the ds code collab. |
||
| 4538 | * |
||
| 4539 | * @param string $dsCodeCollab The ds code collab. |
||
| 4540 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4541 | */ |
||
| 4542 | public function setDsCodeCollab($dsCodeCollab) { |
||
| 4543 | $this->dsCodeCollab = $dsCodeCollab; |
||
| 4544 | return $this; |
||
| 4545 | } |
||
| 4546 | |||
| 4547 | /** |
||
| 4548 | * Set the ds date retour. |
||
| 4549 | * |
||
| 4550 | * @param DateTime $dsDateRetour The ds date retour. |
||
| 4551 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4552 | */ |
||
| 4553 | public function setDsDateRetour(DateTime $dsDateRetour = null) { |
||
| 4554 | $this->dsDateRetour = $dsDateRetour; |
||
| 4555 | return $this; |
||
| 4556 | } |
||
| 4557 | |||
| 4558 | /** |
||
| 4559 | * Set the ds date sortie. |
||
| 4560 | * |
||
| 4561 | * @param DateTime $dsDateSortie The ds date sortie. |
||
| 4562 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4563 | */ |
||
| 4564 | public function setDsDateSortie(DateTime $dsDateSortie = null) { |
||
| 4565 | $this->dsDateSortie = $dsDateSortie; |
||
| 4566 | return $this; |
||
| 4567 | } |
||
| 4568 | |||
| 4569 | /** |
||
| 4570 | * Set the ds fusion. |
||
| 4571 | * |
||
| 4572 | * @param string $dsFusion The ds fusion. |
||
| 4573 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4574 | */ |
||
| 4575 | public function setDsFusion($dsFusion) { |
||
| 4576 | $this->dsFusion = $dsFusion; |
||
| 4577 | return $this; |
||
| 4578 | } |
||
| 4579 | |||
| 4580 | /** |
||
| 4581 | * Set the ds type edition. |
||
| 4582 | * |
||
| 4583 | * @param string $dsTypeEdition The ds type edition. |
||
| 4584 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4585 | */ |
||
| 4586 | public function setDsTypeEdition($dsTypeEdition) { |
||
| 4587 | $this->dsTypeEdition = $dsTypeEdition; |
||
| 4588 | return $this; |
||
| 4589 | } |
||
| 4590 | |||
| 4591 | /** |
||
| 4592 | * Set the dt debut periode. |
||
| 4593 | * |
||
| 4594 | * @param DateTime $dtDebutPeriode The dt debut periode. |
||
| 4595 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4596 | */ |
||
| 4597 | public function setDtDebutPeriode(DateTime $dtDebutPeriode = null) { |
||
| 4598 | $this->dtDebutPeriode = $dtDebutPeriode; |
||
| 4599 | return $this; |
||
| 4600 | } |
||
| 4601 | |||
| 4602 | /** |
||
| 4603 | * Set the dt fin periode. |
||
| 4604 | * |
||
| 4605 | * @param DateTime $dtFinPeriode The dt fin periode. |
||
| 4606 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4607 | */ |
||
| 4608 | public function setDtFinPeriode(DateTime $dtFinPeriode = null) { |
||
| 4609 | $this->dtFinPeriode = $dtFinPeriode; |
||
| 4610 | return $this; |
||
| 4611 | } |
||
| 4612 | |||
| 4613 | /** |
||
| 4614 | * Set the ducs franc euro. |
||
| 4615 | * |
||
| 4616 | * @param string $ducsFrancEuro The ducs franc euro. |
||
| 4617 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4618 | */ |
||
| 4619 | public function setDucsFrancEuro($ducsFrancEuro) { |
||
| 4620 | $this->ducsFrancEuro = $ducsFrancEuro; |
||
| 4621 | return $this; |
||
| 4622 | } |
||
| 4623 | |||
| 4624 | /** |
||
| 4625 | * Set the ecr type. |
||
| 4626 | * |
||
| 4627 | * @param string $ecrType The ecr type. |
||
| 4628 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4629 | */ |
||
| 4630 | public function setEcrType($ecrType) { |
||
| 4631 | $this->ecrType = $ecrType; |
||
| 4632 | return $this; |
||
| 4633 | } |
||
| 4634 | |||
| 4635 | /** |
||
| 4636 | * Set the ed bord choix modele. |
||
| 4637 | * |
||
| 4638 | * @param string $edBordChoixModele The ed bord choix modele. |
||
| 4639 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4640 | */ |
||
| 4641 | public function setEdBordChoixModele($edBordChoixModele) { |
||
| 4642 | $this->edBordChoixModele = $edBordChoixModele; |
||
| 4643 | return $this; |
||
| 4644 | } |
||
| 4645 | |||
| 4646 | /** |
||
| 4647 | * Set the ed bord rupture emp. |
||
| 4648 | * |
||
| 4649 | * @param boolean $edBordRuptureEmp The ed bord rupture emp. |
||
| 4650 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4651 | */ |
||
| 4652 | public function setEdBordRuptureEmp($edBordRuptureEmp) { |
||
| 4653 | $this->edBordRuptureEmp = $edBordRuptureEmp; |
||
| 4654 | return $this; |
||
| 4655 | } |
||
| 4656 | |||
| 4657 | /** |
||
| 4658 | * Set the ed bord type imp. |
||
| 4659 | * |
||
| 4660 | * @param string $edBordTypeImp The ed bord type imp. |
||
| 4661 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4662 | */ |
||
| 4663 | public function setEdBordTypeImp($edBordTypeImp) { |
||
| 4664 | $this->edBordTypeImp = $edBordTypeImp; |
||
| 4665 | return $this; |
||
| 4666 | } |
||
| 4667 | |||
| 4668 | /** |
||
| 4669 | * Set the ed bordereau. |
||
| 4670 | * |
||
| 4671 | * @param boolean $edBordereau The ed bordereau. |
||
| 4672 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4673 | */ |
||
| 4674 | public function setEdBordereau($edBordereau) { |
||
| 4675 | $this->edBordereau = $edBordereau; |
||
| 4676 | return $this; |
||
| 4677 | } |
||
| 4678 | |||
| 4679 | /** |
||
| 4680 | * Set the ed bordereau prep. |
||
| 4681 | * |
||
| 4682 | * @param boolean $edBordereauPrep The ed bordereau prep. |
||
| 4683 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4684 | */ |
||
| 4685 | public function setEdBordereauPrep($edBordereauPrep) { |
||
| 4686 | $this->edBordereauPrep = $edBordereauPrep; |
||
| 4687 | return $this; |
||
| 4688 | } |
||
| 4689 | |||
| 4690 | /** |
||
| 4691 | * Set the ed bordereau prepa. |
||
| 4692 | * |
||
| 4693 | * @param boolean $edBordereauPrepa The ed bordereau prepa. |
||
| 4694 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4695 | */ |
||
| 4696 | public function setEdBordereauPrepa($edBordereauPrepa) { |
||
| 4697 | $this->edBordereauPrepa = $edBordereauPrepa; |
||
| 4698 | return $this; |
||
| 4699 | } |
||
| 4700 | |||
| 4701 | /** |
||
| 4702 | * Set the ed bul last fax. |
||
| 4703 | * |
||
| 4704 | * @param string $edBulLastFax The ed bul last fax. |
||
| 4705 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4706 | */ |
||
| 4707 | public function setEdBulLastFax($edBulLastFax) { |
||
| 4708 | $this->edBulLastFax = $edBulLastFax; |
||
| 4709 | return $this; |
||
| 4710 | } |
||
| 4711 | |||
| 4712 | /** |
||
| 4713 | * Set the ed bul last mail. |
||
| 4714 | * |
||
| 4715 | * @param string $edBulLastMail The ed bul last mail. |
||
| 4716 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4717 | */ |
||
| 4718 | public function setEdBulLastMail($edBulLastMail) { |
||
| 4719 | $this->edBulLastMail = $edBulLastMail; |
||
| 4720 | return $this; |
||
| 4721 | } |
||
| 4722 | |||
| 4723 | /** |
||
| 4724 | * Set the ed bul type sortie. |
||
| 4725 | * |
||
| 4726 | * @param string $edBulTypeSortie The ed bul type sortie. |
||
| 4727 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4728 | */ |
||
| 4729 | public function setEdBulTypeSortie($edBulTypeSortie) { |
||
| 4730 | $this->edBulTypeSortie = $edBulTypeSortie; |
||
| 4731 | return $this; |
||
| 4732 | } |
||
| 4733 | |||
| 4734 | /** |
||
| 4735 | * Set the ed correspondance. |
||
| 4736 | * |
||
| 4737 | * @param boolean $edCorrespondance The ed correspondance. |
||
| 4738 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4739 | */ |
||
| 4740 | public function setEdCorrespondance($edCorrespondance) { |
||
| 4741 | $this->edCorrespondance = $edCorrespondance; |
||
| 4742 | return $this; |
||
| 4743 | } |
||
| 4744 | |||
| 4745 | /** |
||
| 4746 | * Set the ed d u c s nb ex. |
||
| 4747 | * |
||
| 4748 | * @param string $edDUCSNbEx The ed d u c s nb ex. |
||
| 4749 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4750 | */ |
||
| 4751 | public function setEdDUCSNbEx($edDUCSNbEx) { |
||
| 4752 | $this->edDUCSNbEx = $edDUCSNbEx; |
||
| 4753 | return $this; |
||
| 4754 | } |
||
| 4755 | |||
| 4756 | /** |
||
| 4757 | * Set the ed d u c s opt b t p. |
||
| 4758 | * |
||
| 4759 | * @param string $edDUCSOptBTP The ed d u c s opt b t p. |
||
| 4760 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4761 | */ |
||
| 4762 | public function setEdDUCSOptBTP($edDUCSOptBTP) { |
||
| 4763 | $this->edDUCSOptBTP = $edDUCSOptBTP; |
||
| 4764 | return $this; |
||
| 4765 | } |
||
| 4766 | |||
| 4767 | /** |
||
| 4768 | * Set the ed d u c s type sortie. |
||
| 4769 | * |
||
| 4770 | * @param string $edDUCSTypeSortie The ed d u c s type sortie. |
||
| 4771 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4772 | */ |
||
| 4773 | public function setEdDUCSTypeSortie($edDUCSTypeSortie) { |
||
| 4774 | $this->edDUCSTypeSortie = $edDUCSTypeSortie; |
||
| 4775 | return $this; |
||
| 4776 | } |
||
| 4777 | |||
| 4778 | /** |
||
| 4779 | * Set the ed ducs auto. |
||
| 4780 | * |
||
| 4781 | * @param boolean $edDucsAuto The ed ducs auto. |
||
| 4782 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4783 | */ |
||
| 4784 | public function setEdDucsAuto($edDucsAuto) { |
||
| 4785 | $this->edDucsAuto = $edDucsAuto; |
||
| 4786 | return $this; |
||
| 4787 | } |
||
| 4788 | |||
| 4789 | /** |
||
| 4790 | * Set the ed h sup bonif que majo. |
||
| 4791 | * |
||
| 4792 | * @param boolean $edHSupBonifQueMajo The ed h sup bonif que majo. |
||
| 4793 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4794 | */ |
||
| 4795 | public function setEdHSupBonifQueMajo($edHSupBonifQueMajo) { |
||
| 4796 | $this->edHSupBonifQueMajo = $edHSupBonifQueMajo; |
||
| 4797 | return $this; |
||
| 4798 | } |
||
| 4799 | |||
| 4800 | /** |
||
| 4801 | * Set the ed histo tri emp. |
||
| 4802 | * |
||
| 4803 | * @param string $edHistoTriEmp The ed histo tri emp. |
||
| 4804 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4805 | */ |
||
| 4806 | public function setEdHistoTriEmp($edHistoTriEmp) { |
||
| 4807 | $this->edHistoTriEmp = $edHistoTriEmp; |
||
| 4808 | return $this; |
||
| 4809 | } |
||
| 4810 | |||
| 4811 | /** |
||
| 4812 | * Set the ed histo tri etablissement. |
||
| 4813 | * |
||
| 4814 | * @param boolean $edHistoTriEtablissement The ed histo tri etablissement. |
||
| 4815 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4816 | */ |
||
| 4817 | public function setEdHistoTriEtablissement($edHistoTriEtablissement) { |
||
| 4818 | $this->edHistoTriEtablissement = $edHistoTriEtablissement; |
||
| 4819 | return $this; |
||
| 4820 | } |
||
| 4821 | |||
| 4822 | /** |
||
| 4823 | * Set the ed histo tri service. |
||
| 4824 | * |
||
| 4825 | * @param boolean $edHistoTriService The ed histo tri service. |
||
| 4826 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4827 | */ |
||
| 4828 | public function setEdHistoTriService($edHistoTriService) { |
||
| 4829 | $this->edHistoTriService = $edHistoTriService; |
||
| 4830 | return $this; |
||
| 4831 | } |
||
| 4832 | |||
| 4833 | /** |
||
| 4834 | * Set the ed histo type. |
||
| 4835 | * |
||
| 4836 | * @param string $edHistoType The ed histo type. |
||
| 4837 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4838 | */ |
||
| 4839 | public function setEdHistoType($edHistoType) { |
||
| 4840 | $this->edHistoType = $edHistoType; |
||
| 4841 | return $this; |
||
| 4842 | } |
||
| 4843 | |||
| 4844 | /** |
||
| 4845 | * Set the ed imput comptable. |
||
| 4846 | * |
||
| 4847 | * @param boolean $edImputComptable The ed imput comptable. |
||
| 4848 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4849 | */ |
||
| 4850 | public function setEdImputComptable($edImputComptable) { |
||
| 4851 | $this->edImputComptable = $edImputComptable; |
||
| 4852 | return $this; |
||
| 4853 | } |
||
| 4854 | |||
| 4855 | /** |
||
| 4856 | * Set the ed texte1. |
||
| 4857 | * |
||
| 4858 | * @param string $edTexte1 The ed texte1. |
||
| 4859 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4860 | */ |
||
| 4861 | public function setEdTexte1($edTexte1) { |
||
| 4862 | $this->edTexte1 = $edTexte1; |
||
| 4863 | return $this; |
||
| 4864 | } |
||
| 4865 | |||
| 4866 | /** |
||
| 4867 | * Set the ed texte2. |
||
| 4868 | * |
||
| 4869 | * @param string $edTexte2 The ed texte2. |
||
| 4870 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4871 | */ |
||
| 4872 | public function setEdTexte2($edTexte2) { |
||
| 4873 | $this->edTexte2 = $edTexte2; |
||
| 4874 | return $this; |
||
| 4875 | } |
||
| 4876 | |||
| 4877 | /** |
||
| 4878 | * Set the ed trt cpta last fax. |
||
| 4879 | * |
||
| 4880 | * @param string $edTrtCptaLastFax The ed trt cpta last fax. |
||
| 4881 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4882 | */ |
||
| 4883 | public function setEdTrtCptaLastFax($edTrtCptaLastFax) { |
||
| 4884 | $this->edTrtCptaLastFax = $edTrtCptaLastFax; |
||
| 4885 | return $this; |
||
| 4886 | } |
||
| 4887 | |||
| 4888 | /** |
||
| 4889 | * Set the ed trt cpta last mail. |
||
| 4890 | * |
||
| 4891 | * @param string $edTrtCptaLastMail The ed trt cpta last mail. |
||
| 4892 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4893 | */ |
||
| 4894 | public function setEdTrtCptaLastMail($edTrtCptaLastMail) { |
||
| 4895 | $this->edTrtCptaLastMail = $edTrtCptaLastMail; |
||
| 4896 | return $this; |
||
| 4897 | } |
||
| 4898 | |||
| 4899 | /** |
||
| 4900 | * Set the ed trt cpta sortie. |
||
| 4901 | * |
||
| 4902 | * @param string $edTrtCptaSortie The ed trt cpta sortie. |
||
| 4903 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4904 | */ |
||
| 4905 | public function setEdTrtCptaSortie($edTrtCptaSortie) { |
||
| 4906 | $this->edTrtCptaSortie = $edTrtCptaSortie; |
||
| 4907 | return $this; |
||
| 4908 | } |
||
| 4909 | |||
| 4910 | /** |
||
| 4911 | * Set the edit q p x l absences. |
||
| 4912 | * |
||
| 4913 | * @param boolean $editQPXLAbsences The edit q p x l absences. |
||
| 4914 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4915 | */ |
||
| 4916 | public function setEditQPXLAbsences($editQPXLAbsences) { |
||
| 4917 | $this->editQPXLAbsences = $editQPXLAbsences; |
||
| 4918 | return $this; |
||
| 4919 | } |
||
| 4920 | |||
| 4921 | /** |
||
| 4922 | * Set the edit q p x l acomptes. |
||
| 4923 | * |
||
| 4924 | * @param boolean $editQPXLAcomptes The edit q p x l acomptes. |
||
| 4925 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4926 | */ |
||
| 4927 | public function setEditQPXLAcomptes($editQPXLAcomptes) { |
||
| 4928 | $this->editQPXLAcomptes = $editQPXLAcomptes; |
||
| 4929 | return $this; |
||
| 4930 | } |
||
| 4931 | |||
| 4932 | /** |
||
| 4933 | * Set the edit q p x l tri emp. |
||
| 4934 | * |
||
| 4935 | * @param string $editQPXLTriEmp The edit q p x l tri emp. |
||
| 4936 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4937 | */ |
||
| 4938 | public function setEditQPXLTriEmp($editQPXLTriEmp) { |
||
| 4939 | $this->editQPXLTriEmp = $editQPXLTriEmp; |
||
| 4940 | return $this; |
||
| 4941 | } |
||
| 4942 | |||
| 4943 | /** |
||
| 4944 | * Set the edit q p x l vider lib. |
||
| 4945 | * |
||
| 4946 | * @param boolean $editQPXLViderLib The edit q p x l vider lib. |
||
| 4947 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4948 | */ |
||
| 4949 | public function setEditQPXLViderLib($editQPXLViderLib) { |
||
| 4950 | $this->editQPXLViderLib = $editQPXLViderLib; |
||
| 4951 | return $this; |
||
| 4952 | } |
||
| 4953 | |||
| 4954 | /** |
||
| 4955 | * Set the editer bulletin s t c. |
||
| 4956 | * |
||
| 4957 | * @param boolean $editerBulletinSTC The editer bulletin s t c. |
||
| 4958 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4959 | */ |
||
| 4960 | public function setEditerBulletinSTC($editerBulletinSTC) { |
||
| 4961 | $this->editerBulletinSTC = $editerBulletinSTC; |
||
| 4962 | return $this; |
||
| 4963 | } |
||
| 4964 | |||
| 4965 | /** |
||
| 4966 | * Set the edition cheque t c. |
||
| 4967 | * |
||
| 4968 | * @param boolean $editionChequeTC The edition cheque t c. |
||
| 4969 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4970 | */ |
||
| 4971 | public function setEditionChequeTC($editionChequeTC) { |
||
| 4972 | $this->editionChequeTC = $editionChequeTC; |
||
| 4973 | return $this; |
||
| 4974 | } |
||
| 4975 | |||
| 4976 | /** |
||
| 4977 | * Set the edition date. |
||
| 4978 | * |
||
| 4979 | * @param boolean $editionDate The edition date. |
||
| 4980 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4981 | */ |
||
| 4982 | public function setEditionDate($editionDate) { |
||
| 4983 | $this->editionDate = $editionDate; |
||
| 4984 | return $this; |
||
| 4985 | } |
||
| 4986 | |||
| 4987 | /** |
||
| 4988 | * Set the edition heure. |
||
| 4989 | * |
||
| 4990 | * @param boolean $editionHeure The edition heure. |
||
| 4991 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 4992 | */ |
||
| 4993 | public function setEditionHeure($editionHeure) { |
||
| 4994 | $this->editionHeure = $editionHeure; |
||
| 4995 | return $this; |
||
| 4996 | } |
||
| 4997 | |||
| 4998 | /** |
||
| 4999 | * Set the email. |
||
| 5000 | * |
||
| 5001 | * @param string $email The email. |
||
| 5002 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5003 | */ |
||
| 5004 | public function setEmail($email) { |
||
| 5005 | $this->email = $email; |
||
| 5006 | return $this; |
||
| 5007 | } |
||
| 5008 | |||
| 5009 | /** |
||
| 5010 | * Set the entete solde t c. |
||
| 5011 | * |
||
| 5012 | * @param boolean $enteteSoldeTC The entete solde t c. |
||
| 5013 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5014 | */ |
||
| 5015 | public function setEnteteSoldeTC($enteteSoldeTC) { |
||
| 5016 | $this->enteteSoldeTC = $enteteSoldeTC; |
||
| 5017 | return $this; |
||
| 5018 | } |
||
| 5019 | |||
| 5020 | /** |
||
| 5021 | * Set the etat controle d a d s u. |
||
| 5022 | * |
||
| 5023 | * @param string $etatControleDADSU The etat controle d a d s u. |
||
| 5024 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5025 | */ |
||
| 5026 | public function setEtatControleDADSU($etatControleDADSU) { |
||
| 5027 | $this->etatControleDADSU = $etatControleDADSU; |
||
| 5028 | return $this; |
||
| 5029 | } |
||
| 5030 | |||
| 5031 | /** |
||
| 5032 | * Set the etat ctrl norme. |
||
| 5033 | * |
||
| 5034 | * @param string $etatCtrlNorme The etat ctrl norme. |
||
| 5035 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5036 | */ |
||
| 5037 | public function setEtatCtrlNorme($etatCtrlNorme) { |
||
| 5038 | $this->etatCtrlNorme = $etatCtrlNorme; |
||
| 5039 | return $this; |
||
| 5040 | } |
||
| 5041 | |||
| 5042 | /** |
||
| 5043 | * Set the etat d a s. |
||
| 5044 | * |
||
| 5045 | * @param string $etatDAS The etat d a s. |
||
| 5046 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5047 | */ |
||
| 5048 | public function setEtatDAS($etatDAS) { |
||
| 5049 | $this->etatDAS = $etatDAS; |
||
| 5050 | return $this; |
||
| 5051 | } |
||
| 5052 | |||
| 5053 | /** |
||
| 5054 | * Set the etat d a s rect. |
||
| 5055 | * |
||
| 5056 | * @param string $etatDASRect The etat d a s rect. |
||
| 5057 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5058 | */ |
||
| 5059 | public function setEtatDASRect($etatDASRect) { |
||
| 5060 | $this->etatDASRect = $etatDASRect; |
||
| 5061 | return $this; |
||
| 5062 | } |
||
| 5063 | |||
| 5064 | /** |
||
| 5065 | * Set the fichier unique. |
||
| 5066 | * |
||
| 5067 | * @param boolean $fichierUnique The fichier unique. |
||
| 5068 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5069 | */ |
||
| 5070 | public function setFichierUnique($fichierUnique) { |
||
| 5071 | $this->fichierUnique = $fichierUnique; |
||
| 5072 | return $this; |
||
| 5073 | } |
||
| 5074 | |||
| 5075 | /** |
||
| 5076 | * Set the filtrer liste emp. |
||
| 5077 | * |
||
| 5078 | * @param int $filtrerListeEmp The filtrer liste emp. |
||
| 5079 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5080 | */ |
||
| 5081 | public function setFiltrerListeEmp($filtrerListeEmp) { |
||
| 5082 | $this->filtrerListeEmp = $filtrerListeEmp; |
||
| 5083 | return $this; |
||
| 5084 | } |
||
| 5085 | |||
| 5086 | /** |
||
| 5087 | * Set the fin periode d a s. |
||
| 5088 | * |
||
| 5089 | * @param DateTime $finPeriodeDAS The fin periode d a s. |
||
| 5090 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5091 | */ |
||
| 5092 | public function setFinPeriodeDAS(DateTime $finPeriodeDAS = null) { |
||
| 5093 | $this->finPeriodeDAS = $finPeriodeDAS; |
||
| 5094 | return $this; |
||
| 5095 | } |
||
| 5096 | |||
| 5097 | /** |
||
| 5098 | * Set the fin periode histo d a s. |
||
| 5099 | * |
||
| 5100 | * @param DateTime $finPeriodeHistoDAS The fin periode histo d a s. |
||
| 5101 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5102 | */ |
||
| 5103 | public function setFinPeriodeHistoDAS(DateTime $finPeriodeHistoDAS = null) { |
||
| 5104 | $this->finPeriodeHistoDAS = $finPeriodeHistoDAS; |
||
| 5105 | return $this; |
||
| 5106 | } |
||
| 5107 | |||
| 5108 | /** |
||
| 5109 | * Set the flag traite. |
||
| 5110 | * |
||
| 5111 | * @param string $flagTraite The flag traite. |
||
| 5112 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5113 | */ |
||
| 5114 | public function setFlagTraite($flagTraite) { |
||
| 5115 | $this->flagTraite = $flagTraite; |
||
| 5116 | return $this; |
||
| 5117 | } |
||
| 5118 | |||
| 5119 | /** |
||
| 5120 | * Set the flag traite2. |
||
| 5121 | * |
||
| 5122 | * @param int $flagTraite2 The flag traite2. |
||
| 5123 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5124 | */ |
||
| 5125 | public function setFlagTraite2($flagTraite2) { |
||
| 5126 | $this->flagTraite2 = $flagTraite2; |
||
| 5127 | return $this; |
||
| 5128 | } |
||
| 5129 | |||
| 5130 | /** |
||
| 5131 | * Set the flag traite3. |
||
| 5132 | * |
||
| 5133 | * @param int $flagTraite3 The flag traite3. |
||
| 5134 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5135 | */ |
||
| 5136 | public function setFlagTraite3($flagTraite3) { |
||
| 5137 | $this->flagTraite3 = $flagTraite3; |
||
| 5138 | return $this; |
||
| 5139 | } |
||
| 5140 | |||
| 5141 | /** |
||
| 5142 | * Set the format fic virement. |
||
| 5143 | * |
||
| 5144 | * @param string $formatFicVirement The format fic virement. |
||
| 5145 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5146 | */ |
||
| 5147 | public function setFormatFicVirement($formatFicVirement) { |
||
| 5148 | $this->formatFicVirement = $formatFicVirement; |
||
| 5149 | return $this; |
||
| 5150 | } |
||
| 5151 | |||
| 5152 | /** |
||
| 5153 | * Set the gest num bulletin. |
||
| 5154 | * |
||
| 5155 | * @param boolean $gestNumBulletin The gest num bulletin. |
||
| 5156 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5157 | */ |
||
| 5158 | public function setGestNumBulletin($gestNumBulletin) { |
||
| 5159 | $this->gestNumBulletin = $gestNumBulletin; |
||
| 5160 | return $this; |
||
| 5161 | } |
||
| 5162 | |||
| 5163 | /** |
||
| 5164 | * Set the gest repo compens. |
||
| 5165 | * |
||
| 5166 | * @param boolean $gestRepoCompens The gest repo compens. |
||
| 5167 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5168 | */ |
||
| 5169 | public function setGestRepoCompens($gestRepoCompens) { |
||
| 5170 | $this->gestRepoCompens = $gestRepoCompens; |
||
| 5171 | return $this; |
||
| 5172 | } |
||
| 5173 | |||
| 5174 | /** |
||
| 5175 | * Set the gest texte. |
||
| 5176 | * |
||
| 5177 | * @param boolean $gestTexte The gest texte. |
||
| 5178 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5179 | */ |
||
| 5180 | public function setGestTexte($gestTexte) { |
||
| 5181 | $this->gestTexte = $gestTexte; |
||
| 5182 | return $this; |
||
| 5183 | } |
||
| 5184 | |||
| 5185 | /** |
||
| 5186 | * Set the gestion coeff. |
||
| 5187 | * |
||
| 5188 | * @param boolean $gestionCoeff The gestion coeff. |
||
| 5189 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5190 | */ |
||
| 5191 | public function setGestionCoeff($gestionCoeff) { |
||
| 5192 | $this->gestionCoeff = $gestionCoeff; |
||
| 5193 | return $this; |
||
| 5194 | } |
||
| 5195 | |||
| 5196 | /** |
||
| 5197 | * Set the gestion coeff grille. |
||
| 5198 | * |
||
| 5199 | * @param boolean $gestionCoeffGrille The gestion coeff grille. |
||
| 5200 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5201 | */ |
||
| 5202 | public function setGestionCoeffGrille($gestionCoeffGrille) { |
||
| 5203 | $this->gestionCoeffGrille = $gestionCoeffGrille; |
||
| 5204 | return $this; |
||
| 5205 | } |
||
| 5206 | |||
| 5207 | /** |
||
| 5208 | * Set the gestion exemplaire. |
||
| 5209 | * |
||
| 5210 | * @param string $gestionExemplaire The gestion exemplaire. |
||
| 5211 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5212 | */ |
||
| 5213 | public function setGestionExemplaire($gestionExemplaire) { |
||
| 5214 | $this->gestionExemplaire = $gestionExemplaire; |
||
| 5215 | return $this; |
||
| 5216 | } |
||
| 5217 | |||
| 5218 | /** |
||
| 5219 | * Set the gestion intemperie. |
||
| 5220 | * |
||
| 5221 | * @param boolean $gestionIntemperie The gestion intemperie. |
||
| 5222 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5223 | */ |
||
| 5224 | public function setGestionIntemperie($gestionIntemperie) { |
||
| 5225 | $this->gestionIntemperie = $gestionIntemperie; |
||
| 5226 | return $this; |
||
| 5227 | } |
||
| 5228 | |||
| 5229 | /** |
||
| 5230 | * Set the gestion numero employe auto. |
||
| 5231 | * |
||
| 5232 | * @param boolean $gestionNumeroEmployeAuto The gestion numero employe auto. |
||
| 5233 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5234 | */ |
||
| 5235 | public function setGestionNumeroEmployeAuto($gestionNumeroEmployeAuto) { |
||
| 5236 | $this->gestionNumeroEmployeAuto = $gestionNumeroEmployeAuto; |
||
| 5237 | return $this; |
||
| 5238 | } |
||
| 5239 | |||
| 5240 | /** |
||
| 5241 | * Set the gestion q p x l. |
||
| 5242 | * |
||
| 5243 | * @param boolean $gestionQPXL The gestion q p x l. |
||
| 5244 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5245 | */ |
||
| 5246 | public function setGestionQPXL($gestionQPXL) { |
||
| 5247 | $this->gestionQPXL = $gestionQPXL; |
||
| 5248 | return $this; |
||
| 5249 | } |
||
| 5250 | |||
| 5251 | /** |
||
| 5252 | * Set the gestion t d bilaterale. |
||
| 5253 | * |
||
| 5254 | * @param boolean $gestionTDBilaterale The gestion t d bilaterale. |
||
| 5255 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5256 | */ |
||
| 5257 | public function setGestionTDBilaterale($gestionTDBilaterale) { |
||
| 5258 | $this->gestionTDBilaterale = $gestionTDBilaterale; |
||
| 5259 | return $this; |
||
| 5260 | } |
||
| 5261 | |||
| 5262 | /** |
||
| 5263 | * Set the gestion t d sou d a d s u. |
||
| 5264 | * |
||
| 5265 | * @param boolean $gestionTDSouDADSU The gestion t d sou d a d s u. |
||
| 5266 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5267 | */ |
||
| 5268 | public function setGestionTDSouDADSU($gestionTDSouDADSU) { |
||
| 5269 | $this->gestionTDSouDADSU = $gestionTDSouDADSU; |
||
| 5270 | return $this; |
||
| 5271 | } |
||
| 5272 | |||
| 5273 | /** |
||
| 5274 | * Set the groupe g i. |
||
| 5275 | * |
||
| 5276 | * @param string $groupeGI The groupe g i. |
||
| 5277 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5278 | */ |
||
| 5279 | public function setGroupeGI($groupeGI) { |
||
| 5280 | $this->groupeGI = $groupeGI; |
||
| 5281 | return $this; |
||
| 5282 | } |
||
| 5283 | |||
| 5284 | /** |
||
| 5285 | * Set the h bonif influ cassation. |
||
| 5286 | * |
||
| 5287 | * @param string $hBonifInfluCassation The h bonif influ cassation. |
||
| 5288 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5289 | */ |
||
| 5290 | public function setHBonifInfluCassation($hBonifInfluCassation) { |
||
| 5291 | $this->hBonifInfluCassation = $hBonifInfluCassation; |
||
| 5292 | return $this; |
||
| 5293 | } |
||
| 5294 | |||
| 5295 | /** |
||
| 5296 | * Set the h sup1 structurelle. |
||
| 5297 | * |
||
| 5298 | * @param boolean $hSup1Structurelle The h sup1 structurelle. |
||
| 5299 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5300 | */ |
||
| 5301 | public function setHSup1Structurelle($hSup1Structurelle) { |
||
| 5302 | $this->hSup1Structurelle = $hSup1Structurelle; |
||
| 5303 | return $this; |
||
| 5304 | } |
||
| 5305 | |||
| 5306 | /** |
||
| 5307 | * Set the h sup2 structurelle. |
||
| 5308 | * |
||
| 5309 | * @param boolean $hSup2Structurelle The h sup2 structurelle. |
||
| 5310 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5311 | */ |
||
| 5312 | public function setHSup2Structurelle($hSup2Structurelle) { |
||
| 5313 | $this->hSup2Structurelle = $hSup2Structurelle; |
||
| 5314 | return $this; |
||
| 5315 | } |
||
| 5316 | |||
| 5317 | /** |
||
| 5318 | * Set the h sup3 structurelle. |
||
| 5319 | * |
||
| 5320 | * @param boolean $hSup3Structurelle The h sup3 structurelle. |
||
| 5321 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5322 | */ |
||
| 5323 | public function setHSup3Structurelle($hSup3Structurelle) { |
||
| 5324 | $this->hSup3Structurelle = $hSup3Structurelle; |
||
| 5325 | return $this; |
||
| 5326 | } |
||
| 5327 | |||
| 5328 | /** |
||
| 5329 | * Set the h sup4 structurelle. |
||
| 5330 | * |
||
| 5331 | * @param boolean $hSup4Structurelle The h sup4 structurelle. |
||
| 5332 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5333 | */ |
||
| 5334 | public function setHSup4Structurelle($hSup4Structurelle) { |
||
| 5335 | $this->hSup4Structurelle = $hSup4Structurelle; |
||
| 5336 | return $this; |
||
| 5337 | } |
||
| 5338 | |||
| 5339 | /** |
||
| 5340 | * Set the h sup5 structurelle. |
||
| 5341 | * |
||
| 5342 | * @param boolean $hSup5Structurelle The h sup5 structurelle. |
||
| 5343 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5344 | */ |
||
| 5345 | public function setHSup5Structurelle($hSup5Structurelle) { |
||
| 5346 | $this->hSup5Structurelle = $hSup5Structurelle; |
||
| 5347 | return $this; |
||
| 5348 | } |
||
| 5349 | |||
| 5350 | /** |
||
| 5351 | * Set the heure sup2 influ cassation. |
||
| 5352 | * |
||
| 5353 | * @param string $heureSup2InfluCassation The heure sup2 influ cassation. |
||
| 5354 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5355 | */ |
||
| 5356 | public function setHeureSup2InfluCassation($heureSup2InfluCassation) { |
||
| 5357 | $this->heureSup2InfluCassation = $heureSup2InfluCassation; |
||
| 5358 | return $this; |
||
| 5359 | } |
||
| 5360 | |||
| 5361 | /** |
||
| 5362 | * Set the heure sup3 influ cassation. |
||
| 5363 | * |
||
| 5364 | * @param string $heureSup3InfluCassation The heure sup3 influ cassation. |
||
| 5365 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5366 | */ |
||
| 5367 | public function setHeureSup3InfluCassation($heureSup3InfluCassation) { |
||
| 5368 | $this->heureSup3InfluCassation = $heureSup3InfluCassation; |
||
| 5369 | return $this; |
||
| 5370 | } |
||
| 5371 | |||
| 5372 | /** |
||
| 5373 | * Set the heure sup4 influ cassation. |
||
| 5374 | * |
||
| 5375 | * @param string $heureSup4InfluCassation The heure sup4 influ cassation. |
||
| 5376 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5377 | */ |
||
| 5378 | public function setHeureSup4InfluCassation($heureSup4InfluCassation) { |
||
| 5379 | $this->heureSup4InfluCassation = $heureSup4InfluCassation; |
||
| 5380 | return $this; |
||
| 5381 | } |
||
| 5382 | |||
| 5383 | /** |
||
| 5384 | * Set the heure sup5 influ cassation. |
||
| 5385 | * |
||
| 5386 | * @param string $heureSup5InfluCassation The heure sup5 influ cassation. |
||
| 5387 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5388 | */ |
||
| 5389 | public function setHeureSup5InfluCassation($heureSup5InfluCassation) { |
||
| 5390 | $this->heureSup5InfluCassation = $heureSup5InfluCassation; |
||
| 5391 | return $this; |
||
| 5392 | } |
||
| 5393 | |||
| 5394 | /** |
||
| 5395 | * Set the heure sup influ cassation. |
||
| 5396 | * |
||
| 5397 | * @param string $heureSupInfluCassation The heure sup influ cassation. |
||
| 5398 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5399 | */ |
||
| 5400 | public function setHeureSupInfluCassation($heureSupInfluCassation) { |
||
| 5401 | $this->heureSupInfluCassation = $heureSupInfluCassation; |
||
| 5402 | return $this; |
||
| 5403 | } |
||
| 5404 | |||
| 5405 | /** |
||
| 5406 | * Set the heure theo base trav. |
||
| 5407 | * |
||
| 5408 | * @param string $heureTheoBaseTrav The heure theo base trav. |
||
| 5409 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5410 | */ |
||
| 5411 | public function setHeureTheoBaseTrav($heureTheoBaseTrav) { |
||
| 5412 | $this->heureTheoBaseTrav = $heureTheoBaseTrav; |
||
| 5413 | return $this; |
||
| 5414 | } |
||
| 5415 | |||
| 5416 | /** |
||
| 5417 | * Set the indem cp intervient brutal. |
||
| 5418 | * |
||
| 5419 | * @param boolean $indemCpIntervientBrutal The indem cp intervient brutal. |
||
| 5420 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5421 | */ |
||
| 5422 | public function setIndemCpIntervientBrutal($indemCpIntervientBrutal) { |
||
| 5423 | $this->indemCpIntervientBrutal = $indemCpIntervientBrutal; |
||
| 5424 | return $this; |
||
| 5425 | } |
||
| 5426 | |||
| 5427 | /** |
||
| 5428 | * Set the jour debut transfert. |
||
| 5429 | * |
||
| 5430 | * @param int $jourDebutTransfert The jour debut transfert. |
||
| 5431 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5432 | */ |
||
| 5433 | public function setJourDebutTransfert($jourDebutTransfert) { |
||
| 5434 | $this->jourDebutTransfert = $jourDebutTransfert; |
||
| 5435 | return $this; |
||
| 5436 | } |
||
| 5437 | |||
| 5438 | /** |
||
| 5439 | * Set the jour fin transfert. |
||
| 5440 | * |
||
| 5441 | * @param int $jourFinTransfert The jour fin transfert. |
||
| 5442 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5443 | */ |
||
| 5444 | public function setJourFinTransfert($jourFinTransfert) { |
||
| 5445 | $this->jourFinTransfert = $jourFinTransfert; |
||
| 5446 | return $this; |
||
| 5447 | } |
||
| 5448 | |||
| 5449 | /** |
||
| 5450 | * Set the jrn format. |
||
| 5451 | * |
||
| 5452 | * @param string $jrnFormat The jrn format. |
||
| 5453 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5454 | */ |
||
| 5455 | public function setJrnFormat($jrnFormat) { |
||
| 5456 | $this->jrnFormat = $jrnFormat; |
||
| 5457 | return $this; |
||
| 5458 | } |
||
| 5459 | |||
| 5460 | /** |
||
| 5461 | * Set the jrn regroupe abs. |
||
| 5462 | * |
||
| 5463 | * @param boolean $jrnRegroupeAbs The jrn regroupe abs. |
||
| 5464 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5465 | */ |
||
| 5466 | public function setJrnRegroupeAbs($jrnRegroupeAbs) { |
||
| 5467 | $this->jrnRegroupeAbs = $jrnRegroupeAbs; |
||
| 5468 | return $this; |
||
| 5469 | } |
||
| 5470 | |||
| 5471 | /** |
||
| 5472 | * Set the jrn tri. |
||
| 5473 | * |
||
| 5474 | * @param string $jrnTri The jrn tri. |
||
| 5475 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5476 | */ |
||
| 5477 | public function setJrnTri($jrnTri) { |
||
| 5478 | $this->jrnTri = $jrnTri; |
||
| 5479 | return $this; |
||
| 5480 | } |
||
| 5481 | |||
| 5482 | /** |
||
| 5483 | * Set the jrn tri etablissement. |
||
| 5484 | * |
||
| 5485 | * @param string $jrnTriEtablissement The jrn tri etablissement. |
||
| 5486 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5487 | */ |
||
| 5488 | public function setJrnTriEtablissement($jrnTriEtablissement) { |
||
| 5489 | $this->jrnTriEtablissement = $jrnTriEtablissement; |
||
| 5490 | return $this; |
||
| 5491 | } |
||
| 5492 | |||
| 5493 | /** |
||
| 5494 | * Set the jrn tri service. |
||
| 5495 | * |
||
| 5496 | * @param string $jrnTriService The jrn tri service. |
||
| 5497 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5498 | */ |
||
| 5499 | public function setJrnTriService($jrnTriService) { |
||
| 5500 | $this->jrnTriService = $jrnTriService; |
||
| 5501 | return $this; |
||
| 5502 | } |
||
| 5503 | |||
| 5504 | /** |
||
| 5505 | * Set the jrn type. |
||
| 5506 | * |
||
| 5507 | * @param string $jrnType The jrn type. |
||
| 5508 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5509 | */ |
||
| 5510 | public function setJrnType($jrnType) { |
||
| 5511 | $this->jrnType = $jrnType; |
||
| 5512 | return $this; |
||
| 5513 | } |
||
| 5514 | |||
| 5515 | /** |
||
| 5516 | * Set the liaison proprete. |
||
| 5517 | * |
||
| 5518 | * @param boolean $liaisonProprete The liaison proprete. |
||
| 5519 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5520 | */ |
||
| 5521 | public function setLiaisonProprete($liaisonProprete) { |
||
| 5522 | $this->liaisonProprete = $liaisonProprete; |
||
| 5523 | return $this; |
||
| 5524 | } |
||
| 5525 | |||
| 5526 | /** |
||
| 5527 | * Set the lib arbitrage. |
||
| 5528 | * |
||
| 5529 | * @param string $libArbitrage The lib arbitrage. |
||
| 5530 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5531 | */ |
||
| 5532 | public function setLibArbitrage($libArbitrage) { |
||
| 5533 | $this->libArbitrage = $libArbitrage; |
||
| 5534 | return $this; |
||
| 5535 | } |
||
| 5536 | |||
| 5537 | /** |
||
| 5538 | * Set the lib b q c p. |
||
| 5539 | * |
||
| 5540 | * @param string $libBQCP The lib b q c p. |
||
| 5541 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5542 | */ |
||
| 5543 | public function setLibBQCP($libBQCP) { |
||
| 5544 | $this->libBQCP = $libBQCP; |
||
| 5545 | return $this; |
||
| 5546 | } |
||
| 5547 | |||
| 5548 | /** |
||
| 5549 | * Set the lib base conge. |
||
| 5550 | * |
||
| 5551 | * @param string $libBaseConge The lib base conge. |
||
| 5552 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5553 | */ |
||
| 5554 | public function setLibBaseConge($libBaseConge) { |
||
| 5555 | $this->libBaseConge = $libBaseConge; |
||
| 5556 | return $this; |
||
| 5557 | } |
||
| 5558 | |||
| 5559 | /** |
||
| 5560 | * Set the lib cachet a e m. |
||
| 5561 | * |
||
| 5562 | * @param string $libCachetAEM The lib cachet a e m. |
||
| 5563 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5564 | */ |
||
| 5565 | public function setLibCachetAEM($libCachetAEM) { |
||
| 5566 | $this->libCachetAEM = $libCachetAEM; |
||
| 5567 | return $this; |
||
| 5568 | } |
||
| 5569 | |||
| 5570 | /** |
||
| 5571 | * Set the lib cotis c n e. |
||
| 5572 | * |
||
| 5573 | * @param string $libCotisCNE The lib cotis c n e. |
||
| 5574 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5575 | */ |
||
| 5576 | public function setLibCotisCNE($libCotisCNE) { |
||
| 5577 | $this->libCotisCNE = $libCotisCNE; |
||
| 5578 | return $this; |
||
| 5579 | } |
||
| 5580 | |||
| 5581 | /** |
||
| 5582 | * Set the lib fin contrat. |
||
| 5583 | * |
||
| 5584 | * @param string $libFinContrat The lib fin contrat. |
||
| 5585 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5586 | */ |
||
| 5587 | public function setLibFinContrat($libFinContrat) { |
||
| 5588 | $this->libFinContrat = $libFinContrat; |
||
| 5589 | return $this; |
||
| 5590 | } |
||
| 5591 | |||
| 5592 | /** |
||
| 5593 | * Set the lib fin contrat c n e. |
||
| 5594 | * |
||
| 5595 | * @param string $libFinContratCNE The lib fin contrat c n e. |
||
| 5596 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5597 | */ |
||
| 5598 | public function setLibFinContratCNE($libFinContratCNE) { |
||
| 5599 | $this->libFinContratCNE = $libFinContratCNE; |
||
| 5600 | return $this; |
||
| 5601 | } |
||
| 5602 | |||
| 5603 | /** |
||
| 5604 | * Set the lib indem cp. |
||
| 5605 | * |
||
| 5606 | * @param string $libIndemCp The lib indem cp. |
||
| 5607 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5608 | */ |
||
| 5609 | public function setLibIndemCp($libIndemCp) { |
||
| 5610 | $this->libIndemCp = $libIndemCp; |
||
| 5611 | return $this; |
||
| 5612 | } |
||
| 5613 | |||
| 5614 | /** |
||
| 5615 | * Set the libelle libre virement. |
||
| 5616 | * |
||
| 5617 | * @param string $libelleLibreVirement The libelle libre virement. |
||
| 5618 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5619 | */ |
||
| 5620 | public function setLibelleLibreVirement($libelleLibreVirement) { |
||
| 5621 | $this->libelleLibreVirement = $libelleLibreVirement; |
||
| 5622 | return $this; |
||
| 5623 | } |
||
| 5624 | |||
| 5625 | /** |
||
| 5626 | * Set the ligne bul euro. |
||
| 5627 | * |
||
| 5628 | * @param boolean $ligneBulEuro The ligne bul euro. |
||
| 5629 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5630 | */ |
||
| 5631 | public function setLigneBulEuro($ligneBulEuro) { |
||
| 5632 | $this->ligneBulEuro = $ligneBulEuro; |
||
| 5633 | return $this; |
||
| 5634 | } |
||
| 5635 | |||
| 5636 | /** |
||
| 5637 | * Set the lignes transport. |
||
| 5638 | * |
||
| 5639 | * @param boolean $lignesTransport The lignes transport. |
||
| 5640 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5641 | */ |
||
| 5642 | public function setLignesTransport($lignesTransport) { |
||
| 5643 | $this->lignesTransport = $lignesTransport; |
||
| 5644 | return $this; |
||
| 5645 | } |
||
| 5646 | |||
| 5647 | /** |
||
| 5648 | * Set the mail bulletin. |
||
| 5649 | * |
||
| 5650 | * @param string $mailBulletin The mail bulletin. |
||
| 5651 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5652 | */ |
||
| 5653 | public function setMailBulletin($mailBulletin) { |
||
| 5654 | $this->mailBulletin = $mailBulletin; |
||
| 5655 | return $this; |
||
| 5656 | } |
||
| 5657 | |||
| 5658 | /** |
||
| 5659 | * Set the mail bulletin cle. |
||
| 5660 | * |
||
| 5661 | * @param string $mailBulletinCle The mail bulletin cle. |
||
| 5662 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5663 | */ |
||
| 5664 | public function setMailBulletinCle($mailBulletinCle) { |
||
| 5665 | $this->mailBulletinCle = $mailBulletinCle; |
||
| 5666 | return $this; |
||
| 5667 | } |
||
| 5668 | |||
| 5669 | /** |
||
| 5670 | * Set the mail bulletin p j. |
||
| 5671 | * |
||
| 5672 | * @param string $mailBulletinPJ The mail bulletin p j. |
||
| 5673 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5674 | */ |
||
| 5675 | public function setMailBulletinPJ($mailBulletinPJ) { |
||
| 5676 | $this->mailBulletinPJ = $mailBulletinPJ; |
||
| 5677 | return $this; |
||
| 5678 | } |
||
| 5679 | |||
| 5680 | /** |
||
| 5681 | * Set the mail c li ducs edi. |
||
| 5682 | * |
||
| 5683 | * @param boolean $mailCLiDucsEdi The mail c li ducs edi. |
||
| 5684 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5685 | */ |
||
| 5686 | public function setMailCLiDucsEdi($mailCLiDucsEdi) { |
||
| 5687 | $this->mailCLiDucsEdi = $mailCLiDucsEdi; |
||
| 5688 | return $this; |
||
| 5689 | } |
||
| 5690 | |||
| 5691 | /** |
||
| 5692 | * Set the mention cp. |
||
| 5693 | * |
||
| 5694 | * @param boolean $mentionCp The mention cp. |
||
| 5695 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5696 | */ |
||
| 5697 | public function setMentionCp($mentionCp) { |
||
| 5698 | $this->mentionCp = $mentionCp; |
||
| 5699 | return $this; |
||
| 5700 | } |
||
| 5701 | |||
| 5702 | /** |
||
| 5703 | * Set the message vu. |
||
| 5704 | * |
||
| 5705 | * @param boolean $messageVu The message vu. |
||
| 5706 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5707 | */ |
||
| 5708 | public function setMessageVu($messageVu) { |
||
| 5709 | $this->messageVu = $messageVu; |
||
| 5710 | return $this; |
||
| 5711 | } |
||
| 5712 | |||
| 5713 | /** |
||
| 5714 | * Set the millesime_1. |
||
| 5715 | * |
||
| 5716 | * @param int $millesime_1 The millesime_1. |
||
| 5717 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5718 | */ |
||
| 5719 | public function setMillesime_1($millesime_1) { |
||
| 5720 | $this->millesime_1 = $millesime_1; |
||
| 5721 | return $this; |
||
| 5722 | } |
||
| 5723 | |||
| 5724 | /** |
||
| 5725 | * Set the mode planning. |
||
| 5726 | * |
||
| 5727 | * @param int $modePlanning The mode planning. |
||
| 5728 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5729 | */ |
||
| 5730 | public function setModePlanning($modePlanning) { |
||
| 5731 | $this->modePlanning = $modePlanning; |
||
| 5732 | return $this; |
||
| 5733 | } |
||
| 5734 | |||
| 5735 | /** |
||
| 5736 | * Set the modele apercu. |
||
| 5737 | * |
||
| 5738 | * @param string $modeleApercu The modele apercu. |
||
| 5739 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5740 | */ |
||
| 5741 | public function setModeleApercu($modeleApercu) { |
||
| 5742 | $this->modeleApercu = $modeleApercu; |
||
| 5743 | return $this; |
||
| 5744 | } |
||
| 5745 | |||
| 5746 | /** |
||
| 5747 | * Set the modele bon bleu. |
||
| 5748 | * |
||
| 5749 | * @param string $modeleBonBleu The modele bon bleu. |
||
| 5750 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5751 | */ |
||
| 5752 | public function setModeleBonBleu($modeleBonBleu) { |
||
| 5753 | $this->modeleBonBleu = $modeleBonBleu; |
||
| 5754 | return $this; |
||
| 5755 | } |
||
| 5756 | |||
| 5757 | /** |
||
| 5758 | * Set the modele bulletin. |
||
| 5759 | * |
||
| 5760 | * @param string $modeleBulletin The modele bulletin. |
||
| 5761 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5762 | */ |
||
| 5763 | public function setModeleBulletin($modeleBulletin) { |
||
| 5764 | $this->modeleBulletin = $modeleBulletin; |
||
| 5765 | return $this; |
||
| 5766 | } |
||
| 5767 | |||
| 5768 | /** |
||
| 5769 | * Set the modele certif. |
||
| 5770 | * |
||
| 5771 | * @param string $modeleCertif The modele certif. |
||
| 5772 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5773 | */ |
||
| 5774 | public function setModeleCertif($modeleCertif) { |
||
| 5775 | $this->modeleCertif = $modeleCertif; |
||
| 5776 | return $this; |
||
| 5777 | } |
||
| 5778 | |||
| 5779 | /** |
||
| 5780 | * Set the modele certif trav. |
||
| 5781 | * |
||
| 5782 | * @param string $modeleCertifTrav The modele certif trav. |
||
| 5783 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5784 | */ |
||
| 5785 | public function setModeleCertifTrav($modeleCertifTrav) { |
||
| 5786 | $this->modeleCertifTrav = $modeleCertifTrav; |
||
| 5787 | return $this; |
||
| 5788 | } |
||
| 5789 | |||
| 5790 | /** |
||
| 5791 | * Set the modele cheque. |
||
| 5792 | * |
||
| 5793 | * @param string $modeleCheque The modele cheque. |
||
| 5794 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5795 | */ |
||
| 5796 | public function setModeleCheque($modeleCheque) { |
||
| 5797 | $this->modeleCheque = $modeleCheque; |
||
| 5798 | return $this; |
||
| 5799 | } |
||
| 5800 | |||
| 5801 | /** |
||
| 5802 | * Set the mois cloture an. |
||
| 5803 | * |
||
| 5804 | * @param string $moisClotureAn The mois cloture an. |
||
| 5805 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5806 | */ |
||
| 5807 | public function setMoisClotureAn($moisClotureAn) { |
||
| 5808 | $this->moisClotureAn = $moisClotureAn; |
||
| 5809 | return $this; |
||
| 5810 | } |
||
| 5811 | |||
| 5812 | /** |
||
| 5813 | * Set the n attest a e m. |
||
| 5814 | * |
||
| 5815 | * @param int $nAttestAEM The n attest a e m. |
||
| 5816 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5817 | */ |
||
| 5818 | public function setNAttestAEM($nAttestAEM) { |
||
| 5819 | $this->nAttestAEM = $nAttestAEM; |
||
| 5820 | return $this; |
||
| 5821 | } |
||
| 5822 | |||
| 5823 | /** |
||
| 5824 | * Set the n attest a e m e d i. |
||
| 5825 | * |
||
| 5826 | * @param int $nAttestAEMEDI The n attest a e m e d i. |
||
| 5827 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5828 | */ |
||
| 5829 | public function setNAttestAEMEDI($nAttestAEMEDI) { |
||
| 5830 | $this->nAttestAEMEDI = $nAttestAEMEDI; |
||
| 5831 | return $this; |
||
| 5832 | } |
||
| 5833 | |||
| 5834 | /** |
||
| 5835 | * Set the n attest a e m x. |
||
| 5836 | * |
||
| 5837 | * @param int $nAttestAEMX The n attest a e m x. |
||
| 5838 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5839 | */ |
||
| 5840 | public function setNAttestAEMX($nAttestAEMX) { |
||
| 5841 | $this->nAttestAEMX = $nAttestAEMX; |
||
| 5842 | return $this; |
||
| 5843 | } |
||
| 5844 | |||
| 5845 | /** |
||
| 5846 | * Set the n attest assedic. |
||
| 5847 | * |
||
| 5848 | * @param int $nAttestAssedic The n attest assedic. |
||
| 5849 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5850 | */ |
||
| 5851 | public function setNAttestAssedic($nAttestAssedic) { |
||
| 5852 | $this->nAttestAssedic = $nAttestAssedic; |
||
| 5853 | return $this; |
||
| 5854 | } |
||
| 5855 | |||
| 5856 | /** |
||
| 5857 | * Set the n attest extras. |
||
| 5858 | * |
||
| 5859 | * @param int $nAttestExtras The n attest extras. |
||
| 5860 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5861 | */ |
||
| 5862 | public function setNAttestExtras($nAttestExtras) { |
||
| 5863 | $this->nAttestExtras = $nAttestExtras; |
||
| 5864 | return $this; |
||
| 5865 | } |
||
| 5866 | |||
| 5867 | /** |
||
| 5868 | * Set the n attest ijss. |
||
| 5869 | * |
||
| 5870 | * @param int $nAttestIjss The n attest ijss. |
||
| 5871 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5872 | */ |
||
| 5873 | public function setNAttestIjss($nAttestIjss) { |
||
| 5874 | $this->nAttestIjss = $nAttestIjss; |
||
| 5875 | return $this; |
||
| 5876 | } |
||
| 5877 | |||
| 5878 | /** |
||
| 5879 | * Set the n attest ijss a t. |
||
| 5880 | * |
||
| 5881 | * @param int $nAttestIjssAT The n attest ijss a t. |
||
| 5882 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5883 | */ |
||
| 5884 | public function setNAttestIjssAT($nAttestIjssAT) { |
||
| 5885 | $this->nAttestIjssAT = $nAttestIjssAT; |
||
| 5886 | return $this; |
||
| 5887 | } |
||
| 5888 | |||
| 5889 | /** |
||
| 5890 | * Set the n c e conges spectacles. |
||
| 5891 | * |
||
| 5892 | * @param int $nCECongesSpectacles The n c e conges spectacles. |
||
| 5893 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5894 | */ |
||
| 5895 | public function setNCECongesSpectacles($nCECongesSpectacles) { |
||
| 5896 | $this->nCECongesSpectacles = $nCECongesSpectacles; |
||
| 5897 | return $this; |
||
| 5898 | } |
||
| 5899 | |||
| 5900 | /** |
||
| 5901 | * Set the n der document. |
||
| 5902 | * |
||
| 5903 | * @param int $nDerDocument The n der document. |
||
| 5904 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5905 | */ |
||
| 5906 | public function setNDerDocument($nDerDocument) { |
||
| 5907 | $this->nDerDocument = $nDerDocument; |
||
| 5908 | return $this; |
||
| 5909 | } |
||
| 5910 | |||
| 5911 | /** |
||
| 5912 | * Set the nap euro. |
||
| 5913 | * |
||
| 5914 | * @param boolean $napEuro The nap euro. |
||
| 5915 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5916 | */ |
||
| 5917 | public function setNapEuro($napEuro) { |
||
| 5918 | $this->napEuro = $napEuro; |
||
| 5919 | return $this; |
||
| 5920 | } |
||
| 5921 | |||
| 5922 | /** |
||
| 5923 | * Set the nb exemplaire. |
||
| 5924 | * |
||
| 5925 | * @param string $nbExemplaire The nb exemplaire. |
||
| 5926 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5927 | */ |
||
| 5928 | public function setNbExemplaire($nbExemplaire) { |
||
| 5929 | $this->nbExemplaire = $nbExemplaire; |
||
| 5930 | return $this; |
||
| 5931 | } |
||
| 5932 | |||
| 5933 | /** |
||
| 5934 | * Set the nouv param retraite type. |
||
| 5935 | * |
||
| 5936 | * @param boolean $nouvParamRetraiteType The nouv param retraite type. |
||
| 5937 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5938 | */ |
||
| 5939 | public function setNouvParamRetraiteType($nouvParamRetraiteType) { |
||
| 5940 | $this->nouvParamRetraiteType = $nouvParamRetraiteType; |
||
| 5941 | return $this; |
||
| 5942 | } |
||
| 5943 | |||
| 5944 | /** |
||
| 5945 | * Set the options calc abs. |
||
| 5946 | * |
||
| 5947 | * @param boolean $optionsCalcAbs The options calc abs. |
||
| 5948 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5949 | */ |
||
| 5950 | public function setOptionsCalcAbs($optionsCalcAbs) { |
||
| 5951 | $this->optionsCalcAbs = $optionsCalcAbs; |
||
| 5952 | return $this; |
||
| 5953 | } |
||
| 5954 | |||
| 5955 | /** |
||
| 5956 | * Set the ordre libelle h sup. |
||
| 5957 | * |
||
| 5958 | * @param string $ordreLibelleHSup The ordre libelle h sup. |
||
| 5959 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5960 | */ |
||
| 5961 | public function setOrdreLibelleHSup($ordreLibelleHSup) { |
||
| 5962 | $this->ordreLibelleHSup = $ordreLibelleHSup; |
||
| 5963 | return $this; |
||
| 5964 | } |
||
| 5965 | |||
| 5966 | /** |
||
| 5967 | * Set the paie euro. |
||
| 5968 | * |
||
| 5969 | * @param boolean $paieEuro The paie euro. |
||
| 5970 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5971 | */ |
||
| 5972 | public function setPaieEuro($paieEuro) { |
||
| 5973 | $this->paieEuro = $paieEuro; |
||
| 5974 | return $this; |
||
| 5975 | } |
||
| 5976 | |||
| 5977 | /** |
||
| 5978 | * Set the part sal seule. |
||
| 5979 | * |
||
| 5980 | * @param boolean $partSalSeule The part sal seule. |
||
| 5981 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5982 | */ |
||
| 5983 | public function setPartSalSeule($partSalSeule) { |
||
| 5984 | $this->partSalSeule = $partSalSeule; |
||
| 5985 | return $this; |
||
| 5986 | } |
||
| 5987 | |||
| 5988 | /** |
||
| 5989 | * Set the pas gestion indice bul. |
||
| 5990 | * |
||
| 5991 | * @param boolean $pasGestionIndiceBul The pas gestion indice bul. |
||
| 5992 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 5993 | */ |
||
| 5994 | public function setPasGestionIndiceBul($pasGestionIndiceBul) { |
||
| 5995 | $this->pasGestionIndiceBul = $pasGestionIndiceBul; |
||
| 5996 | return $this; |
||
| 5997 | } |
||
| 5998 | |||
| 5999 | /** |
||
| 6000 | * Set the pas prendre i c c p fillon. |
||
| 6001 | * |
||
| 6002 | * @param boolean $pasPrendreICCPFillon The pas prendre i c c p fillon. |
||
| 6003 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6004 | */ |
||
| 6005 | public function setPasPrendreICCPFillon($pasPrendreICCPFillon) { |
||
| 6006 | $this->pasPrendreICCPFillon = $pasPrendreICCPFillon; |
||
| 6007 | return $this; |
||
| 6008 | } |
||
| 6009 | |||
| 6010 | /** |
||
| 6011 | * Set the pas sous tot s base. |
||
| 6012 | * |
||
| 6013 | * @param boolean $pasSousTotSBase The pas sous tot s base. |
||
| 6014 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6015 | */ |
||
| 6016 | public function setPasSousTotSBase($pasSousTotSBase) { |
||
| 6017 | $this->pasSousTotSBase = $pasSousTotSBase; |
||
| 6018 | return $this; |
||
| 6019 | } |
||
| 6020 | |||
| 6021 | /** |
||
| 6022 | * Set the passage35 h fait. |
||
| 6023 | * |
||
| 6024 | * @param boolean $passage35HFait The passage35 h fait. |
||
| 6025 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6026 | */ |
||
| 6027 | public function setPassage35HFait($passage35HFait) { |
||
| 6028 | $this->passage35HFait = $passage35HFait; |
||
| 6029 | return $this; |
||
| 6030 | } |
||
| 6031 | |||
| 6032 | /** |
||
| 6033 | * Set the path virement. |
||
| 6034 | * |
||
| 6035 | * @param string $pathVirement The path virement. |
||
| 6036 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6037 | */ |
||
| 6038 | public function setPathVirement($pathVirement) { |
||
| 6039 | $this->pathVirement = $pathVirement; |
||
| 6040 | return $this; |
||
| 6041 | } |
||
| 6042 | |||
| 6043 | /** |
||
| 6044 | * Set the periode i paie. |
||
| 6045 | * |
||
| 6046 | * @param DateTime $periodeIPaie The periode i paie. |
||
| 6047 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6048 | */ |
||
| 6049 | public function setPeriodeIPaie(DateTime $periodeIPaie = null) { |
||
| 6050 | $this->periodeIPaie = $periodeIPaie; |
||
| 6051 | return $this; |
||
| 6052 | } |
||
| 6053 | |||
| 6054 | /** |
||
| 6055 | * Set the periode paie. |
||
| 6056 | * |
||
| 6057 | * @param DateTime $periodePaie The periode paie. |
||
| 6058 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6059 | */ |
||
| 6060 | public function setPeriodePaie(DateTime $periodePaie = null) { |
||
| 6061 | $this->periodePaie = $periodePaie; |
||
| 6062 | return $this; |
||
| 6063 | } |
||
| 6064 | |||
| 6065 | /** |
||
| 6066 | * Set the pj mail c li ducs edi. |
||
| 6067 | * |
||
| 6068 | * @param boolean $pjMailCLiDucsEdi The pj mail c li ducs edi. |
||
| 6069 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6070 | */ |
||
| 6071 | public function setPjMailCLiDucsEdi($pjMailCLiDucsEdi) { |
||
| 6072 | $this->pjMailCLiDucsEdi = $pjMailCLiDucsEdi; |
||
| 6073 | return $this; |
||
| 6074 | } |
||
| 6075 | |||
| 6076 | /** |
||
| 6077 | * Set the pj mail cli coupon paiement. |
||
| 6078 | * |
||
| 6079 | * @param boolean $pjMailCliCouponPaiement The pj mail cli coupon paiement. |
||
| 6080 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6081 | */ |
||
| 6082 | public function setPjMailCliCouponPaiement($pjMailCliCouponPaiement) { |
||
| 6083 | $this->pjMailCliCouponPaiement = $pjMailCliCouponPaiement; |
||
| 6084 | return $this; |
||
| 6085 | } |
||
| 6086 | |||
| 6087 | /** |
||
| 6088 | * Set the plafond. |
||
| 6089 | * |
||
| 6090 | * @param float $plafond The plafond. |
||
| 6091 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6092 | */ |
||
| 6093 | public function setPlafond($plafond) { |
||
| 6094 | $this->plafond = $plafond; |
||
| 6095 | return $this; |
||
| 6096 | } |
||
| 6097 | |||
| 6098 | /** |
||
| 6099 | * Set the porta frais sante certif trav. |
||
| 6100 | * |
||
| 6101 | * @param boolean $portaFraisSanteCertifTrav The porta frais sante certif trav. |
||
| 6102 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6103 | */ |
||
| 6104 | public function setPortaFraisSanteCertifTrav($portaFraisSanteCertifTrav) { |
||
| 6105 | $this->portaFraisSanteCertifTrav = $portaFraisSanteCertifTrav; |
||
| 6106 | return $this; |
||
| 6107 | } |
||
| 6108 | |||
| 6109 | /** |
||
| 6110 | * Set the porta prevoyance oblig. |
||
| 6111 | * |
||
| 6112 | * @param boolean $portaPrevoyanceOblig The porta prevoyance oblig. |
||
| 6113 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6114 | */ |
||
| 6115 | public function setPortaPrevoyanceOblig($portaPrevoyanceOblig) { |
||
| 6116 | $this->portaPrevoyanceOblig = $portaPrevoyanceOblig; |
||
| 6117 | return $this; |
||
| 6118 | } |
||
| 6119 | |||
| 6120 | /** |
||
| 6121 | * Set the preparation t d p. |
||
| 6122 | * |
||
| 6123 | * @param boolean $preparationTDP The preparation t d p. |
||
| 6124 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6125 | */ |
||
| 6126 | public function setPreparationTDP($preparationTDP) { |
||
| 6127 | $this->preparationTDP = $preparationTDP; |
||
| 6128 | return $this; |
||
| 6129 | } |
||
| 6130 | |||
| 6131 | /** |
||
| 6132 | * Set the presence min. |
||
| 6133 | * |
||
| 6134 | * @param string $presenceMin The presence min. |
||
| 6135 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6136 | */ |
||
| 6137 | public function setPresenceMin($presenceMin) { |
||
| 6138 | $this->presenceMin = $presenceMin; |
||
| 6139 | return $this; |
||
| 6140 | } |
||
| 6141 | |||
| 6142 | /** |
||
| 6143 | * Set the prorata dif certif trav. |
||
| 6144 | * |
||
| 6145 | * @param boolean $prorataDifCertifTrav The prorata dif certif trav. |
||
| 6146 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6147 | */ |
||
| 6148 | public function setProrataDifCertifTrav($prorataDifCertifTrav) { |
||
| 6149 | $this->prorataDifCertifTrav = $prorataDifCertifTrav; |
||
| 6150 | return $this; |
||
| 6151 | } |
||
| 6152 | |||
| 6153 | /** |
||
| 6154 | * Set the r d l p_ a s c i i. |
||
| 6155 | * |
||
| 6156 | * @param boolean $rDLP_ASCII The r d l p_ a s c i i. |
||
| 6157 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6158 | */ |
||
| 6159 | public function setRDLP_ASCII($rDLP_ASCII) { |
||
| 6160 | $this->rDLP_ASCII = $rDLP_ASCII; |
||
| 6161 | return $this; |
||
| 6162 | } |
||
| 6163 | |||
| 6164 | /** |
||
| 6165 | * Set the r d l p_ e m p l o y e s. |
||
| 6166 | * |
||
| 6167 | * @param boolean $rDLP_EMPLOYES The r d l p_ e m p l o y e s. |
||
| 6168 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6169 | */ |
||
| 6170 | public function setRDLP_EMPLOYES($rDLP_EMPLOYES) { |
||
| 6171 | $this->rDLP_EMPLOYES = $rDLP_EMPLOYES; |
||
| 6172 | return $this; |
||
| 6173 | } |
||
| 6174 | |||
| 6175 | /** |
||
| 6176 | * Set the raz commentaire. |
||
| 6177 | * |
||
| 6178 | * @param string $razCommentaire The raz commentaire. |
||
| 6179 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6180 | */ |
||
| 6181 | public function setRazCommentaire($razCommentaire) { |
||
| 6182 | $this->razCommentaire = $razCommentaire; |
||
| 6183 | return $this; |
||
| 6184 | } |
||
| 6185 | |||
| 6186 | /** |
||
| 6187 | * Set the raz h sup. |
||
| 6188 | * |
||
| 6189 | * @param string $razHSup The raz h sup. |
||
| 6190 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6191 | */ |
||
| 6192 | public function setRazHSup($razHSup) { |
||
| 6193 | $this->razHSup = $razHSup; |
||
| 6194 | return $this; |
||
| 6195 | } |
||
| 6196 | |||
| 6197 | /** |
||
| 6198 | * Set the ref remise. |
||
| 6199 | * |
||
| 6200 | * @param int $refRemise The ref remise. |
||
| 6201 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6202 | */ |
||
| 6203 | public function setRefRemise($refRemise) { |
||
| 6204 | $this->refRemise = $refRemise; |
||
| 6205 | return $this; |
||
| 6206 | } |
||
| 6207 | |||
| 6208 | /** |
||
| 6209 | * Set the ref trans. |
||
| 6210 | * |
||
| 6211 | * @param int $refTrans The ref trans. |
||
| 6212 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6213 | */ |
||
| 6214 | public function setRefTrans($refTrans) { |
||
| 6215 | $this->refTrans = $refTrans; |
||
| 6216 | return $this; |
||
| 6217 | } |
||
| 6218 | |||
| 6219 | /** |
||
| 6220 | * Set the reference interne virement. |
||
| 6221 | * |
||
| 6222 | * @param string $referenceInterneVirement The reference interne virement. |
||
| 6223 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6224 | */ |
||
| 6225 | public function setReferenceInterneVirement($referenceInterneVirement) { |
||
| 6226 | $this->referenceInterneVirement = $referenceInterneVirement; |
||
| 6227 | return $this; |
||
| 6228 | } |
||
| 6229 | |||
| 6230 | /** |
||
| 6231 | * Set the regroup lib ed bul. |
||
| 6232 | * |
||
| 6233 | * @param boolean $regroupLibEdBul The regroup lib ed bul. |
||
| 6234 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6235 | */ |
||
| 6236 | public function setRegroupLibEdBul($regroupLibEdBul) { |
||
| 6237 | $this->regroupLibEdBul = $regroupLibEdBul; |
||
| 6238 | return $this; |
||
| 6239 | } |
||
| 6240 | |||
| 6241 | /** |
||
| 6242 | * Set the report minimum. |
||
| 6243 | * |
||
| 6244 | * @param int $reportMinimum The report minimum. |
||
| 6245 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6246 | */ |
||
| 6247 | public function setReportMinimum($reportMinimum) { |
||
| 6248 | $this->reportMinimum = $reportMinimum; |
||
| 6249 | return $this; |
||
| 6250 | } |
||
| 6251 | |||
| 6252 | /** |
||
| 6253 | * Set the retraite97. |
||
| 6254 | * |
||
| 6255 | * @param boolean $retraite97 The retraite97. |
||
| 6256 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6257 | */ |
||
| 6258 | public function setRetraite97($retraite97) { |
||
| 6259 | $this->retraite97 = $retraite97; |
||
| 6260 | return $this; |
||
| 6261 | } |
||
| 6262 | |||
| 6263 | /** |
||
| 6264 | * Set the sais plan emp sem. |
||
| 6265 | * |
||
| 6266 | * @param string $saisPlanEmpSem The sais plan emp sem. |
||
| 6267 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6268 | */ |
||
| 6269 | public function setSaisPlanEmpSem($saisPlanEmpSem) { |
||
| 6270 | $this->saisPlanEmpSem = $saisPlanEmpSem; |
||
| 6271 | return $this; |
||
| 6272 | } |
||
| 6273 | |||
| 6274 | /** |
||
| 6275 | * Set the saisie indice bul. |
||
| 6276 | * |
||
| 6277 | * @param boolean $saisieIndiceBul The saisie indice bul. |
||
| 6278 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6279 | */ |
||
| 6280 | public function setSaisieIndiceBul($saisieIndiceBul) { |
||
| 6281 | $this->saisieIndiceBul = $saisieIndiceBul; |
||
| 6282 | return $this; |
||
| 6283 | } |
||
| 6284 | |||
| 6285 | /** |
||
| 6286 | * Set the saut page. |
||
| 6287 | * |
||
| 6288 | * @param boolean $sautPage The saut page. |
||
| 6289 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6290 | */ |
||
| 6291 | public function setSautPage($sautPage) { |
||
| 6292 | $this->sautPage = $sautPage; |
||
| 6293 | return $this; |
||
| 6294 | } |
||
| 6295 | |||
| 6296 | /** |
||
| 6297 | * Set the seuil. |
||
| 6298 | * |
||
| 6299 | * @param float $seuil The seuil. |
||
| 6300 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6301 | */ |
||
| 6302 | public function setSeuil($seuil) { |
||
| 6303 | $this->seuil = $seuil; |
||
| 6304 | return $this; |
||
| 6305 | } |
||
| 6306 | |||
| 6307 | /** |
||
| 6308 | * Set the seuil conting. |
||
| 6309 | * |
||
| 6310 | * @param float $seuilConting The seuil conting. |
||
| 6311 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6312 | */ |
||
| 6313 | public function setSeuilConting($seuilConting) { |
||
| 6314 | $this->seuilConting = $seuilConting; |
||
| 6315 | return $this; |
||
| 6316 | } |
||
| 6317 | |||
| 6318 | /** |
||
| 6319 | * Set the stc auto. |
||
| 6320 | * |
||
| 6321 | * @param boolean $stcAuto The stc auto. |
||
| 6322 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6323 | */ |
||
| 6324 | public function setStcAuto($stcAuto) { |
||
| 6325 | $this->stcAuto = $stcAuto; |
||
| 6326 | return $this; |
||
| 6327 | } |
||
| 6328 | |||
| 6329 | /** |
||
| 6330 | * Set the tab bord tri etablissement. |
||
| 6331 | * |
||
| 6332 | * @param boolean $tabBordTriEtablissement The tab bord tri etablissement. |
||
| 6333 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6334 | */ |
||
| 6335 | public function setTabBordTriEtablissement($tabBordTriEtablissement) { |
||
| 6336 | $this->tabBordTriEtablissement = $tabBordTriEtablissement; |
||
| 6337 | return $this; |
||
| 6338 | } |
||
| 6339 | |||
| 6340 | /** |
||
| 6341 | * Set the tab bord tri service. |
||
| 6342 | * |
||
| 6343 | * @param boolean $tabBordTriService The tab bord tri service. |
||
| 6344 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6345 | */ |
||
| 6346 | public function setTabBordTriService($tabBordTriService) { |
||
| 6347 | $this->tabBordTriService = $tabBordTriService; |
||
| 6348 | return $this; |
||
| 6349 | } |
||
| 6350 | |||
| 6351 | /** |
||
| 6352 | * Set the tableau charge. |
||
| 6353 | * |
||
| 6354 | * @param string $tableauCharge The tableau charge. |
||
| 6355 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6356 | */ |
||
| 6357 | public function setTableauCharge($tableauCharge) { |
||
| 6358 | $this->tableauCharge = $tableauCharge; |
||
| 6359 | return $this; |
||
| 6360 | } |
||
| 6361 | |||
| 6362 | /** |
||
| 6363 | * Set the tds annee. |
||
| 6364 | * |
||
| 6365 | * @param int $tdsAnnee The tds annee. |
||
| 6366 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6367 | */ |
||
| 6368 | public function setTdsAnnee($tdsAnnee) { |
||
| 6369 | $this->tdsAnnee = $tdsAnnee; |
||
| 6370 | return $this; |
||
| 6371 | } |
||
| 6372 | |||
| 6373 | /** |
||
| 6374 | * Set the tds euro. |
||
| 6375 | * |
||
| 6376 | * @param boolean $tdsEuro The tds euro. |
||
| 6377 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6378 | */ |
||
| 6379 | public function setTdsEuro($tdsEuro) { |
||
| 6380 | $this->tdsEuro = $tdsEuro; |
||
| 6381 | return $this; |
||
| 6382 | } |
||
| 6383 | |||
| 6384 | /** |
||
| 6385 | * Set the tot gene isole. |
||
| 6386 | * |
||
| 6387 | * @param string $totGeneIsole The tot gene isole. |
||
| 6388 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6389 | */ |
||
| 6390 | public function setTotGeneIsole($totGeneIsole) { |
||
| 6391 | $this->totGeneIsole = $totGeneIsole; |
||
| 6392 | return $this; |
||
| 6393 | } |
||
| 6394 | |||
| 6395 | /** |
||
| 6396 | * Set the tot service isole. |
||
| 6397 | * |
||
| 6398 | * @param string $totServiceIsole The tot service isole. |
||
| 6399 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6400 | */ |
||
| 6401 | public function setTotServiceIsole($totServiceIsole) { |
||
| 6402 | $this->totServiceIsole = $totServiceIsole; |
||
| 6403 | return $this; |
||
| 6404 | } |
||
| 6405 | |||
| 6406 | /** |
||
| 6407 | * Set the total etab isole. |
||
| 6408 | * |
||
| 6409 | * @param string $totalEtabIsole The total etab isole. |
||
| 6410 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6411 | */ |
||
| 6412 | public function setTotalEtabIsole($totalEtabIsole) { |
||
| 6413 | $this->totalEtabIsole = $totalEtabIsole; |
||
| 6414 | return $this; |
||
| 6415 | } |
||
| 6416 | |||
| 6417 | /** |
||
| 6418 | * Set the trans rupture. |
||
| 6419 | * |
||
| 6420 | * @param string $transRupture The trans rupture. |
||
| 6421 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6422 | */ |
||
| 6423 | public function setTransRupture($transRupture) { |
||
| 6424 | $this->transRupture = $transRupture; |
||
| 6425 | return $this; |
||
| 6426 | } |
||
| 6427 | |||
| 6428 | /** |
||
| 6429 | * Set the trans tri etablissement. |
||
| 6430 | * |
||
| 6431 | * @param string $transTriEtablissement The trans tri etablissement. |
||
| 6432 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6433 | */ |
||
| 6434 | public function setTransTriEtablissement($transTriEtablissement) { |
||
| 6435 | $this->transTriEtablissement = $transTriEtablissement; |
||
| 6436 | return $this; |
||
| 6437 | } |
||
| 6438 | |||
| 6439 | /** |
||
| 6440 | * Set the transfert t d s emp. |
||
| 6441 | * |
||
| 6442 | * @param boolean $transfertTDSEmp The transfert t d s emp. |
||
| 6443 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6444 | */ |
||
| 6445 | public function setTransfertTDSEmp($transfertTDSEmp) { |
||
| 6446 | $this->transfertTDSEmp = $transfertTDSEmp; |
||
| 6447 | return $this; |
||
| 6448 | } |
||
| 6449 | |||
| 6450 | /** |
||
| 6451 | * Set the tri employe. |
||
| 6452 | * |
||
| 6453 | * @param string $triEmploye The tri employe. |
||
| 6454 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6455 | */ |
||
| 6456 | public function setTriEmploye($triEmploye) { |
||
| 6457 | $this->triEmploye = $triEmploye; |
||
| 6458 | return $this; |
||
| 6459 | } |
||
| 6460 | |||
| 6461 | /** |
||
| 6462 | * Set the tx sal decote. |
||
| 6463 | * |
||
| 6464 | * @param float $txSalDecote The tx sal decote. |
||
| 6465 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6466 | */ |
||
| 6467 | public function setTxSalDecote($txSalDecote) { |
||
| 6468 | $this->txSalDecote = $txSalDecote; |
||
| 6469 | return $this; |
||
| 6470 | } |
||
| 6471 | |||
| 6472 | /** |
||
| 6473 | * Set the type abs sans solde. |
||
| 6474 | * |
||
| 6475 | * @param string $typeAbsSansSolde The type abs sans solde. |
||
| 6476 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6477 | */ |
||
| 6478 | public function setTypeAbsSansSolde($typeAbsSansSolde) { |
||
| 6479 | $this->typeAbsSansSolde = $typeAbsSansSolde; |
||
| 6480 | return $this; |
||
| 6481 | } |
||
| 6482 | |||
| 6483 | /** |
||
| 6484 | * Set the type agrement a e m. |
||
| 6485 | * |
||
| 6486 | * @param string $typeAgrementAEM The type agrement a e m. |
||
| 6487 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6488 | */ |
||
| 6489 | public function setTypeAgrementAEM($typeAgrementAEM) { |
||
| 6490 | $this->typeAgrementAEM = $typeAgrementAEM; |
||
| 6491 | return $this; |
||
| 6492 | } |
||
| 6493 | |||
| 6494 | /** |
||
| 6495 | * Set the type bordereau prepa. |
||
| 6496 | * |
||
| 6497 | * @param string $typeBordereauPrepa The type bordereau prepa. |
||
| 6498 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6499 | */ |
||
| 6500 | public function setTypeBordereauPrepa($typeBordereauPrepa) { |
||
| 6501 | $this->typeBordereauPrepa = $typeBordereauPrepa; |
||
| 6502 | return $this; |
||
| 6503 | } |
||
| 6504 | |||
| 6505 | /** |
||
| 6506 | * Set the type bulletin. |
||
| 6507 | * |
||
| 6508 | * @param string $typeBulletin The type bulletin. |
||
| 6509 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6510 | */ |
||
| 6511 | public function setTypeBulletin($typeBulletin) { |
||
| 6512 | $this->typeBulletin = $typeBulletin; |
||
| 6513 | return $this; |
||
| 6514 | } |
||
| 6515 | |||
| 6516 | /** |
||
| 6517 | * Set the type d u e. |
||
| 6518 | * |
||
| 6519 | * @param string $typeDUE The type d u e. |
||
| 6520 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6521 | */ |
||
| 6522 | public function setTypeDUE($typeDUE) { |
||
| 6523 | $this->typeDUE = $typeDUE; |
||
| 6524 | return $this; |
||
| 6525 | } |
||
| 6526 | |||
| 6527 | /** |
||
| 6528 | * Set the type dossier. |
||
| 6529 | * |
||
| 6530 | * @param string $typeDossier The type dossier. |
||
| 6531 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6532 | */ |
||
| 6533 | public function setTypeDossier($typeDossier) { |
||
| 6534 | $this->typeDossier = $typeDossier; |
||
| 6535 | return $this; |
||
| 6536 | } |
||
| 6537 | |||
| 6538 | /** |
||
| 6539 | * Set the type effectif. |
||
| 6540 | * |
||
| 6541 | * @param string $typeEffectif The type effectif. |
||
| 6542 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6543 | */ |
||
| 6544 | public function setTypeEffectif($typeEffectif) { |
||
| 6545 | $this->typeEffectif = $typeEffectif; |
||
| 6546 | return $this; |
||
| 6547 | } |
||
| 6548 | |||
| 6549 | /** |
||
| 6550 | * Set the type fich bilat. |
||
| 6551 | * |
||
| 6552 | * @param string $typeFichBilat The type fich bilat. |
||
| 6553 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6554 | */ |
||
| 6555 | public function setTypeFichBilat($typeFichBilat) { |
||
| 6556 | $this->typeFichBilat = $typeFichBilat; |
||
| 6557 | return $this; |
||
| 6558 | } |
||
| 6559 | |||
| 6560 | /** |
||
| 6561 | * Set the type gestion bal. |
||
| 6562 | * |
||
| 6563 | * @param string $typeGestionBal The type gestion bal. |
||
| 6564 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6565 | */ |
||
| 6566 | public function setTypeGestionBal($typeGestionBal) { |
||
| 6567 | $this->typeGestionBal = $typeGestionBal; |
||
| 6568 | return $this; |
||
| 6569 | } |
||
| 6570 | |||
| 6571 | /** |
||
| 6572 | * Set the type modele. |
||
| 6573 | * |
||
| 6574 | * @param string $typeModele The type modele. |
||
| 6575 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6576 | */ |
||
| 6577 | public function setTypeModele($typeModele) { |
||
| 6578 | $this->typeModele = $typeModele; |
||
| 6579 | return $this; |
||
| 6580 | } |
||
| 6581 | |||
| 6582 | /** |
||
| 6583 | * Set the type prep d a d s u. |
||
| 6584 | * |
||
| 6585 | * @param string $typePrepDADSU The type prep d a d s u. |
||
| 6586 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6587 | */ |
||
| 6588 | public function setTypePrepDADSU($typePrepDADSU) { |
||
| 6589 | $this->typePrepDADSU = $typePrepDADSU; |
||
| 6590 | return $this; |
||
| 6591 | } |
||
| 6592 | |||
| 6593 | /** |
||
| 6594 | * Set the type saisie abs. |
||
| 6595 | * |
||
| 6596 | * @param string $typeSaisieAbs The type saisie abs. |
||
| 6597 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6598 | */ |
||
| 6599 | public function setTypeSaisieAbs($typeSaisieAbs) { |
||
| 6600 | $this->typeSaisieAbs = $typeSaisieAbs; |
||
| 6601 | return $this; |
||
| 6602 | } |
||
| 6603 | |||
| 6604 | /** |
||
| 6605 | * Set the type saisie absence. |
||
| 6606 | * |
||
| 6607 | * @param string $typeSaisieAbsence The type saisie absence. |
||
| 6608 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6609 | */ |
||
| 6610 | public function setTypeSaisieAbsence($typeSaisieAbsence) { |
||
| 6611 | $this->typeSaisieAbsence = $typeSaisieAbsence; |
||
| 6612 | return $this; |
||
| 6613 | } |
||
| 6614 | |||
| 6615 | /** |
||
| 6616 | * Set the type stc. |
||
| 6617 | * |
||
| 6618 | * @param string $typeStc The type stc. |
||
| 6619 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6620 | */ |
||
| 6621 | public function setTypeStc($typeStc) { |
||
| 6622 | $this->typeStc = $typeStc; |
||
| 6623 | return $this; |
||
| 6624 | } |
||
| 6625 | |||
| 6626 | /** |
||
| 6627 | * Set the type taux intemperie. |
||
| 6628 | * |
||
| 6629 | * @param string $typeTauxIntemperie The type taux intemperie. |
||
| 6630 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6631 | */ |
||
| 6632 | public function setTypeTauxIntemperie($typeTauxIntemperie) { |
||
| 6633 | $this->typeTauxIntemperie = $typeTauxIntemperie; |
||
| 6634 | return $this; |
||
| 6635 | } |
||
| 6636 | |||
| 6637 | /** |
||
| 6638 | * Set the type tri. |
||
| 6639 | * |
||
| 6640 | * @param string $typeTri The type tri. |
||
| 6641 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6642 | */ |
||
| 6643 | public function setTypeTri($typeTri) { |
||
| 6644 | $this->typeTri = $typeTri; |
||
| 6645 | return $this; |
||
| 6646 | } |
||
| 6647 | |||
| 6648 | /** |
||
| 6649 | * Set the type virement. |
||
| 6650 | * |
||
| 6651 | * @param string $typeVirement The type virement. |
||
| 6652 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6653 | */ |
||
| 6654 | public function setTypeVirement($typeVirement) { |
||
| 6655 | $this->typeVirement = $typeVirement; |
||
| 6656 | return $this; |
||
| 6657 | } |
||
| 6658 | |||
| 6659 | /** |
||
| 6660 | * Set the type visu col saisie bul. |
||
| 6661 | * |
||
| 6662 | * @param string $typeVisuColSaisieBul The type visu col saisie bul. |
||
| 6663 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6664 | */ |
||
| 6665 | public function setTypeVisuColSaisieBul($typeVisuColSaisieBul) { |
||
| 6666 | $this->typeVisuColSaisieBul = $typeVisuColSaisieBul; |
||
| 6667 | return $this; |
||
| 6668 | } |
||
| 6669 | |||
| 6670 | /** |
||
| 6671 | * Set the utilise pdp quadra. |
||
| 6672 | * |
||
| 6673 | * @param boolean $utilisePdpQuadra The utilise pdp quadra. |
||
| 6674 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6675 | */ |
||
| 6676 | public function setUtilisePdpQuadra($utilisePdpQuadra) { |
||
| 6677 | $this->utilisePdpQuadra = $utilisePdpQuadra; |
||
| 6678 | return $this; |
||
| 6679 | } |
||
| 6680 | |||
| 6681 | /** |
||
| 6682 | * Set the utilise pdp quadra2. |
||
| 6683 | * |
||
| 6684 | * @param boolean $utilisePdpQuadra2 The utilise pdp quadra2. |
||
| 6685 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6686 | */ |
||
| 6687 | public function setUtilisePdpQuadra2($utilisePdpQuadra2) { |
||
| 6688 | $this->utilisePdpQuadra2 = $utilisePdpQuadra2; |
||
| 6689 | return $this; |
||
| 6690 | } |
||
| 6691 | |||
| 6692 | /** |
||
| 6693 | * Set the val cp bulletin. |
||
| 6694 | * |
||
| 6695 | * @param boolean $valCpBulletin The val cp bulletin. |
||
| 6696 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6697 | */ |
||
| 6698 | public function setValCpBulletin($valCpBulletin) { |
||
| 6699 | $this->valCpBulletin = $valCpBulletin; |
||
| 6700 | return $this; |
||
| 6701 | } |
||
| 6702 | |||
| 6703 | /** |
||
| 6704 | * Set the val filtre liste emp. |
||
| 6705 | * |
||
| 6706 | * @param int $valFiltreListeEmp The val filtre liste emp. |
||
| 6707 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6708 | */ |
||
| 6709 | public function setValFiltreListeEmp($valFiltreListeEmp) { |
||
| 6710 | $this->valFiltreListeEmp = $valFiltreListeEmp; |
||
| 6711 | return $this; |
||
| 6712 | } |
||
| 6713 | |||
| 6714 | /** |
||
| 6715 | * Set the version controle d a d s u. |
||
| 6716 | * |
||
| 6717 | * @param int $versionControleDADSU The version controle d a d s u. |
||
| 6718 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6719 | */ |
||
| 6720 | public function setVersionControleDADSU($versionControleDADSU) { |
||
| 6721 | $this->versionControleDADSU = $versionControleDADSU; |
||
| 6722 | return $this; |
||
| 6723 | } |
||
| 6724 | |||
| 6725 | /** |
||
| 6726 | * Set the vir code etab. |
||
| 6727 | * |
||
| 6728 | * @param string $virCodeEtab The vir code etab. |
||
| 6729 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6730 | */ |
||
| 6731 | public function setVirCodeEtab($virCodeEtab) { |
||
| 6732 | $this->virCodeEtab = $virCodeEtab; |
||
| 6733 | return $this; |
||
| 6734 | } |
||
| 6735 | |||
| 6736 | /** |
||
| 6737 | * Set the vir collectivite. |
||
| 6738 | * |
||
| 6739 | * @param string $virCollectivite The vir collectivite. |
||
| 6740 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6741 | */ |
||
| 6742 | public function setVirCollectivite($virCollectivite) { |
||
| 6743 | $this->virCollectivite = $virCollectivite; |
||
| 6744 | return $this; |
||
| 6745 | } |
||
| 6746 | |||
| 6747 | /** |
||
| 6748 | * Set the vir comptable centre. |
||
| 6749 | * |
||
| 6750 | * @param string $virComptableCentre The vir comptable centre. |
||
| 6751 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6752 | */ |
||
| 6753 | public function setVirComptableCentre($virComptableCentre) { |
||
| 6754 | $this->virComptableCentre = $virComptableCentre; |
||
| 6755 | return $this; |
||
| 6756 | } |
||
| 6757 | |||
| 6758 | /** |
||
| 6759 | * Set the vir comptable sub. |
||
| 6760 | * |
||
| 6761 | * @param string $virComptableSub The vir comptable sub. |
||
| 6762 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6763 | */ |
||
| 6764 | public function setVirComptableSub($virComptableSub) { |
||
| 6765 | $this->virComptableSub = $virComptableSub; |
||
| 6766 | return $this; |
||
| 6767 | } |
||
| 6768 | |||
| 6769 | /** |
||
| 6770 | * Set the vir fonction publique. |
||
| 6771 | * |
||
| 6772 | * @param boolean $virFonctionPublique The vir fonction publique. |
||
| 6773 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6774 | */ |
||
| 6775 | public function setVirFonctionPublique($virFonctionPublique) { |
||
| 6776 | $this->virFonctionPublique = $virFonctionPublique; |
||
| 6777 | return $this; |
||
| 6778 | } |
||
| 6779 | |||
| 6780 | /** |
||
| 6781 | * Set the vir seuil. |
||
| 6782 | * |
||
| 6783 | * @param float $virSeuil The vir seuil. |
||
| 6784 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6785 | */ |
||
| 6786 | public function setVirSeuil($virSeuil) { |
||
| 6787 | $this->virSeuil = $virSeuil; |
||
| 6788 | return $this; |
||
| 6789 | } |
||
| 6790 | |||
| 6791 | /** |
||
| 6792 | * Set the vir type etab. |
||
| 6793 | * |
||
| 6794 | * @param string $virTypeEtab The vir type etab. |
||
| 6795 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6796 | */ |
||
| 6797 | public function setVirTypeEtab($virTypeEtab) { |
||
| 6798 | $this->virTypeEtab = $virTypeEtab; |
||
| 6799 | return $this; |
||
| 6800 | } |
||
| 6801 | |||
| 6802 | /** |
||
| 6803 | * Set the virement cr lf. |
||
| 6804 | * |
||
| 6805 | * @param boolean $virementCrLf The virement cr lf. |
||
| 6806 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6807 | */ |
||
| 6808 | public function setVirementCrLf($virementCrLf) { |
||
| 6809 | $this->virementCrLf = $virementCrLf; |
||
| 6810 | return $this; |
||
| 6811 | } |
||
| 6812 | |||
| 6813 | /** |
||
| 6814 | * Set the virements euro. |
||
| 6815 | * |
||
| 6816 | * @param string $virementsEuro The virements euro. |
||
| 6817 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6818 | */ |
||
| 6819 | public function setVirementsEuro($virementsEuro) { |
||
| 6820 | $this->virementsEuro = $virementsEuro; |
||
| 6821 | return $this; |
||
| 6822 | } |
||
| 6823 | |||
| 6824 | /** |
||
| 6825 | * Set the web prioritaire. |
||
| 6826 | * |
||
| 6827 | * @param boolean $webPrioritaire The web prioritaire. |
||
| 6828 | * @return ConstantesEntreprise Returns this constantes entreprise. |
||
| 6829 | */ |
||
| 6830 | public function setWebPrioritaire($webPrioritaire) { |
||
| 6831 | $this->webPrioritaire = $webPrioritaire; |
||
| 6832 | return $this; |
||
| 6833 | } |
||
| 6834 | |||
| 6835 | } |
||
| 6836 |