Complex classes like Dossier1 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 Dossier1, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 22 | class Dossier1 { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Btq. |
||
| 26 | * |
||
| 27 | * @var string|null |
||
| 28 | */ |
||
| 29 | private $btq; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Bureau distributeur. |
||
| 33 | * |
||
| 34 | * @var string|null |
||
| 35 | */ |
||
| 36 | private $bureauDistributeur; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Calcul ana fait. |
||
| 40 | * |
||
| 41 | * @var bool|null |
||
| 42 | */ |
||
| 43 | private $calculAnaFait; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Chemin implantation ascii. |
||
| 47 | * |
||
| 48 | * @var string|null |
||
| 49 | */ |
||
| 50 | private $cheminImplantationAscii; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Civilite. |
||
| 54 | * |
||
| 55 | * @var string|null |
||
| 56 | */ |
||
| 57 | private $civilite; |
||
| 58 | |||
| 59 | /** |
||
| 60 | * Cle acces1. |
||
| 61 | * |
||
| 62 | * @var string|null |
||
| 63 | */ |
||
| 64 | private $cleAcces1; |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Cle acces10. |
||
| 68 | * |
||
| 69 | * @var string|null |
||
| 70 | */ |
||
| 71 | private $cleAcces10; |
||
| 72 | |||
| 73 | /** |
||
| 74 | * Cle acces2. |
||
| 75 | * |
||
| 76 | * @var string|null |
||
| 77 | */ |
||
| 78 | private $cleAcces2; |
||
| 79 | |||
| 80 | /** |
||
| 81 | * Cle acces3. |
||
| 82 | * |
||
| 83 | * @var string|null |
||
| 84 | */ |
||
| 85 | private $cleAcces3; |
||
| 86 | |||
| 87 | /** |
||
| 88 | * Cle acces4. |
||
| 89 | * |
||
| 90 | * @var string|null |
||
| 91 | */ |
||
| 92 | private $cleAcces4; |
||
| 93 | |||
| 94 | /** |
||
| 95 | * Cle acces5. |
||
| 96 | * |
||
| 97 | * @var string|null |
||
| 98 | */ |
||
| 99 | private $cleAcces5; |
||
| 100 | |||
| 101 | /** |
||
| 102 | * Cle acces6. |
||
| 103 | * |
||
| 104 | * @var string|null |
||
| 105 | */ |
||
| 106 | private $cleAcces6; |
||
| 107 | |||
| 108 | /** |
||
| 109 | * Cle acces7. |
||
| 110 | * |
||
| 111 | * @var string|null |
||
| 112 | */ |
||
| 113 | private $cleAcces7; |
||
| 114 | |||
| 115 | /** |
||
| 116 | * Cle acces8. |
||
| 117 | * |
||
| 118 | * @var string|null |
||
| 119 | */ |
||
| 120 | private $cleAcces8; |
||
| 121 | |||
| 122 | /** |
||
| 123 | * Cle acces9. |
||
| 124 | * |
||
| 125 | * @var string|null |
||
| 126 | */ |
||
| 127 | private $cleAcces9; |
||
| 128 | |||
| 129 | /** |
||
| 130 | * Cle deblocage journaux. |
||
| 131 | * |
||
| 132 | * @var string|null |
||
| 133 | */ |
||
| 134 | private $cleDeblocageJournaux; |
||
| 135 | |||
| 136 | /** |
||
| 137 | * Cle portable. |
||
| 138 | * |
||
| 139 | * @var string|null |
||
| 140 | */ |
||
| 141 | private $clePortable; |
||
| 142 | |||
| 143 | /** |
||
| 144 | * Code equipe. |
||
| 145 | * |
||
| 146 | * @var string|null |
||
| 147 | */ |
||
| 148 | private $codeEquipe; |
||
| 149 | |||
| 150 | /** |
||
| 151 | * Code naf. |
||
| 152 | * |
||
| 153 | * @var string|null |
||
| 154 | */ |
||
| 155 | private $codeNaf; |
||
| 156 | |||
| 157 | /** |
||
| 158 | * Code naf2008. |
||
| 159 | * |
||
| 160 | * @var string|null |
||
| 161 | */ |
||
| 162 | private $codeNaf2008; |
||
| 163 | |||
| 164 | /** |
||
| 165 | * Code officiel commune. |
||
| 166 | * |
||
| 167 | * @var string|null |
||
| 168 | */ |
||
| 169 | private $codeOfficielCommune; |
||
| 170 | |||
| 171 | /** |
||
| 172 | * Code postal. |
||
| 173 | * |
||
| 174 | * @var string|null |
||
| 175 | */ |
||
| 176 | private $codePostal; |
||
| 177 | |||
| 178 | /** |
||
| 179 | * Complement. |
||
| 180 | * |
||
| 181 | * @var string|null |
||
| 182 | */ |
||
| 183 | private $complement; |
||
| 184 | |||
| 185 | /** |
||
| 186 | * Copie backup. |
||
| 187 | * |
||
| 188 | * @var string|null |
||
| 189 | */ |
||
| 190 | private $copieBackup; |
||
| 191 | |||
| 192 | /** |
||
| 193 | * Cpt deb suivi classe0. |
||
| 194 | * |
||
| 195 | * @var string|null |
||
| 196 | */ |
||
| 197 | private $cptDebSuiviClasse0; |
||
| 198 | |||
| 199 | /** |
||
| 200 | * Cpt deb suivi classe1. |
||
| 201 | * |
||
| 202 | * @var string|null |
||
| 203 | */ |
||
| 204 | private $cptDebSuiviClasse1; |
||
| 205 | |||
| 206 | /** |
||
| 207 | * Cpt deb suivi classe2. |
||
| 208 | * |
||
| 209 | * @var string|null |
||
| 210 | */ |
||
| 211 | private $cptDebSuiviClasse2; |
||
| 212 | |||
| 213 | /** |
||
| 214 | * Cpt deb suivi classe3. |
||
| 215 | * |
||
| 216 | * @var string|null |
||
| 217 | */ |
||
| 218 | private $cptDebSuiviClasse3; |
||
| 219 | |||
| 220 | /** |
||
| 221 | * Cpt deb suivi classe4. |
||
| 222 | * |
||
| 223 | * @var string|null |
||
| 224 | */ |
||
| 225 | private $cptDebSuiviClasse4; |
||
| 226 | |||
| 227 | /** |
||
| 228 | * Cpt deb suivi classe5. |
||
| 229 | * |
||
| 230 | * @var string|null |
||
| 231 | */ |
||
| 232 | private $cptDebSuiviClasse5; |
||
| 233 | |||
| 234 | /** |
||
| 235 | * Cpt deb suivi classe8. |
||
| 236 | * |
||
| 237 | * @var string|null |
||
| 238 | */ |
||
| 239 | private $cptDebSuiviClasse8; |
||
| 240 | |||
| 241 | /** |
||
| 242 | * Cpt deb suivi classe9. |
||
| 243 | * |
||
| 244 | * @var string|null |
||
| 245 | */ |
||
| 246 | private $cptDebSuiviClasse9; |
||
| 247 | |||
| 248 | /** |
||
| 249 | * Cpt fin suivi classe0. |
||
| 250 | * |
||
| 251 | * @var string|null |
||
| 252 | */ |
||
| 253 | private $cptFinSuiviClasse0; |
||
| 254 | |||
| 255 | /** |
||
| 256 | * Cpt fin suivi classe1. |
||
| 257 | * |
||
| 258 | * @var string|null |
||
| 259 | */ |
||
| 260 | private $cptFinSuiviClasse1; |
||
| 261 | |||
| 262 | /** |
||
| 263 | * Cpt fin suivi classe2. |
||
| 264 | * |
||
| 265 | * @var string|null |
||
| 266 | */ |
||
| 267 | private $cptFinSuiviClasse2; |
||
| 268 | |||
| 269 | /** |
||
| 270 | * Cpt fin suivi classe3. |
||
| 271 | * |
||
| 272 | * @var string|null |
||
| 273 | */ |
||
| 274 | private $cptFinSuiviClasse3; |
||
| 275 | |||
| 276 | /** |
||
| 277 | * Cpt fin suivi classe4. |
||
| 278 | * |
||
| 279 | * @var string|null |
||
| 280 | */ |
||
| 281 | private $cptFinSuiviClasse4; |
||
| 282 | |||
| 283 | /** |
||
| 284 | * Cpt fin suivi classe5. |
||
| 285 | * |
||
| 286 | * @var string|null |
||
| 287 | */ |
||
| 288 | private $cptFinSuiviClasse5; |
||
| 289 | |||
| 290 | /** |
||
| 291 | * Cpt fin suivi classe8. |
||
| 292 | * |
||
| 293 | * @var string|null |
||
| 294 | */ |
||
| 295 | private $cptFinSuiviClasse8; |
||
| 296 | |||
| 297 | /** |
||
| 298 | * Cpt fin suivi classe9. |
||
| 299 | * |
||
| 300 | * @var string|null |
||
| 301 | */ |
||
| 302 | private $cptFinSuiviClasse9; |
||
| 303 | |||
| 304 | /** |
||
| 305 | * Createur dossier. |
||
| 306 | * |
||
| 307 | * @var string|null |
||
| 308 | */ |
||
| 309 | private $createurDossier; |
||
| 310 | |||
| 311 | /** |
||
| 312 | * Dlu. |
||
| 313 | * |
||
| 314 | * @var string|null |
||
| 315 | */ |
||
| 316 | private $dlu; |
||
| 317 | |||
| 318 | /** |
||
| 319 | * Date limite saisie. |
||
| 320 | * |
||
| 321 | * @var DateTime|null |
||
| 322 | */ |
||
| 323 | private $dateLimiteSaisie; |
||
| 324 | |||
| 325 | /** |
||
| 326 | * Date sys changt ex. |
||
| 327 | * |
||
| 328 | * @var DateTime|null |
||
| 329 | */ |
||
| 330 | private $dateSysChangtEx; |
||
| 331 | |||
| 332 | /** |
||
| 333 | * Date sys cloture periode. |
||
| 334 | * |
||
| 335 | * @var DateTime|null |
||
| 336 | */ |
||
| 337 | private $dateSysCloturePeriode; |
||
| 338 | |||
| 339 | /** |
||
| 340 | * Date sys creation. |
||
| 341 | * |
||
| 342 | * @var DateTime|null |
||
| 343 | */ |
||
| 344 | private $dateSysCreation; |
||
| 345 | |||
| 346 | /** |
||
| 347 | * Date travail. |
||
| 348 | * |
||
| 349 | * @var DateTime|null |
||
| 350 | */ |
||
| 351 | private $dateTravail; |
||
| 352 | |||
| 353 | /** |
||
| 354 | * Debut exercice. |
||
| 355 | * |
||
| 356 | * @var DateTime|null |
||
| 357 | */ |
||
| 358 | private $debutExercice; |
||
| 359 | |||
| 360 | /** |
||
| 361 | * Debut exercice1. |
||
| 362 | * |
||
| 363 | * @var DateTime|null |
||
| 364 | */ |
||
| 365 | private $debutExercice1; |
||
| 366 | |||
| 367 | /** |
||
| 368 | * Delai limite saisie. |
||
| 369 | * |
||
| 370 | * @var int|null |
||
| 371 | */ |
||
| 372 | private $delaiLimiteSaisie; |
||
| 373 | |||
| 374 | /** |
||
| 375 | * Droit creation type cpt1. |
||
| 376 | * |
||
| 377 | * @var string|null |
||
| 378 | */ |
||
| 379 | private $droitCreationTypeCpt1; |
||
| 380 | |||
| 381 | /** |
||
| 382 | * Droit creation type cpt10. |
||
| 383 | * |
||
| 384 | * @var string|null |
||
| 385 | */ |
||
| 386 | private $droitCreationTypeCpt10; |
||
| 387 | |||
| 388 | /** |
||
| 389 | * Droit creation type cpt2. |
||
| 390 | * |
||
| 391 | * @var string|null |
||
| 392 | */ |
||
| 393 | private $droitCreationTypeCpt2; |
||
| 394 | |||
| 395 | /** |
||
| 396 | * Droit creation type cpt3. |
||
| 397 | * |
||
| 398 | * @var string|null |
||
| 399 | */ |
||
| 400 | private $droitCreationTypeCpt3; |
||
| 401 | |||
| 402 | /** |
||
| 403 | * Droit creation type cpt4. |
||
| 404 | * |
||
| 405 | * @var string|null |
||
| 406 | */ |
||
| 407 | private $droitCreationTypeCpt4; |
||
| 408 | |||
| 409 | /** |
||
| 410 | * Droit creation type cpt5. |
||
| 411 | * |
||
| 412 | * @var string|null |
||
| 413 | */ |
||
| 414 | private $droitCreationTypeCpt5; |
||
| 415 | |||
| 416 | /** |
||
| 417 | * Droit creation type cpt6. |
||
| 418 | * |
||
| 419 | * @var string|null |
||
| 420 | */ |
||
| 421 | private $droitCreationTypeCpt6; |
||
| 422 | |||
| 423 | /** |
||
| 424 | * Droit creation type cpt7. |
||
| 425 | * |
||
| 426 | * @var string|null |
||
| 427 | */ |
||
| 428 | private $droitCreationTypeCpt7; |
||
| 429 | |||
| 430 | /** |
||
| 431 | * Droit creation type cpt8. |
||
| 432 | * |
||
| 433 | * @var string|null |
||
| 434 | */ |
||
| 435 | private $droitCreationTypeCpt8; |
||
| 436 | |||
| 437 | /** |
||
| 438 | * Droit creation type cpt9. |
||
| 439 | * |
||
| 440 | * @var string|null |
||
| 441 | */ |
||
| 442 | private $droitCreationTypeCpt9; |
||
| 443 | |||
| 444 | /** |
||
| 445 | * Duree exercice. |
||
| 446 | * |
||
| 447 | * @var string|null |
||
| 448 | */ |
||
| 449 | private $dureeExercice; |
||
| 450 | |||
| 451 | /** |
||
| 452 | * Duree exercice1. |
||
| 453 | * |
||
| 454 | * @var string|null |
||
| 455 | */ |
||
| 456 | private $dureeExercice1; |
||
| 457 | |||
| 458 | /** |
||
| 459 | * Edit date systeme. |
||
| 460 | * |
||
| 461 | * @var bool|null |
||
| 462 | */ |
||
| 463 | private $editDateSysteme; |
||
| 464 | |||
| 465 | /** |
||
| 466 | * Edit page garde. |
||
| 467 | * |
||
| 468 | * @var bool|null |
||
| 469 | */ |
||
| 470 | private $editPageGarde; |
||
| 471 | |||
| 472 | /** |
||
| 473 | * Enseigne. |
||
| 474 | * |
||
| 475 | * @var string|null |
||
| 476 | */ |
||
| 477 | private $enseigne; |
||
| 478 | |||
| 479 | /** |
||
| 480 | * Euro ou franc. |
||
| 481 | * |
||
| 482 | * @var string|null |
||
| 483 | */ |
||
| 484 | private $euroOuFranc; |
||
| 485 | |||
| 486 | /** |
||
| 487 | * Famille1. |
||
| 488 | * |
||
| 489 | * @var string|null |
||
| 490 | */ |
||
| 491 | private $famille1; |
||
| 492 | |||
| 493 | /** |
||
| 494 | * Famille10. |
||
| 495 | * |
||
| 496 | * @var string|null |
||
| 497 | */ |
||
| 498 | private $famille10; |
||
| 499 | |||
| 500 | /** |
||
| 501 | * Famille2. |
||
| 502 | * |
||
| 503 | * @var string|null |
||
| 504 | */ |
||
| 505 | private $famille2; |
||
| 506 | |||
| 507 | /** |
||
| 508 | * Famille3. |
||
| 509 | * |
||
| 510 | * @var string|null |
||
| 511 | */ |
||
| 512 | private $famille3; |
||
| 513 | |||
| 514 | /** |
||
| 515 | * Famille4. |
||
| 516 | * |
||
| 517 | * @var string|null |
||
| 518 | */ |
||
| 519 | private $famille4; |
||
| 520 | |||
| 521 | /** |
||
| 522 | * Famille5. |
||
| 523 | * |
||
| 524 | * @var string|null |
||
| 525 | */ |
||
| 526 | private $famille5; |
||
| 527 | |||
| 528 | /** |
||
| 529 | * Famille6. |
||
| 530 | * |
||
| 531 | * @var string|null |
||
| 532 | */ |
||
| 533 | private $famille6; |
||
| 534 | |||
| 535 | /** |
||
| 536 | * Famille7. |
||
| 537 | * |
||
| 538 | * @var string|null |
||
| 539 | */ |
||
| 540 | private $famille7; |
||
| 541 | |||
| 542 | /** |
||
| 543 | * Famille8. |
||
| 544 | * |
||
| 545 | * @var string|null |
||
| 546 | */ |
||
| 547 | private $famille8; |
||
| 548 | |||
| 549 | /** |
||
| 550 | * Famille9. |
||
| 551 | * |
||
| 552 | * @var string|null |
||
| 553 | */ |
||
| 554 | private $famille9; |
||
| 555 | |||
| 556 | /** |
||
| 557 | * Famille analytique. |
||
| 558 | * |
||
| 559 | * @var string|null |
||
| 560 | */ |
||
| 561 | private $familleAnalytique; |
||
| 562 | |||
| 563 | /** |
||
| 564 | * Fin exercice. |
||
| 565 | * |
||
| 566 | * @var DateTime|null |
||
| 567 | */ |
||
| 568 | private $finExercice; |
||
| 569 | |||
| 570 | /** |
||
| 571 | * Fin exercice1. |
||
| 572 | * |
||
| 573 | * @var DateTime|null |
||
| 574 | */ |
||
| 575 | private $finExercice1; |
||
| 576 | |||
| 577 | /** |
||
| 578 | * Gestion compta eco. |
||
| 579 | * |
||
| 580 | * @var bool|null |
||
| 581 | */ |
||
| 582 | private $gestionComptaEco; |
||
| 583 | |||
| 584 | /** |
||
| 585 | * Groupe app clients. |
||
| 586 | * |
||
| 587 | * @var string|null |
||
| 588 | */ |
||
| 589 | private $groupeAppClients; |
||
| 590 | |||
| 591 | /** |
||
| 592 | * Lr active. |
||
| 593 | * |
||
| 594 | * @var bool|null |
||
| 595 | */ |
||
| 596 | private $lrActive; |
||
| 597 | |||
| 598 | /** |
||
| 599 | * Lr periode. |
||
| 600 | * |
||
| 601 | * @var DateTime|null |
||
| 602 | */ |
||
| 603 | private $lrPeriode; |
||
| 604 | |||
| 605 | /** |
||
| 606 | * Module agr actif. |
||
| 607 | * |
||
| 608 | * @var bool|null |
||
| 609 | */ |
||
| 610 | private $moduleAgrActif; |
||
| 611 | |||
| 612 | /** |
||
| 613 | * Multi dossiers. |
||
| 614 | * |
||
| 615 | * @var bool|null |
||
| 616 | */ |
||
| 617 | private $multiDossiers; |
||
| 618 | |||
| 619 | /** |
||
| 620 | * Nature menu1. |
||
| 621 | * |
||
| 622 | * @var string|null |
||
| 623 | */ |
||
| 624 | private $natureMenu1; |
||
| 625 | |||
| 626 | /** |
||
| 627 | * Nature menu10. |
||
| 628 | * |
||
| 629 | * @var string|null |
||
| 630 | */ |
||
| 631 | private $natureMenu10; |
||
| 632 | |||
| 633 | /** |
||
| 634 | * Nature menu2. |
||
| 635 | * |
||
| 636 | * @var string|null |
||
| 637 | */ |
||
| 638 | private $natureMenu2; |
||
| 639 | |||
| 640 | /** |
||
| 641 | * Nature menu3. |
||
| 642 | * |
||
| 643 | * @var string|null |
||
| 644 | */ |
||
| 645 | private $natureMenu3; |
||
| 646 | |||
| 647 | /** |
||
| 648 | * Nature menu4. |
||
| 649 | * |
||
| 650 | * @var string|null |
||
| 651 | */ |
||
| 652 | private $natureMenu4; |
||
| 653 | |||
| 654 | /** |
||
| 655 | * Nature menu5. |
||
| 656 | * |
||
| 657 | * @var string|null |
||
| 658 | */ |
||
| 659 | private $natureMenu5; |
||
| 660 | |||
| 661 | /** |
||
| 662 | * Nature menu6. |
||
| 663 | * |
||
| 664 | * @var string|null |
||
| 665 | */ |
||
| 666 | private $natureMenu6; |
||
| 667 | |||
| 668 | /** |
||
| 669 | * Nature menu7. |
||
| 670 | * |
||
| 671 | * @var string|null |
||
| 672 | */ |
||
| 673 | private $natureMenu7; |
||
| 674 | |||
| 675 | /** |
||
| 676 | * Nature menu8. |
||
| 677 | * |
||
| 678 | * @var string|null |
||
| 679 | */ |
||
| 680 | private $natureMenu8; |
||
| 681 | |||
| 682 | /** |
||
| 683 | * Nature menu9. |
||
| 684 | * |
||
| 685 | * @var string|null |
||
| 686 | */ |
||
| 687 | private $natureMenu9; |
||
| 688 | |||
| 689 | /** |
||
| 690 | * Nature regle1. |
||
| 691 | * |
||
| 692 | * @var string|null |
||
| 693 | */ |
||
| 694 | private $natureRegle1; |
||
| 695 | |||
| 696 | /** |
||
| 697 | * Nature regle10. |
||
| 698 | * |
||
| 699 | * @var string|null |
||
| 700 | */ |
||
| 701 | private $natureRegle10; |
||
| 702 | |||
| 703 | /** |
||
| 704 | * Nature regle2. |
||
| 705 | * |
||
| 706 | * @var string|null |
||
| 707 | */ |
||
| 708 | private $natureRegle2; |
||
| 709 | |||
| 710 | /** |
||
| 711 | * Nature regle3. |
||
| 712 | * |
||
| 713 | * @var string|null |
||
| 714 | */ |
||
| 715 | private $natureRegle3; |
||
| 716 | |||
| 717 | /** |
||
| 718 | * Nature regle4. |
||
| 719 | * |
||
| 720 | * @var string|null |
||
| 721 | */ |
||
| 722 | private $natureRegle4; |
||
| 723 | |||
| 724 | /** |
||
| 725 | * Nature regle5. |
||
| 726 | * |
||
| 727 | * @var string|null |
||
| 728 | */ |
||
| 729 | private $natureRegle5; |
||
| 730 | |||
| 731 | /** |
||
| 732 | * Nature regle6. |
||
| 733 | * |
||
| 734 | * @var string|null |
||
| 735 | */ |
||
| 736 | private $natureRegle6; |
||
| 737 | |||
| 738 | /** |
||
| 739 | * Nature regle7. |
||
| 740 | * |
||
| 741 | * @var string|null |
||
| 742 | */ |
||
| 743 | private $natureRegle7; |
||
| 744 | |||
| 745 | /** |
||
| 746 | * Nature regle8. |
||
| 747 | * |
||
| 748 | * @var string|null |
||
| 749 | */ |
||
| 750 | private $natureRegle8; |
||
| 751 | |||
| 752 | /** |
||
| 753 | * Nature regle9. |
||
| 754 | * |
||
| 755 | * @var string|null |
||
| 756 | */ |
||
| 757 | private $natureRegle9; |
||
| 758 | |||
| 759 | /** |
||
| 760 | * Niveau analytique. |
||
| 761 | * |
||
| 762 | * @var int|null |
||
| 763 | */ |
||
| 764 | private $niveauAnalytique; |
||
| 765 | |||
| 766 | /** |
||
| 767 | * Niveau droit1. |
||
| 768 | * |
||
| 769 | * @var string|null |
||
| 770 | */ |
||
| 771 | private $niveauDroit1; |
||
| 772 | |||
| 773 | /** |
||
| 774 | * Niveau droit10. |
||
| 775 | * |
||
| 776 | * @var string|null |
||
| 777 | */ |
||
| 778 | private $niveauDroit10; |
||
| 779 | |||
| 780 | /** |
||
| 781 | * Niveau droit2. |
||
| 782 | * |
||
| 783 | * @var string|null |
||
| 784 | */ |
||
| 785 | private $niveauDroit2; |
||
| 786 | |||
| 787 | /** |
||
| 788 | * Niveau droit3. |
||
| 789 | * |
||
| 790 | * @var string|null |
||
| 791 | */ |
||
| 792 | private $niveauDroit3; |
||
| 793 | |||
| 794 | /** |
||
| 795 | * Niveau droit4. |
||
| 796 | * |
||
| 797 | * @var string|null |
||
| 798 | */ |
||
| 799 | private $niveauDroit4; |
||
| 800 | |||
| 801 | /** |
||
| 802 | * Niveau droit5. |
||
| 803 | * |
||
| 804 | * @var string|null |
||
| 805 | */ |
||
| 806 | private $niveauDroit5; |
||
| 807 | |||
| 808 | /** |
||
| 809 | * Niveau droit6. |
||
| 810 | * |
||
| 811 | * @var string|null |
||
| 812 | */ |
||
| 813 | private $niveauDroit6; |
||
| 814 | |||
| 815 | /** |
||
| 816 | * Niveau droit7. |
||
| 817 | * |
||
| 818 | * @var string|null |
||
| 819 | */ |
||
| 820 | private $niveauDroit7; |
||
| 821 | |||
| 822 | /** |
||
| 823 | * Niveau droit8. |
||
| 824 | * |
||
| 825 | * @var string|null |
||
| 826 | */ |
||
| 827 | private $niveauDroit8; |
||
| 828 | |||
| 829 | /** |
||
| 830 | * Niveau droit9. |
||
| 831 | * |
||
| 832 | * @var string|null |
||
| 833 | */ |
||
| 834 | private $niveauDroit9; |
||
| 835 | |||
| 836 | /** |
||
| 837 | * Nom ville. |
||
| 838 | * |
||
| 839 | * @var string|null |
||
| 840 | */ |
||
| 841 | private $nomVille; |
||
| 842 | |||
| 843 | /** |
||
| 844 | * Nom voie. |
||
| 845 | * |
||
| 846 | * @var string|null |
||
| 847 | */ |
||
| 848 | private $nomVoie; |
||
| 849 | |||
| 850 | /** |
||
| 851 | * Num voie. |
||
| 852 | * |
||
| 853 | * @var string|null |
||
| 854 | */ |
||
| 855 | private $numVoie; |
||
| 856 | |||
| 857 | /** |
||
| 858 | * Pas ecriture rb. |
||
| 859 | * |
||
| 860 | * @var bool|null |
||
| 861 | */ |
||
| 862 | private $pasEcritureRb; |
||
| 863 | |||
| 864 | /** |
||
| 865 | * Pas modif rib regl. |
||
| 866 | * |
||
| 867 | * @var bool|null |
||
| 868 | */ |
||
| 869 | private $pasModifRibRegl; |
||
| 870 | |||
| 871 | /** |
||
| 872 | * Periode cloturee. |
||
| 873 | * |
||
| 874 | * @var DateTime|null |
||
| 875 | */ |
||
| 876 | private $periodeCloturee; |
||
| 877 | |||
| 878 | /** |
||
| 879 | * Periode validee. |
||
| 880 | * |
||
| 881 | * @var DateTime|null |
||
| 882 | */ |
||
| 883 | private $periodeValidee; |
||
| 884 | |||
| 885 | /** |
||
| 886 | * Prochain num piece. |
||
| 887 | * |
||
| 888 | * @var int|null |
||
| 889 | */ |
||
| 890 | private $prochainNumPiece; |
||
| 891 | |||
| 892 | /** |
||
| 893 | * Rc. |
||
| 894 | * |
||
| 895 | * @var string|null |
||
| 896 | */ |
||
| 897 | private $rc; |
||
| 898 | |||
| 899 | /** |
||
| 900 | * Raison sociale. |
||
| 901 | * |
||
| 902 | * @var string|null |
||
| 903 | */ |
||
| 904 | private $raisonSociale; |
||
| 905 | |||
| 906 | /** |
||
| 907 | * Saisie immo en ecriture. |
||
| 908 | * |
||
| 909 | * @var bool|null |
||
| 910 | */ |
||
| 911 | private $saisieImmoEnEcriture; |
||
| 912 | |||
| 913 | /** |
||
| 914 | * Sauve commun. |
||
| 915 | * |
||
| 916 | * @var bool|null |
||
| 917 | */ |
||
| 918 | private $sauveCommun; |
||
| 919 | |||
| 920 | /** |
||
| 921 | * Sauve compresse. |
||
| 922 | * |
||
| 923 | * @var bool|null |
||
| 924 | */ |
||
| 925 | private $sauveCompresse; |
||
| 926 | |||
| 927 | /** |
||
| 928 | * Siret. |
||
| 929 | * |
||
| 930 | * @var string|null |
||
| 931 | */ |
||
| 932 | private $siret; |
||
| 933 | |||
| 934 | /** |
||
| 935 | * Suivi aff tout. |
||
| 936 | * |
||
| 937 | * @var bool|null |
||
| 938 | */ |
||
| 939 | private $suiviAffTout; |
||
| 940 | |||
| 941 | /** |
||
| 942 | * Suivi ana2. |
||
| 943 | * |
||
| 944 | * @var string|null |
||
| 945 | */ |
||
| 946 | private $suiviAna2; |
||
| 947 | |||
| 948 | /** |
||
| 949 | * Suivi ana classe0. |
||
| 950 | * |
||
| 951 | * @var bool|null |
||
| 952 | */ |
||
| 953 | private $suiviAnaClasse0; |
||
| 954 | |||
| 955 | /** |
||
| 956 | * Suivi ana classe1. |
||
| 957 | * |
||
| 958 | * @var bool|null |
||
| 959 | */ |
||
| 960 | private $suiviAnaClasse1; |
||
| 961 | |||
| 962 | /** |
||
| 963 | * Suivi ana classe2. |
||
| 964 | * |
||
| 965 | * @var bool|null |
||
| 966 | */ |
||
| 967 | private $suiviAnaClasse2; |
||
| 968 | |||
| 969 | /** |
||
| 970 | * Suivi ana classe3. |
||
| 971 | * |
||
| 972 | * @var bool|null |
||
| 973 | */ |
||
| 974 | private $suiviAnaClasse3; |
||
| 975 | |||
| 976 | /** |
||
| 977 | * Suivi ana classe4. |
||
| 978 | * |
||
| 979 | * @var bool|null |
||
| 980 | */ |
||
| 981 | private $suiviAnaClasse4; |
||
| 982 | |||
| 983 | /** |
||
| 984 | * Suivi ana classe5. |
||
| 985 | * |
||
| 986 | * @var bool|null |
||
| 987 | */ |
||
| 988 | private $suiviAnaClasse5; |
||
| 989 | |||
| 990 | /** |
||
| 991 | * Suivi ana classe8. |
||
| 992 | * |
||
| 993 | * @var bool|null |
||
| 994 | */ |
||
| 995 | private $suiviAnaClasse8; |
||
| 996 | |||
| 997 | /** |
||
| 998 | * Suivi ana classe9. |
||
| 999 | * |
||
| 1000 | * @var bool|null |
||
| 1001 | */ |
||
| 1002 | private $suiviAnaClasse9; |
||
| 1003 | |||
| 1004 | /** |
||
| 1005 | * Suivi ana facultatif. |
||
| 1006 | * |
||
| 1007 | * @var bool|null |
||
| 1008 | */ |
||
| 1009 | private $suiviAnaFacultatif; |
||
| 1010 | |||
| 1011 | /** |
||
| 1012 | * Tva cle. |
||
| 1013 | * |
||
| 1014 | * @var string|null |
||
| 1015 | */ |
||
| 1016 | private $tvaCle; |
||
| 1017 | |||
| 1018 | /** |
||
| 1019 | * Tva code dossier. |
||
| 1020 | * |
||
| 1021 | * @var string|null |
||
| 1022 | */ |
||
| 1023 | private $tvaCodeDossier; |
||
| 1024 | |||
| 1025 | /** |
||
| 1026 | * Tva code recette. |
||
| 1027 | * |
||
| 1028 | * @var string|null |
||
| 1029 | */ |
||
| 1030 | private $tvaCodeRecette; |
||
| 1031 | |||
| 1032 | /** |
||
| 1033 | * Ventilations communes. |
||
| 1034 | * |
||
| 1035 | * @var bool|null |
||
| 1036 | */ |
||
| 1037 | private $ventilationsCommunes; |
||
| 1038 | |||
| 1039 | |||
| 1040 | /** |
||
| 1041 | * Constructor. |
||
| 1042 | */ |
||
| 1043 | public function __construct() { |
||
| 1046 | |||
| 1047 | /** |
||
| 1048 | * Get the btq. |
||
| 1049 | * |
||
| 1050 | * @return string|null Returns the btq. |
||
| 1051 | */ |
||
| 1052 | public function getBtq(): ?string{ |
||
| 1055 | |||
| 1056 | /** |
||
| 1057 | * Get the bureau distributeur. |
||
| 1058 | * |
||
| 1059 | * @return string|null Returns the bureau distributeur. |
||
| 1060 | */ |
||
| 1061 | public function getBureauDistributeur(): ?string{ |
||
| 1064 | |||
| 1065 | /** |
||
| 1066 | * Get the calcul ana fait. |
||
| 1067 | * |
||
| 1068 | * @return bool|null Returns the calcul ana fait. |
||
| 1069 | */ |
||
| 1070 | public function getCalculAnaFait(): ?bool{ |
||
| 1073 | |||
| 1074 | /** |
||
| 1075 | * Get the chemin implantation ascii. |
||
| 1076 | * |
||
| 1077 | * @return string|null Returns the chemin implantation ascii. |
||
| 1078 | */ |
||
| 1079 | public function getCheminImplantationAscii(): ?string{ |
||
| 1082 | |||
| 1083 | /** |
||
| 1084 | * Get the civilite. |
||
| 1085 | * |
||
| 1086 | * @return string|null Returns the civilite. |
||
| 1087 | */ |
||
| 1088 | public function getCivilite(): ?string{ |
||
| 1091 | |||
| 1092 | /** |
||
| 1093 | * Get the cle acces1. |
||
| 1094 | * |
||
| 1095 | * @return string|null Returns the cle acces1. |
||
| 1096 | */ |
||
| 1097 | public function getCleAcces1(): ?string{ |
||
| 1100 | |||
| 1101 | /** |
||
| 1102 | * Get the cle acces10. |
||
| 1103 | * |
||
| 1104 | * @return string|null Returns the cle acces10. |
||
| 1105 | */ |
||
| 1106 | public function getCleAcces10(): ?string{ |
||
| 1109 | |||
| 1110 | /** |
||
| 1111 | * Get the cle acces2. |
||
| 1112 | * |
||
| 1113 | * @return string|null Returns the cle acces2. |
||
| 1114 | */ |
||
| 1115 | public function getCleAcces2(): ?string{ |
||
| 1118 | |||
| 1119 | /** |
||
| 1120 | * Get the cle acces3. |
||
| 1121 | * |
||
| 1122 | * @return string|null Returns the cle acces3. |
||
| 1123 | */ |
||
| 1124 | public function getCleAcces3(): ?string{ |
||
| 1127 | |||
| 1128 | /** |
||
| 1129 | * Get the cle acces4. |
||
| 1130 | * |
||
| 1131 | * @return string|null Returns the cle acces4. |
||
| 1132 | */ |
||
| 1133 | public function getCleAcces4(): ?string{ |
||
| 1136 | |||
| 1137 | /** |
||
| 1138 | * Get the cle acces5. |
||
| 1139 | * |
||
| 1140 | * @return string|null Returns the cle acces5. |
||
| 1141 | */ |
||
| 1142 | public function getCleAcces5(): ?string{ |
||
| 1145 | |||
| 1146 | /** |
||
| 1147 | * Get the cle acces6. |
||
| 1148 | * |
||
| 1149 | * @return string|null Returns the cle acces6. |
||
| 1150 | */ |
||
| 1151 | public function getCleAcces6(): ?string{ |
||
| 1154 | |||
| 1155 | /** |
||
| 1156 | * Get the cle acces7. |
||
| 1157 | * |
||
| 1158 | * @return string|null Returns the cle acces7. |
||
| 1159 | */ |
||
| 1160 | public function getCleAcces7(): ?string{ |
||
| 1163 | |||
| 1164 | /** |
||
| 1165 | * Get the cle acces8. |
||
| 1166 | * |
||
| 1167 | * @return string|null Returns the cle acces8. |
||
| 1168 | */ |
||
| 1169 | public function getCleAcces8(): ?string{ |
||
| 1172 | |||
| 1173 | /** |
||
| 1174 | * Get the cle acces9. |
||
| 1175 | * |
||
| 1176 | * @return string|null Returns the cle acces9. |
||
| 1177 | */ |
||
| 1178 | public function getCleAcces9(): ?string{ |
||
| 1181 | |||
| 1182 | /** |
||
| 1183 | * Get the cle deblocage journaux. |
||
| 1184 | * |
||
| 1185 | * @return string|null Returns the cle deblocage journaux. |
||
| 1186 | */ |
||
| 1187 | public function getCleDeblocageJournaux(): ?string{ |
||
| 1190 | |||
| 1191 | /** |
||
| 1192 | * Get the cle portable. |
||
| 1193 | * |
||
| 1194 | * @return string|null Returns the cle portable. |
||
| 1195 | */ |
||
| 1196 | public function getClePortable(): ?string{ |
||
| 1199 | |||
| 1200 | /** |
||
| 1201 | * Get the code equipe. |
||
| 1202 | * |
||
| 1203 | * @return string|null Returns the code equipe. |
||
| 1204 | */ |
||
| 1205 | public function getCodeEquipe(): ?string{ |
||
| 1208 | |||
| 1209 | /** |
||
| 1210 | * Get the code naf. |
||
| 1211 | * |
||
| 1212 | * @return string|null Returns the code naf. |
||
| 1213 | */ |
||
| 1214 | public function getCodeNaf(): ?string{ |
||
| 1217 | |||
| 1218 | /** |
||
| 1219 | * Get the code naf2008. |
||
| 1220 | * |
||
| 1221 | * @return string|null Returns the code naf2008. |
||
| 1222 | */ |
||
| 1223 | public function getCodeNaf2008(): ?string{ |
||
| 1226 | |||
| 1227 | /** |
||
| 1228 | * Get the code officiel commune. |
||
| 1229 | * |
||
| 1230 | * @return string|null Returns the code officiel commune. |
||
| 1231 | */ |
||
| 1232 | public function getCodeOfficielCommune(): ?string{ |
||
| 1235 | |||
| 1236 | /** |
||
| 1237 | * Get the code postal. |
||
| 1238 | * |
||
| 1239 | * @return string|null Returns the code postal. |
||
| 1240 | */ |
||
| 1241 | public function getCodePostal(): ?string{ |
||
| 1244 | |||
| 1245 | /** |
||
| 1246 | * Get the complement. |
||
| 1247 | * |
||
| 1248 | * @return string|null Returns the complement. |
||
| 1249 | */ |
||
| 1250 | public function getComplement(): ?string{ |
||
| 1253 | |||
| 1254 | /** |
||
| 1255 | * Get the copie backup. |
||
| 1256 | * |
||
| 1257 | * @return string|null Returns the copie backup. |
||
| 1258 | */ |
||
| 1259 | public function getCopieBackup(): ?string{ |
||
| 1262 | |||
| 1263 | /** |
||
| 1264 | * Get the cpt deb suivi classe0. |
||
| 1265 | * |
||
| 1266 | * @return string|null Returns the cpt deb suivi classe0. |
||
| 1267 | */ |
||
| 1268 | public function getCptDebSuiviClasse0(): ?string{ |
||
| 1271 | |||
| 1272 | /** |
||
| 1273 | * Get the cpt deb suivi classe1. |
||
| 1274 | * |
||
| 1275 | * @return string|null Returns the cpt deb suivi classe1. |
||
| 1276 | */ |
||
| 1277 | public function getCptDebSuiviClasse1(): ?string{ |
||
| 1280 | |||
| 1281 | /** |
||
| 1282 | * Get the cpt deb suivi classe2. |
||
| 1283 | * |
||
| 1284 | * @return string|null Returns the cpt deb suivi classe2. |
||
| 1285 | */ |
||
| 1286 | public function getCptDebSuiviClasse2(): ?string{ |
||
| 1289 | |||
| 1290 | /** |
||
| 1291 | * Get the cpt deb suivi classe3. |
||
| 1292 | * |
||
| 1293 | * @return string|null Returns the cpt deb suivi classe3. |
||
| 1294 | */ |
||
| 1295 | public function getCptDebSuiviClasse3(): ?string{ |
||
| 1298 | |||
| 1299 | /** |
||
| 1300 | * Get the cpt deb suivi classe4. |
||
| 1301 | * |
||
| 1302 | * @return string|null Returns the cpt deb suivi classe4. |
||
| 1303 | */ |
||
| 1304 | public function getCptDebSuiviClasse4(): ?string{ |
||
| 1307 | |||
| 1308 | /** |
||
| 1309 | * Get the cpt deb suivi classe5. |
||
| 1310 | * |
||
| 1311 | * @return string|null Returns the cpt deb suivi classe5. |
||
| 1312 | */ |
||
| 1313 | public function getCptDebSuiviClasse5(): ?string{ |
||
| 1316 | |||
| 1317 | /** |
||
| 1318 | * Get the cpt deb suivi classe8. |
||
| 1319 | * |
||
| 1320 | * @return string|null Returns the cpt deb suivi classe8. |
||
| 1321 | */ |
||
| 1322 | public function getCptDebSuiviClasse8(): ?string{ |
||
| 1325 | |||
| 1326 | /** |
||
| 1327 | * Get the cpt deb suivi classe9. |
||
| 1328 | * |
||
| 1329 | * @return string|null Returns the cpt deb suivi classe9. |
||
| 1330 | */ |
||
| 1331 | public function getCptDebSuiviClasse9(): ?string{ |
||
| 1334 | |||
| 1335 | /** |
||
| 1336 | * Get the cpt fin suivi classe0. |
||
| 1337 | * |
||
| 1338 | * @return string|null Returns the cpt fin suivi classe0. |
||
| 1339 | */ |
||
| 1340 | public function getCptFinSuiviClasse0(): ?string{ |
||
| 1343 | |||
| 1344 | /** |
||
| 1345 | * Get the cpt fin suivi classe1. |
||
| 1346 | * |
||
| 1347 | * @return string|null Returns the cpt fin suivi classe1. |
||
| 1348 | */ |
||
| 1349 | public function getCptFinSuiviClasse1(): ?string{ |
||
| 1352 | |||
| 1353 | /** |
||
| 1354 | * Get the cpt fin suivi classe2. |
||
| 1355 | * |
||
| 1356 | * @return string|null Returns the cpt fin suivi classe2. |
||
| 1357 | */ |
||
| 1358 | public function getCptFinSuiviClasse2(): ?string{ |
||
| 1361 | |||
| 1362 | /** |
||
| 1363 | * Get the cpt fin suivi classe3. |
||
| 1364 | * |
||
| 1365 | * @return string|null Returns the cpt fin suivi classe3. |
||
| 1366 | */ |
||
| 1367 | public function getCptFinSuiviClasse3(): ?string{ |
||
| 1370 | |||
| 1371 | /** |
||
| 1372 | * Get the cpt fin suivi classe4. |
||
| 1373 | * |
||
| 1374 | * @return string|null Returns the cpt fin suivi classe4. |
||
| 1375 | */ |
||
| 1376 | public function getCptFinSuiviClasse4(): ?string{ |
||
| 1379 | |||
| 1380 | /** |
||
| 1381 | * Get the cpt fin suivi classe5. |
||
| 1382 | * |
||
| 1383 | * @return string|null Returns the cpt fin suivi classe5. |
||
| 1384 | */ |
||
| 1385 | public function getCptFinSuiviClasse5(): ?string{ |
||
| 1388 | |||
| 1389 | /** |
||
| 1390 | * Get the cpt fin suivi classe8. |
||
| 1391 | * |
||
| 1392 | * @return string|null Returns the cpt fin suivi classe8. |
||
| 1393 | */ |
||
| 1394 | public function getCptFinSuiviClasse8(): ?string{ |
||
| 1397 | |||
| 1398 | /** |
||
| 1399 | * Get the cpt fin suivi classe9. |
||
| 1400 | * |
||
| 1401 | * @return string|null Returns the cpt fin suivi classe9. |
||
| 1402 | */ |
||
| 1403 | public function getCptFinSuiviClasse9(): ?string{ |
||
| 1406 | |||
| 1407 | /** |
||
| 1408 | * Get the createur dossier. |
||
| 1409 | * |
||
| 1410 | * @return string|null Returns the createur dossier. |
||
| 1411 | */ |
||
| 1412 | public function getCreateurDossier(): ?string{ |
||
| 1415 | |||
| 1416 | /** |
||
| 1417 | * Get the dlu. |
||
| 1418 | * |
||
| 1419 | * @return string|null Returns the dlu. |
||
| 1420 | */ |
||
| 1421 | public function getDlu(): ?string{ |
||
| 1424 | |||
| 1425 | /** |
||
| 1426 | * Get the date limite saisie. |
||
| 1427 | * |
||
| 1428 | * @return DateTime|null Returns the date limite saisie. |
||
| 1429 | */ |
||
| 1430 | public function getDateLimiteSaisie(): ?DateTime{ |
||
| 1433 | |||
| 1434 | /** |
||
| 1435 | * Get the date sys changt ex. |
||
| 1436 | * |
||
| 1437 | * @return DateTime|null Returns the date sys changt ex. |
||
| 1438 | */ |
||
| 1439 | public function getDateSysChangtEx(): ?DateTime{ |
||
| 1442 | |||
| 1443 | /** |
||
| 1444 | * Get the date sys cloture periode. |
||
| 1445 | * |
||
| 1446 | * @return DateTime|null Returns the date sys cloture periode. |
||
| 1447 | */ |
||
| 1448 | public function getDateSysCloturePeriode(): ?DateTime{ |
||
| 1451 | |||
| 1452 | /** |
||
| 1453 | * Get the date sys creation. |
||
| 1454 | * |
||
| 1455 | * @return DateTime|null Returns the date sys creation. |
||
| 1456 | */ |
||
| 1457 | public function getDateSysCreation(): ?DateTime{ |
||
| 1460 | |||
| 1461 | /** |
||
| 1462 | * Get the date travail. |
||
| 1463 | * |
||
| 1464 | * @return DateTime|null Returns the date travail. |
||
| 1465 | */ |
||
| 1466 | public function getDateTravail(): ?DateTime{ |
||
| 1469 | |||
| 1470 | /** |
||
| 1471 | * Get the debut exercice. |
||
| 1472 | * |
||
| 1473 | * @return DateTime|null Returns the debut exercice. |
||
| 1474 | */ |
||
| 1475 | public function getDebutExercice(): ?DateTime{ |
||
| 1478 | |||
| 1479 | /** |
||
| 1480 | * Get the debut exercice1. |
||
| 1481 | * |
||
| 1482 | * @return DateTime|null Returns the debut exercice1. |
||
| 1483 | */ |
||
| 1484 | public function getDebutExercice1(): ?DateTime{ |
||
| 1487 | |||
| 1488 | /** |
||
| 1489 | * Get the delai limite saisie. |
||
| 1490 | * |
||
| 1491 | * @return int|null Returns the delai limite saisie. |
||
| 1492 | */ |
||
| 1493 | public function getDelaiLimiteSaisie(): ?int{ |
||
| 1496 | |||
| 1497 | /** |
||
| 1498 | * Get the droit creation type cpt1. |
||
| 1499 | * |
||
| 1500 | * @return string|null Returns the droit creation type cpt1. |
||
| 1501 | */ |
||
| 1502 | public function getDroitCreationTypeCpt1(): ?string{ |
||
| 1505 | |||
| 1506 | /** |
||
| 1507 | * Get the droit creation type cpt10. |
||
| 1508 | * |
||
| 1509 | * @return string|null Returns the droit creation type cpt10. |
||
| 1510 | */ |
||
| 1511 | public function getDroitCreationTypeCpt10(): ?string{ |
||
| 1514 | |||
| 1515 | /** |
||
| 1516 | * Get the droit creation type cpt2. |
||
| 1517 | * |
||
| 1518 | * @return string|null Returns the droit creation type cpt2. |
||
| 1519 | */ |
||
| 1520 | public function getDroitCreationTypeCpt2(): ?string{ |
||
| 1523 | |||
| 1524 | /** |
||
| 1525 | * Get the droit creation type cpt3. |
||
| 1526 | * |
||
| 1527 | * @return string|null Returns the droit creation type cpt3. |
||
| 1528 | */ |
||
| 1529 | public function getDroitCreationTypeCpt3(): ?string{ |
||
| 1532 | |||
| 1533 | /** |
||
| 1534 | * Get the droit creation type cpt4. |
||
| 1535 | * |
||
| 1536 | * @return string|null Returns the droit creation type cpt4. |
||
| 1537 | */ |
||
| 1538 | public function getDroitCreationTypeCpt4(): ?string{ |
||
| 1541 | |||
| 1542 | /** |
||
| 1543 | * Get the droit creation type cpt5. |
||
| 1544 | * |
||
| 1545 | * @return string|null Returns the droit creation type cpt5. |
||
| 1546 | */ |
||
| 1547 | public function getDroitCreationTypeCpt5(): ?string{ |
||
| 1550 | |||
| 1551 | /** |
||
| 1552 | * Get the droit creation type cpt6. |
||
| 1553 | * |
||
| 1554 | * @return string|null Returns the droit creation type cpt6. |
||
| 1555 | */ |
||
| 1556 | public function getDroitCreationTypeCpt6(): ?string{ |
||
| 1559 | |||
| 1560 | /** |
||
| 1561 | * Get the droit creation type cpt7. |
||
| 1562 | * |
||
| 1563 | * @return string|null Returns the droit creation type cpt7. |
||
| 1564 | */ |
||
| 1565 | public function getDroitCreationTypeCpt7(): ?string{ |
||
| 1568 | |||
| 1569 | /** |
||
| 1570 | * Get the droit creation type cpt8. |
||
| 1571 | * |
||
| 1572 | * @return string|null Returns the droit creation type cpt8. |
||
| 1573 | */ |
||
| 1574 | public function getDroitCreationTypeCpt8(): ?string{ |
||
| 1577 | |||
| 1578 | /** |
||
| 1579 | * Get the droit creation type cpt9. |
||
| 1580 | * |
||
| 1581 | * @return string|null Returns the droit creation type cpt9. |
||
| 1582 | */ |
||
| 1583 | public function getDroitCreationTypeCpt9(): ?string{ |
||
| 1586 | |||
| 1587 | /** |
||
| 1588 | * Get the duree exercice. |
||
| 1589 | * |
||
| 1590 | * @return string|null Returns the duree exercice. |
||
| 1591 | */ |
||
| 1592 | public function getDureeExercice(): ?string{ |
||
| 1595 | |||
| 1596 | /** |
||
| 1597 | * Get the duree exercice1. |
||
| 1598 | * |
||
| 1599 | * @return string|null Returns the duree exercice1. |
||
| 1600 | */ |
||
| 1601 | public function getDureeExercice1(): ?string{ |
||
| 1604 | |||
| 1605 | /** |
||
| 1606 | * Get the edit date systeme. |
||
| 1607 | * |
||
| 1608 | * @return bool|null Returns the edit date systeme. |
||
| 1609 | */ |
||
| 1610 | public function getEditDateSysteme(): ?bool{ |
||
| 1613 | |||
| 1614 | /** |
||
| 1615 | * Get the edit page garde. |
||
| 1616 | * |
||
| 1617 | * @return bool|null Returns the edit page garde. |
||
| 1618 | */ |
||
| 1619 | public function getEditPageGarde(): ?bool{ |
||
| 1622 | |||
| 1623 | /** |
||
| 1624 | * Get the enseigne. |
||
| 1625 | * |
||
| 1626 | * @return string|null Returns the enseigne. |
||
| 1627 | */ |
||
| 1628 | public function getEnseigne(): ?string{ |
||
| 1631 | |||
| 1632 | /** |
||
| 1633 | * Get the euro ou franc. |
||
| 1634 | * |
||
| 1635 | * @return string|null Returns the euro ou franc. |
||
| 1636 | */ |
||
| 1637 | public function getEuroOuFranc(): ?string{ |
||
| 1640 | |||
| 1641 | /** |
||
| 1642 | * Get the famille1. |
||
| 1643 | * |
||
| 1644 | * @return string|null Returns the famille1. |
||
| 1645 | */ |
||
| 1646 | public function getFamille1(): ?string{ |
||
| 1649 | |||
| 1650 | /** |
||
| 1651 | * Get the famille10. |
||
| 1652 | * |
||
| 1653 | * @return string|null Returns the famille10. |
||
| 1654 | */ |
||
| 1655 | public function getFamille10(): ?string{ |
||
| 1658 | |||
| 1659 | /** |
||
| 1660 | * Get the famille2. |
||
| 1661 | * |
||
| 1662 | * @return string|null Returns the famille2. |
||
| 1663 | */ |
||
| 1664 | public function getFamille2(): ?string{ |
||
| 1667 | |||
| 1668 | /** |
||
| 1669 | * Get the famille3. |
||
| 1670 | * |
||
| 1671 | * @return string|null Returns the famille3. |
||
| 1672 | */ |
||
| 1673 | public function getFamille3(): ?string{ |
||
| 1676 | |||
| 1677 | /** |
||
| 1678 | * Get the famille4. |
||
| 1679 | * |
||
| 1680 | * @return string|null Returns the famille4. |
||
| 1681 | */ |
||
| 1682 | public function getFamille4(): ?string{ |
||
| 1685 | |||
| 1686 | /** |
||
| 1687 | * Get the famille5. |
||
| 1688 | * |
||
| 1689 | * @return string|null Returns the famille5. |
||
| 1690 | */ |
||
| 1691 | public function getFamille5(): ?string{ |
||
| 1694 | |||
| 1695 | /** |
||
| 1696 | * Get the famille6. |
||
| 1697 | * |
||
| 1698 | * @return string|null Returns the famille6. |
||
| 1699 | */ |
||
| 1700 | public function getFamille6(): ?string{ |
||
| 1703 | |||
| 1704 | /** |
||
| 1705 | * Get the famille7. |
||
| 1706 | * |
||
| 1707 | * @return string|null Returns the famille7. |
||
| 1708 | */ |
||
| 1709 | public function getFamille7(): ?string{ |
||
| 1712 | |||
| 1713 | /** |
||
| 1714 | * Get the famille8. |
||
| 1715 | * |
||
| 1716 | * @return string|null Returns the famille8. |
||
| 1717 | */ |
||
| 1718 | public function getFamille8(): ?string{ |
||
| 1721 | |||
| 1722 | /** |
||
| 1723 | * Get the famille9. |
||
| 1724 | * |
||
| 1725 | * @return string|null Returns the famille9. |
||
| 1726 | */ |
||
| 1727 | public function getFamille9(): ?string{ |
||
| 1730 | |||
| 1731 | /** |
||
| 1732 | * Get the famille analytique. |
||
| 1733 | * |
||
| 1734 | * @return string|null Returns the famille analytique. |
||
| 1735 | */ |
||
| 1736 | public function getFamilleAnalytique(): ?string{ |
||
| 1739 | |||
| 1740 | /** |
||
| 1741 | * Get the fin exercice. |
||
| 1742 | * |
||
| 1743 | * @return DateTime|null Returns the fin exercice. |
||
| 1744 | */ |
||
| 1745 | public function getFinExercice(): ?DateTime{ |
||
| 1748 | |||
| 1749 | /** |
||
| 1750 | * Get the fin exercice1. |
||
| 1751 | * |
||
| 1752 | * @return DateTime|null Returns the fin exercice1. |
||
| 1753 | */ |
||
| 1754 | public function getFinExercice1(): ?DateTime{ |
||
| 1757 | |||
| 1758 | /** |
||
| 1759 | * Get the gestion compta eco. |
||
| 1760 | * |
||
| 1761 | * @return bool|null Returns the gestion compta eco. |
||
| 1762 | */ |
||
| 1763 | public function getGestionComptaEco(): ?bool{ |
||
| 1766 | |||
| 1767 | /** |
||
| 1768 | * Get the groupe app clients. |
||
| 1769 | * |
||
| 1770 | * @return string|null Returns the groupe app clients. |
||
| 1771 | */ |
||
| 1772 | public function getGroupeAppClients(): ?string{ |
||
| 1775 | |||
| 1776 | /** |
||
| 1777 | * Get the lr active. |
||
| 1778 | * |
||
| 1779 | * @return bool|null Returns the lr active. |
||
| 1780 | */ |
||
| 1781 | public function getLrActive(): ?bool{ |
||
| 1784 | |||
| 1785 | /** |
||
| 1786 | * Get the lr periode. |
||
| 1787 | * |
||
| 1788 | * @return DateTime|null Returns the lr periode. |
||
| 1789 | */ |
||
| 1790 | public function getLrPeriode(): ?DateTime{ |
||
| 1793 | |||
| 1794 | /** |
||
| 1795 | * Get the module agr actif. |
||
| 1796 | * |
||
| 1797 | * @return bool|null Returns the module agr actif. |
||
| 1798 | */ |
||
| 1799 | public function getModuleAgrActif(): ?bool{ |
||
| 1802 | |||
| 1803 | /** |
||
| 1804 | * Get the multi dossiers. |
||
| 1805 | * |
||
| 1806 | * @return bool|null Returns the multi dossiers. |
||
| 1807 | */ |
||
| 1808 | public function getMultiDossiers(): ?bool{ |
||
| 1811 | |||
| 1812 | /** |
||
| 1813 | * Get the nature menu1. |
||
| 1814 | * |
||
| 1815 | * @return string|null Returns the nature menu1. |
||
| 1816 | */ |
||
| 1817 | public function getNatureMenu1(): ?string{ |
||
| 1820 | |||
| 1821 | /** |
||
| 1822 | * Get the nature menu10. |
||
| 1823 | * |
||
| 1824 | * @return string|null Returns the nature menu10. |
||
| 1825 | */ |
||
| 1826 | public function getNatureMenu10(): ?string{ |
||
| 1829 | |||
| 1830 | /** |
||
| 1831 | * Get the nature menu2. |
||
| 1832 | * |
||
| 1833 | * @return string|null Returns the nature menu2. |
||
| 1834 | */ |
||
| 1835 | public function getNatureMenu2(): ?string{ |
||
| 1838 | |||
| 1839 | /** |
||
| 1840 | * Get the nature menu3. |
||
| 1841 | * |
||
| 1842 | * @return string|null Returns the nature menu3. |
||
| 1843 | */ |
||
| 1844 | public function getNatureMenu3(): ?string{ |
||
| 1847 | |||
| 1848 | /** |
||
| 1849 | * Get the nature menu4. |
||
| 1850 | * |
||
| 1851 | * @return string|null Returns the nature menu4. |
||
| 1852 | */ |
||
| 1853 | public function getNatureMenu4(): ?string{ |
||
| 1856 | |||
| 1857 | /** |
||
| 1858 | * Get the nature menu5. |
||
| 1859 | * |
||
| 1860 | * @return string|null Returns the nature menu5. |
||
| 1861 | */ |
||
| 1862 | public function getNatureMenu5(): ?string{ |
||
| 1865 | |||
| 1866 | /** |
||
| 1867 | * Get the nature menu6. |
||
| 1868 | * |
||
| 1869 | * @return string|null Returns the nature menu6. |
||
| 1870 | */ |
||
| 1871 | public function getNatureMenu6(): ?string{ |
||
| 1874 | |||
| 1875 | /** |
||
| 1876 | * Get the nature menu7. |
||
| 1877 | * |
||
| 1878 | * @return string|null Returns the nature menu7. |
||
| 1879 | */ |
||
| 1880 | public function getNatureMenu7(): ?string{ |
||
| 1883 | |||
| 1884 | /** |
||
| 1885 | * Get the nature menu8. |
||
| 1886 | * |
||
| 1887 | * @return string|null Returns the nature menu8. |
||
| 1888 | */ |
||
| 1889 | public function getNatureMenu8(): ?string{ |
||
| 1892 | |||
| 1893 | /** |
||
| 1894 | * Get the nature menu9. |
||
| 1895 | * |
||
| 1896 | * @return string|null Returns the nature menu9. |
||
| 1897 | */ |
||
| 1898 | public function getNatureMenu9(): ?string{ |
||
| 1901 | |||
| 1902 | /** |
||
| 1903 | * Get the nature regle1. |
||
| 1904 | * |
||
| 1905 | * @return string|null Returns the nature regle1. |
||
| 1906 | */ |
||
| 1907 | public function getNatureRegle1(): ?string{ |
||
| 1910 | |||
| 1911 | /** |
||
| 1912 | * Get the nature regle10. |
||
| 1913 | * |
||
| 1914 | * @return string|null Returns the nature regle10. |
||
| 1915 | */ |
||
| 1916 | public function getNatureRegle10(): ?string{ |
||
| 1919 | |||
| 1920 | /** |
||
| 1921 | * Get the nature regle2. |
||
| 1922 | * |
||
| 1923 | * @return string|null Returns the nature regle2. |
||
| 1924 | */ |
||
| 1925 | public function getNatureRegle2(): ?string{ |
||
| 1928 | |||
| 1929 | /** |
||
| 1930 | * Get the nature regle3. |
||
| 1931 | * |
||
| 1932 | * @return string|null Returns the nature regle3. |
||
| 1933 | */ |
||
| 1934 | public function getNatureRegle3(): ?string{ |
||
| 1937 | |||
| 1938 | /** |
||
| 1939 | * Get the nature regle4. |
||
| 1940 | * |
||
| 1941 | * @return string|null Returns the nature regle4. |
||
| 1942 | */ |
||
| 1943 | public function getNatureRegle4(): ?string{ |
||
| 1946 | |||
| 1947 | /** |
||
| 1948 | * Get the nature regle5. |
||
| 1949 | * |
||
| 1950 | * @return string|null Returns the nature regle5. |
||
| 1951 | */ |
||
| 1952 | public function getNatureRegle5(): ?string{ |
||
| 1955 | |||
| 1956 | /** |
||
| 1957 | * Get the nature regle6. |
||
| 1958 | * |
||
| 1959 | * @return string|null Returns the nature regle6. |
||
| 1960 | */ |
||
| 1961 | public function getNatureRegle6(): ?string{ |
||
| 1964 | |||
| 1965 | /** |
||
| 1966 | * Get the nature regle7. |
||
| 1967 | * |
||
| 1968 | * @return string|null Returns the nature regle7. |
||
| 1969 | */ |
||
| 1970 | public function getNatureRegle7(): ?string{ |
||
| 1973 | |||
| 1974 | /** |
||
| 1975 | * Get the nature regle8. |
||
| 1976 | * |
||
| 1977 | * @return string|null Returns the nature regle8. |
||
| 1978 | */ |
||
| 1979 | public function getNatureRegle8(): ?string{ |
||
| 1982 | |||
| 1983 | /** |
||
| 1984 | * Get the nature regle9. |
||
| 1985 | * |
||
| 1986 | * @return string|null Returns the nature regle9. |
||
| 1987 | */ |
||
| 1988 | public function getNatureRegle9(): ?string{ |
||
| 1991 | |||
| 1992 | /** |
||
| 1993 | * Get the niveau analytique. |
||
| 1994 | * |
||
| 1995 | * @return int|null Returns the niveau analytique. |
||
| 1996 | */ |
||
| 1997 | public function getNiveauAnalytique(): ?int{ |
||
| 2000 | |||
| 2001 | /** |
||
| 2002 | * Get the niveau droit1. |
||
| 2003 | * |
||
| 2004 | * @return string|null Returns the niveau droit1. |
||
| 2005 | */ |
||
| 2006 | public function getNiveauDroit1(): ?string{ |
||
| 2009 | |||
| 2010 | /** |
||
| 2011 | * Get the niveau droit10. |
||
| 2012 | * |
||
| 2013 | * @return string|null Returns the niveau droit10. |
||
| 2014 | */ |
||
| 2015 | public function getNiveauDroit10(): ?string{ |
||
| 2018 | |||
| 2019 | /** |
||
| 2020 | * Get the niveau droit2. |
||
| 2021 | * |
||
| 2022 | * @return string|null Returns the niveau droit2. |
||
| 2023 | */ |
||
| 2024 | public function getNiveauDroit2(): ?string{ |
||
| 2027 | |||
| 2028 | /** |
||
| 2029 | * Get the niveau droit3. |
||
| 2030 | * |
||
| 2031 | * @return string|null Returns the niveau droit3. |
||
| 2032 | */ |
||
| 2033 | public function getNiveauDroit3(): ?string{ |
||
| 2036 | |||
| 2037 | /** |
||
| 2038 | * Get the niveau droit4. |
||
| 2039 | * |
||
| 2040 | * @return string|null Returns the niveau droit4. |
||
| 2041 | */ |
||
| 2042 | public function getNiveauDroit4(): ?string{ |
||
| 2045 | |||
| 2046 | /** |
||
| 2047 | * Get the niveau droit5. |
||
| 2048 | * |
||
| 2049 | * @return string|null Returns the niveau droit5. |
||
| 2050 | */ |
||
| 2051 | public function getNiveauDroit5(): ?string{ |
||
| 2054 | |||
| 2055 | /** |
||
| 2056 | * Get the niveau droit6. |
||
| 2057 | * |
||
| 2058 | * @return string|null Returns the niveau droit6. |
||
| 2059 | */ |
||
| 2060 | public function getNiveauDroit6(): ?string{ |
||
| 2063 | |||
| 2064 | /** |
||
| 2065 | * Get the niveau droit7. |
||
| 2066 | * |
||
| 2067 | * @return string|null Returns the niveau droit7. |
||
| 2068 | */ |
||
| 2069 | public function getNiveauDroit7(): ?string{ |
||
| 2072 | |||
| 2073 | /** |
||
| 2074 | * Get the niveau droit8. |
||
| 2075 | * |
||
| 2076 | * @return string|null Returns the niveau droit8. |
||
| 2077 | */ |
||
| 2078 | public function getNiveauDroit8(): ?string{ |
||
| 2081 | |||
| 2082 | /** |
||
| 2083 | * Get the niveau droit9. |
||
| 2084 | * |
||
| 2085 | * @return string|null Returns the niveau droit9. |
||
| 2086 | */ |
||
| 2087 | public function getNiveauDroit9(): ?string{ |
||
| 2090 | |||
| 2091 | /** |
||
| 2092 | * Get the nom ville. |
||
| 2093 | * |
||
| 2094 | * @return string|null Returns the nom ville. |
||
| 2095 | */ |
||
| 2096 | public function getNomVille(): ?string{ |
||
| 2099 | |||
| 2100 | /** |
||
| 2101 | * Get the nom voie. |
||
| 2102 | * |
||
| 2103 | * @return string|null Returns the nom voie. |
||
| 2104 | */ |
||
| 2105 | public function getNomVoie(): ?string{ |
||
| 2108 | |||
| 2109 | /** |
||
| 2110 | * Get the num voie. |
||
| 2111 | * |
||
| 2112 | * @return string|null Returns the num voie. |
||
| 2113 | */ |
||
| 2114 | public function getNumVoie(): ?string{ |
||
| 2117 | |||
| 2118 | /** |
||
| 2119 | * Get the pas ecriture rb. |
||
| 2120 | * |
||
| 2121 | * @return bool|null Returns the pas ecriture rb. |
||
| 2122 | */ |
||
| 2123 | public function getPasEcritureRb(): ?bool{ |
||
| 2126 | |||
| 2127 | /** |
||
| 2128 | * Get the pas modif rib regl. |
||
| 2129 | * |
||
| 2130 | * @return bool|null Returns the pas modif rib regl. |
||
| 2131 | */ |
||
| 2132 | public function getPasModifRibRegl(): ?bool{ |
||
| 2135 | |||
| 2136 | /** |
||
| 2137 | * Get the periode cloturee. |
||
| 2138 | * |
||
| 2139 | * @return DateTime|null Returns the periode cloturee. |
||
| 2140 | */ |
||
| 2141 | public function getPeriodeCloturee(): ?DateTime{ |
||
| 2144 | |||
| 2145 | /** |
||
| 2146 | * Get the periode validee. |
||
| 2147 | * |
||
| 2148 | * @return DateTime|null Returns the periode validee. |
||
| 2149 | */ |
||
| 2150 | public function getPeriodeValidee(): ?DateTime{ |
||
| 2153 | |||
| 2154 | /** |
||
| 2155 | * Get the prochain num piece. |
||
| 2156 | * |
||
| 2157 | * @return int|null Returns the prochain num piece. |
||
| 2158 | */ |
||
| 2159 | public function getProchainNumPiece(): ?int{ |
||
| 2162 | |||
| 2163 | /** |
||
| 2164 | * Get the rc. |
||
| 2165 | * |
||
| 2166 | * @return string|null Returns the rc. |
||
| 2167 | */ |
||
| 2168 | public function getRc(): ?string{ |
||
| 2171 | |||
| 2172 | /** |
||
| 2173 | * Get the raison sociale. |
||
| 2174 | * |
||
| 2175 | * @return string|null Returns the raison sociale. |
||
| 2176 | */ |
||
| 2177 | public function getRaisonSociale(): ?string{ |
||
| 2180 | |||
| 2181 | /** |
||
| 2182 | * Get the saisie immo en ecriture. |
||
| 2183 | * |
||
| 2184 | * @return bool|null Returns the saisie immo en ecriture. |
||
| 2185 | */ |
||
| 2186 | public function getSaisieImmoEnEcriture(): ?bool{ |
||
| 2189 | |||
| 2190 | /** |
||
| 2191 | * Get the sauve commun. |
||
| 2192 | * |
||
| 2193 | * @return bool|null Returns the sauve commun. |
||
| 2194 | */ |
||
| 2195 | public function getSauveCommun(): ?bool{ |
||
| 2198 | |||
| 2199 | /** |
||
| 2200 | * Get the sauve compresse. |
||
| 2201 | * |
||
| 2202 | * @return bool|null Returns the sauve compresse. |
||
| 2203 | */ |
||
| 2204 | public function getSauveCompresse(): ?bool{ |
||
| 2207 | |||
| 2208 | /** |
||
| 2209 | * Get the siret. |
||
| 2210 | * |
||
| 2211 | * @return string|null Returns the siret. |
||
| 2212 | */ |
||
| 2213 | public function getSiret(): ?string{ |
||
| 2216 | |||
| 2217 | /** |
||
| 2218 | * Get the suivi aff tout. |
||
| 2219 | * |
||
| 2220 | * @return bool|null Returns the suivi aff tout. |
||
| 2221 | */ |
||
| 2222 | public function getSuiviAffTout(): ?bool{ |
||
| 2225 | |||
| 2226 | /** |
||
| 2227 | * Get the suivi ana2. |
||
| 2228 | * |
||
| 2229 | * @return string|null Returns the suivi ana2. |
||
| 2230 | */ |
||
| 2231 | public function getSuiviAna2(): ?string{ |
||
| 2234 | |||
| 2235 | /** |
||
| 2236 | * Get the suivi ana classe0. |
||
| 2237 | * |
||
| 2238 | * @return bool|null Returns the suivi ana classe0. |
||
| 2239 | */ |
||
| 2240 | public function getSuiviAnaClasse0(): ?bool{ |
||
| 2243 | |||
| 2244 | /** |
||
| 2245 | * Get the suivi ana classe1. |
||
| 2246 | * |
||
| 2247 | * @return bool|null Returns the suivi ana classe1. |
||
| 2248 | */ |
||
| 2249 | public function getSuiviAnaClasse1(): ?bool{ |
||
| 2252 | |||
| 2253 | /** |
||
| 2254 | * Get the suivi ana classe2. |
||
| 2255 | * |
||
| 2256 | * @return bool|null Returns the suivi ana classe2. |
||
| 2257 | */ |
||
| 2258 | public function getSuiviAnaClasse2(): ?bool{ |
||
| 2261 | |||
| 2262 | /** |
||
| 2263 | * Get the suivi ana classe3. |
||
| 2264 | * |
||
| 2265 | * @return bool|null Returns the suivi ana classe3. |
||
| 2266 | */ |
||
| 2267 | public function getSuiviAnaClasse3(): ?bool{ |
||
| 2270 | |||
| 2271 | /** |
||
| 2272 | * Get the suivi ana classe4. |
||
| 2273 | * |
||
| 2274 | * @return bool|null Returns the suivi ana classe4. |
||
| 2275 | */ |
||
| 2276 | public function getSuiviAnaClasse4(): ?bool{ |
||
| 2279 | |||
| 2280 | /** |
||
| 2281 | * Get the suivi ana classe5. |
||
| 2282 | * |
||
| 2283 | * @return bool|null Returns the suivi ana classe5. |
||
| 2284 | */ |
||
| 2285 | public function getSuiviAnaClasse5(): ?bool{ |
||
| 2288 | |||
| 2289 | /** |
||
| 2290 | * Get the suivi ana classe8. |
||
| 2291 | * |
||
| 2292 | * @return bool|null Returns the suivi ana classe8. |
||
| 2293 | */ |
||
| 2294 | public function getSuiviAnaClasse8(): ?bool{ |
||
| 2297 | |||
| 2298 | /** |
||
| 2299 | * Get the suivi ana classe9. |
||
| 2300 | * |
||
| 2301 | * @return bool|null Returns the suivi ana classe9. |
||
| 2302 | */ |
||
| 2303 | public function getSuiviAnaClasse9(): ?bool{ |
||
| 2306 | |||
| 2307 | /** |
||
| 2308 | * Get the suivi ana facultatif. |
||
| 2309 | * |
||
| 2310 | * @return bool|null Returns the suivi ana facultatif. |
||
| 2311 | */ |
||
| 2312 | public function getSuiviAnaFacultatif(): ?bool{ |
||
| 2315 | |||
| 2316 | /** |
||
| 2317 | * Get the tva cle. |
||
| 2318 | * |
||
| 2319 | * @return string|null Returns the tva cle. |
||
| 2320 | */ |
||
| 2321 | public function getTvaCle(): ?string{ |
||
| 2324 | |||
| 2325 | /** |
||
| 2326 | * Get the tva code dossier. |
||
| 2327 | * |
||
| 2328 | * @return string|null Returns the tva code dossier. |
||
| 2329 | */ |
||
| 2330 | public function getTvaCodeDossier(): ?string{ |
||
| 2333 | |||
| 2334 | /** |
||
| 2335 | * Get the tva code recette. |
||
| 2336 | * |
||
| 2337 | * @return string|null Returns the tva code recette. |
||
| 2338 | */ |
||
| 2339 | public function getTvaCodeRecette(): ?string{ |
||
| 2342 | |||
| 2343 | /** |
||
| 2344 | * Get the ventilations communes. |
||
| 2345 | * |
||
| 2346 | * @return bool|null Returns the ventilations communes. |
||
| 2347 | */ |
||
| 2348 | public function getVentilationsCommunes(): ?bool{ |
||
| 2351 | |||
| 2352 | /** |
||
| 2353 | * Set the btq. |
||
| 2354 | * |
||
| 2355 | * @param string|null $btq The btq. |
||
| 2356 | * @return Dossier1 Returns this Dossier1. |
||
| 2357 | */ |
||
| 2358 | public function setBtq(?string $btq): Dossier1 { |
||
| 2362 | |||
| 2363 | /** |
||
| 2364 | * Set the bureau distributeur. |
||
| 2365 | * |
||
| 2366 | * @param string|null $bureauDistributeur The bureau distributeur. |
||
| 2367 | * @return Dossier1 Returns this Dossier1. |
||
| 2368 | */ |
||
| 2369 | public function setBureauDistributeur(?string $bureauDistributeur): Dossier1 { |
||
| 2373 | |||
| 2374 | /** |
||
| 2375 | * Set the calcul ana fait. |
||
| 2376 | * |
||
| 2377 | * @param bool|null $calculAnaFait The calcul ana fait. |
||
| 2378 | * @return Dossier1 Returns this Dossier1. |
||
| 2379 | */ |
||
| 2380 | public function setCalculAnaFait(?bool $calculAnaFait): Dossier1 { |
||
| 2384 | |||
| 2385 | /** |
||
| 2386 | * Set the chemin implantation ascii. |
||
| 2387 | * |
||
| 2388 | * @param string|null $cheminImplantationAscii The chemin implantation ascii. |
||
| 2389 | * @return Dossier1 Returns this Dossier1. |
||
| 2390 | */ |
||
| 2391 | public function setCheminImplantationAscii(?string $cheminImplantationAscii): Dossier1 { |
||
| 2395 | |||
| 2396 | /** |
||
| 2397 | * Set the civilite. |
||
| 2398 | * |
||
| 2399 | * @param string|null $civilite The civilite. |
||
| 2400 | * @return Dossier1 Returns this Dossier1. |
||
| 2401 | */ |
||
| 2402 | public function setCivilite(?string $civilite): Dossier1 { |
||
| 2406 | |||
| 2407 | /** |
||
| 2408 | * Set the cle acces1. |
||
| 2409 | * |
||
| 2410 | * @param string|null $cleAcces1 The cle acces1. |
||
| 2411 | * @return Dossier1 Returns this Dossier1. |
||
| 2412 | */ |
||
| 2413 | public function setCleAcces1(?string $cleAcces1): Dossier1 { |
||
| 2417 | |||
| 2418 | /** |
||
| 2419 | * Set the cle acces10. |
||
| 2420 | * |
||
| 2421 | * @param string|null $cleAcces10 The cle acces10. |
||
| 2422 | * @return Dossier1 Returns this Dossier1. |
||
| 2423 | */ |
||
| 2424 | public function setCleAcces10(?string $cleAcces10): Dossier1 { |
||
| 2428 | |||
| 2429 | /** |
||
| 2430 | * Set the cle acces2. |
||
| 2431 | * |
||
| 2432 | * @param string|null $cleAcces2 The cle acces2. |
||
| 2433 | * @return Dossier1 Returns this Dossier1. |
||
| 2434 | */ |
||
| 2435 | public function setCleAcces2(?string $cleAcces2): Dossier1 { |
||
| 2439 | |||
| 2440 | /** |
||
| 2441 | * Set the cle acces3. |
||
| 2442 | * |
||
| 2443 | * @param string|null $cleAcces3 The cle acces3. |
||
| 2444 | * @return Dossier1 Returns this Dossier1. |
||
| 2445 | */ |
||
| 2446 | public function setCleAcces3(?string $cleAcces3): Dossier1 { |
||
| 2450 | |||
| 2451 | /** |
||
| 2452 | * Set the cle acces4. |
||
| 2453 | * |
||
| 2454 | * @param string|null $cleAcces4 The cle acces4. |
||
| 2455 | * @return Dossier1 Returns this Dossier1. |
||
| 2456 | */ |
||
| 2457 | public function setCleAcces4(?string $cleAcces4): Dossier1 { |
||
| 2461 | |||
| 2462 | /** |
||
| 2463 | * Set the cle acces5. |
||
| 2464 | * |
||
| 2465 | * @param string|null $cleAcces5 The cle acces5. |
||
| 2466 | * @return Dossier1 Returns this Dossier1. |
||
| 2467 | */ |
||
| 2468 | public function setCleAcces5(?string $cleAcces5): Dossier1 { |
||
| 2472 | |||
| 2473 | /** |
||
| 2474 | * Set the cle acces6. |
||
| 2475 | * |
||
| 2476 | * @param string|null $cleAcces6 The cle acces6. |
||
| 2477 | * @return Dossier1 Returns this Dossier1. |
||
| 2478 | */ |
||
| 2479 | public function setCleAcces6(?string $cleAcces6): Dossier1 { |
||
| 2483 | |||
| 2484 | /** |
||
| 2485 | * Set the cle acces7. |
||
| 2486 | * |
||
| 2487 | * @param string|null $cleAcces7 The cle acces7. |
||
| 2488 | * @return Dossier1 Returns this Dossier1. |
||
| 2489 | */ |
||
| 2490 | public function setCleAcces7(?string $cleAcces7): Dossier1 { |
||
| 2494 | |||
| 2495 | /** |
||
| 2496 | * Set the cle acces8. |
||
| 2497 | * |
||
| 2498 | * @param string|null $cleAcces8 The cle acces8. |
||
| 2499 | * @return Dossier1 Returns this Dossier1. |
||
| 2500 | */ |
||
| 2501 | public function setCleAcces8(?string $cleAcces8): Dossier1 { |
||
| 2505 | |||
| 2506 | /** |
||
| 2507 | * Set the cle acces9. |
||
| 2508 | * |
||
| 2509 | * @param string|null $cleAcces9 The cle acces9. |
||
| 2510 | * @return Dossier1 Returns this Dossier1. |
||
| 2511 | */ |
||
| 2512 | public function setCleAcces9(?string $cleAcces9): Dossier1 { |
||
| 2516 | |||
| 2517 | /** |
||
| 2518 | * Set the cle deblocage journaux. |
||
| 2519 | * |
||
| 2520 | * @param string|null $cleDeblocageJournaux The cle deblocage journaux. |
||
| 2521 | * @return Dossier1 Returns this Dossier1. |
||
| 2522 | */ |
||
| 2523 | public function setCleDeblocageJournaux(?string $cleDeblocageJournaux): Dossier1 { |
||
| 2527 | |||
| 2528 | /** |
||
| 2529 | * Set the cle portable. |
||
| 2530 | * |
||
| 2531 | * @param string|null $clePortable The cle portable. |
||
| 2532 | * @return Dossier1 Returns this Dossier1. |
||
| 2533 | */ |
||
| 2534 | public function setClePortable(?string $clePortable): Dossier1 { |
||
| 2538 | |||
| 2539 | /** |
||
| 2540 | * Set the code equipe. |
||
| 2541 | * |
||
| 2542 | * @param string|null $codeEquipe The code equipe. |
||
| 2543 | * @return Dossier1 Returns this Dossier1. |
||
| 2544 | */ |
||
| 2545 | public function setCodeEquipe(?string $codeEquipe): Dossier1 { |
||
| 2549 | |||
| 2550 | /** |
||
| 2551 | * Set the code naf. |
||
| 2552 | * |
||
| 2553 | * @param string|null $codeNaf The code naf. |
||
| 2554 | * @return Dossier1 Returns this Dossier1. |
||
| 2555 | */ |
||
| 2556 | public function setCodeNaf(?string $codeNaf): Dossier1 { |
||
| 2560 | |||
| 2561 | /** |
||
| 2562 | * Set the code naf2008. |
||
| 2563 | * |
||
| 2564 | * @param string|null $codeNaf2008 The code naf2008. |
||
| 2565 | * @return Dossier1 Returns this Dossier1. |
||
| 2566 | */ |
||
| 2567 | public function setCodeNaf2008(?string $codeNaf2008): Dossier1 { |
||
| 2571 | |||
| 2572 | /** |
||
| 2573 | * Set the code officiel commune. |
||
| 2574 | * |
||
| 2575 | * @param string|null $codeOfficielCommune The code officiel commune. |
||
| 2576 | * @return Dossier1 Returns this Dossier1. |
||
| 2577 | */ |
||
| 2578 | public function setCodeOfficielCommune(?string $codeOfficielCommune): Dossier1 { |
||
| 2582 | |||
| 2583 | /** |
||
| 2584 | * Set the code postal. |
||
| 2585 | * |
||
| 2586 | * @param string|null $codePostal The code postal. |
||
| 2587 | * @return Dossier1 Returns this Dossier1. |
||
| 2588 | */ |
||
| 2589 | public function setCodePostal(?string $codePostal): Dossier1 { |
||
| 2593 | |||
| 2594 | /** |
||
| 2595 | * Set the complement. |
||
| 2596 | * |
||
| 2597 | * @param string|null $complement The complement. |
||
| 2598 | * @return Dossier1 Returns this Dossier1. |
||
| 2599 | */ |
||
| 2600 | public function setComplement(?string $complement): Dossier1 { |
||
| 2604 | |||
| 2605 | /** |
||
| 2606 | * Set the copie backup. |
||
| 2607 | * |
||
| 2608 | * @param string|null $copieBackup The copie backup. |
||
| 2609 | * @return Dossier1 Returns this Dossier1. |
||
| 2610 | */ |
||
| 2611 | public function setCopieBackup(?string $copieBackup): Dossier1 { |
||
| 2615 | |||
| 2616 | /** |
||
| 2617 | * Set the cpt deb suivi classe0. |
||
| 2618 | * |
||
| 2619 | * @param string|null $cptDebSuiviClasse0 The cpt deb suivi classe0. |
||
| 2620 | * @return Dossier1 Returns this Dossier1. |
||
| 2621 | */ |
||
| 2622 | public function setCptDebSuiviClasse0(?string $cptDebSuiviClasse0): Dossier1 { |
||
| 2626 | |||
| 2627 | /** |
||
| 2628 | * Set the cpt deb suivi classe1. |
||
| 2629 | * |
||
| 2630 | * @param string|null $cptDebSuiviClasse1 The cpt deb suivi classe1. |
||
| 2631 | * @return Dossier1 Returns this Dossier1. |
||
| 2632 | */ |
||
| 2633 | public function setCptDebSuiviClasse1(?string $cptDebSuiviClasse1): Dossier1 { |
||
| 2637 | |||
| 2638 | /** |
||
| 2639 | * Set the cpt deb suivi classe2. |
||
| 2640 | * |
||
| 2641 | * @param string|null $cptDebSuiviClasse2 The cpt deb suivi classe2. |
||
| 2642 | * @return Dossier1 Returns this Dossier1. |
||
| 2643 | */ |
||
| 2644 | public function setCptDebSuiviClasse2(?string $cptDebSuiviClasse2): Dossier1 { |
||
| 2648 | |||
| 2649 | /** |
||
| 2650 | * Set the cpt deb suivi classe3. |
||
| 2651 | * |
||
| 2652 | * @param string|null $cptDebSuiviClasse3 The cpt deb suivi classe3. |
||
| 2653 | * @return Dossier1 Returns this Dossier1. |
||
| 2654 | */ |
||
| 2655 | public function setCptDebSuiviClasse3(?string $cptDebSuiviClasse3): Dossier1 { |
||
| 2659 | |||
| 2660 | /** |
||
| 2661 | * Set the cpt deb suivi classe4. |
||
| 2662 | * |
||
| 2663 | * @param string|null $cptDebSuiviClasse4 The cpt deb suivi classe4. |
||
| 2664 | * @return Dossier1 Returns this Dossier1. |
||
| 2665 | */ |
||
| 2666 | public function setCptDebSuiviClasse4(?string $cptDebSuiviClasse4): Dossier1 { |
||
| 2670 | |||
| 2671 | /** |
||
| 2672 | * Set the cpt deb suivi classe5. |
||
| 2673 | * |
||
| 2674 | * @param string|null $cptDebSuiviClasse5 The cpt deb suivi classe5. |
||
| 2675 | * @return Dossier1 Returns this Dossier1. |
||
| 2676 | */ |
||
| 2677 | public function setCptDebSuiviClasse5(?string $cptDebSuiviClasse5): Dossier1 { |
||
| 2681 | |||
| 2682 | /** |
||
| 2683 | * Set the cpt deb suivi classe8. |
||
| 2684 | * |
||
| 2685 | * @param string|null $cptDebSuiviClasse8 The cpt deb suivi classe8. |
||
| 2686 | * @return Dossier1 Returns this Dossier1. |
||
| 2687 | */ |
||
| 2688 | public function setCptDebSuiviClasse8(?string $cptDebSuiviClasse8): Dossier1 { |
||
| 2692 | |||
| 2693 | /** |
||
| 2694 | * Set the cpt deb suivi classe9. |
||
| 2695 | * |
||
| 2696 | * @param string|null $cptDebSuiviClasse9 The cpt deb suivi classe9. |
||
| 2697 | * @return Dossier1 Returns this Dossier1. |
||
| 2698 | */ |
||
| 2699 | public function setCptDebSuiviClasse9(?string $cptDebSuiviClasse9): Dossier1 { |
||
| 2703 | |||
| 2704 | /** |
||
| 2705 | * Set the cpt fin suivi classe0. |
||
| 2706 | * |
||
| 2707 | * @param string|null $cptFinSuiviClasse0 The cpt fin suivi classe0. |
||
| 2708 | * @return Dossier1 Returns this Dossier1. |
||
| 2709 | */ |
||
| 2710 | public function setCptFinSuiviClasse0(?string $cptFinSuiviClasse0): Dossier1 { |
||
| 2714 | |||
| 2715 | /** |
||
| 2716 | * Set the cpt fin suivi classe1. |
||
| 2717 | * |
||
| 2718 | * @param string|null $cptFinSuiviClasse1 The cpt fin suivi classe1. |
||
| 2719 | * @return Dossier1 Returns this Dossier1. |
||
| 2720 | */ |
||
| 2721 | public function setCptFinSuiviClasse1(?string $cptFinSuiviClasse1): Dossier1 { |
||
| 2725 | |||
| 2726 | /** |
||
| 2727 | * Set the cpt fin suivi classe2. |
||
| 2728 | * |
||
| 2729 | * @param string|null $cptFinSuiviClasse2 The cpt fin suivi classe2. |
||
| 2730 | * @return Dossier1 Returns this Dossier1. |
||
| 2731 | */ |
||
| 2732 | public function setCptFinSuiviClasse2(?string $cptFinSuiviClasse2): Dossier1 { |
||
| 2736 | |||
| 2737 | /** |
||
| 2738 | * Set the cpt fin suivi classe3. |
||
| 2739 | * |
||
| 2740 | * @param string|null $cptFinSuiviClasse3 The cpt fin suivi classe3. |
||
| 2741 | * @return Dossier1 Returns this Dossier1. |
||
| 2742 | */ |
||
| 2743 | public function setCptFinSuiviClasse3(?string $cptFinSuiviClasse3): Dossier1 { |
||
| 2747 | |||
| 2748 | /** |
||
| 2749 | * Set the cpt fin suivi classe4. |
||
| 2750 | * |
||
| 2751 | * @param string|null $cptFinSuiviClasse4 The cpt fin suivi classe4. |
||
| 2752 | * @return Dossier1 Returns this Dossier1. |
||
| 2753 | */ |
||
| 2754 | public function setCptFinSuiviClasse4(?string $cptFinSuiviClasse4): Dossier1 { |
||
| 2758 | |||
| 2759 | /** |
||
| 2760 | * Set the cpt fin suivi classe5. |
||
| 2761 | * |
||
| 2762 | * @param string|null $cptFinSuiviClasse5 The cpt fin suivi classe5. |
||
| 2763 | * @return Dossier1 Returns this Dossier1. |
||
| 2764 | */ |
||
| 2765 | public function setCptFinSuiviClasse5(?string $cptFinSuiviClasse5): Dossier1 { |
||
| 2769 | |||
| 2770 | /** |
||
| 2771 | * Set the cpt fin suivi classe8. |
||
| 2772 | * |
||
| 2773 | * @param string|null $cptFinSuiviClasse8 The cpt fin suivi classe8. |
||
| 2774 | * @return Dossier1 Returns this Dossier1. |
||
| 2775 | */ |
||
| 2776 | public function setCptFinSuiviClasse8(?string $cptFinSuiviClasse8): Dossier1 { |
||
| 2780 | |||
| 2781 | /** |
||
| 2782 | * Set the cpt fin suivi classe9. |
||
| 2783 | * |
||
| 2784 | * @param string|null $cptFinSuiviClasse9 The cpt fin suivi classe9. |
||
| 2785 | * @return Dossier1 Returns this Dossier1. |
||
| 2786 | */ |
||
| 2787 | public function setCptFinSuiviClasse9(?string $cptFinSuiviClasse9): Dossier1 { |
||
| 2791 | |||
| 2792 | /** |
||
| 2793 | * Set the createur dossier. |
||
| 2794 | * |
||
| 2795 | * @param string|null $createurDossier The createur dossier. |
||
| 2796 | * @return Dossier1 Returns this Dossier1. |
||
| 2797 | */ |
||
| 2798 | public function setCreateurDossier(?string $createurDossier): Dossier1 { |
||
| 2802 | |||
| 2803 | /** |
||
| 2804 | * Set the dlu. |
||
| 2805 | * |
||
| 2806 | * @param string|null $dlu The dlu. |
||
| 2807 | * @return Dossier1 Returns this Dossier1. |
||
| 2808 | */ |
||
| 2809 | public function setDlu(?string $dlu): Dossier1 { |
||
| 2813 | |||
| 2814 | /** |
||
| 2815 | * Set the date limite saisie. |
||
| 2816 | * |
||
| 2817 | * @param DateTime|null $dateLimiteSaisie The date limite saisie. |
||
| 2818 | * @return Dossier1 Returns this Dossier1. |
||
| 2819 | */ |
||
| 2820 | public function setDateLimiteSaisie(?DateTime $dateLimiteSaisie): Dossier1 { |
||
| 2824 | |||
| 2825 | /** |
||
| 2826 | * Set the date sys changt ex. |
||
| 2827 | * |
||
| 2828 | * @param DateTime|null $dateSysChangtEx The date sys changt ex. |
||
| 2829 | * @return Dossier1 Returns this Dossier1. |
||
| 2830 | */ |
||
| 2831 | public function setDateSysChangtEx(?DateTime $dateSysChangtEx): Dossier1 { |
||
| 2835 | |||
| 2836 | /** |
||
| 2837 | * Set the date sys cloture periode. |
||
| 2838 | * |
||
| 2839 | * @param DateTime|null $dateSysCloturePeriode The date sys cloture periode. |
||
| 2840 | * @return Dossier1 Returns this Dossier1. |
||
| 2841 | */ |
||
| 2842 | public function setDateSysCloturePeriode(?DateTime $dateSysCloturePeriode): Dossier1 { |
||
| 2846 | |||
| 2847 | /** |
||
| 2848 | * Set the date sys creation. |
||
| 2849 | * |
||
| 2850 | * @param DateTime|null $dateSysCreation The date sys creation. |
||
| 2851 | * @return Dossier1 Returns this Dossier1. |
||
| 2852 | */ |
||
| 2853 | public function setDateSysCreation(?DateTime $dateSysCreation): Dossier1 { |
||
| 2857 | |||
| 2858 | /** |
||
| 2859 | * Set the date travail. |
||
| 2860 | * |
||
| 2861 | * @param DateTime|null $dateTravail The date travail. |
||
| 2862 | * @return Dossier1 Returns this Dossier1. |
||
| 2863 | */ |
||
| 2864 | public function setDateTravail(?DateTime $dateTravail): Dossier1 { |
||
| 2868 | |||
| 2869 | /** |
||
| 2870 | * Set the debut exercice. |
||
| 2871 | * |
||
| 2872 | * @param DateTime|null $debutExercice The debut exercice. |
||
| 2873 | * @return Dossier1 Returns this Dossier1. |
||
| 2874 | */ |
||
| 2875 | public function setDebutExercice(?DateTime $debutExercice): Dossier1 { |
||
| 2879 | |||
| 2880 | /** |
||
| 2881 | * Set the debut exercice1. |
||
| 2882 | * |
||
| 2883 | * @param DateTime|null $debutExercice1 The debut exercice1. |
||
| 2884 | * @return Dossier1 Returns this Dossier1. |
||
| 2885 | */ |
||
| 2886 | public function setDebutExercice1(?DateTime $debutExercice1): Dossier1 { |
||
| 2890 | |||
| 2891 | /** |
||
| 2892 | * Set the delai limite saisie. |
||
| 2893 | * |
||
| 2894 | * @param int|null $delaiLimiteSaisie The delai limite saisie. |
||
| 2895 | * @return Dossier1 Returns this Dossier1. |
||
| 2896 | */ |
||
| 2897 | public function setDelaiLimiteSaisie(?int $delaiLimiteSaisie): Dossier1 { |
||
| 2901 | |||
| 2902 | /** |
||
| 2903 | * Set the droit creation type cpt1. |
||
| 2904 | * |
||
| 2905 | * @param string|null $droitCreationTypeCpt1 The droit creation type cpt1. |
||
| 2906 | * @return Dossier1 Returns this Dossier1. |
||
| 2907 | */ |
||
| 2908 | public function setDroitCreationTypeCpt1(?string $droitCreationTypeCpt1): Dossier1 { |
||
| 2912 | |||
| 2913 | /** |
||
| 2914 | * Set the droit creation type cpt10. |
||
| 2915 | * |
||
| 2916 | * @param string|null $droitCreationTypeCpt10 The droit creation type cpt10. |
||
| 2917 | * @return Dossier1 Returns this Dossier1. |
||
| 2918 | */ |
||
| 2919 | public function setDroitCreationTypeCpt10(?string $droitCreationTypeCpt10): Dossier1 { |
||
| 2923 | |||
| 2924 | /** |
||
| 2925 | * Set the droit creation type cpt2. |
||
| 2926 | * |
||
| 2927 | * @param string|null $droitCreationTypeCpt2 The droit creation type cpt2. |
||
| 2928 | * @return Dossier1 Returns this Dossier1. |
||
| 2929 | */ |
||
| 2930 | public function setDroitCreationTypeCpt2(?string $droitCreationTypeCpt2): Dossier1 { |
||
| 2934 | |||
| 2935 | /** |
||
| 2936 | * Set the droit creation type cpt3. |
||
| 2937 | * |
||
| 2938 | * @param string|null $droitCreationTypeCpt3 The droit creation type cpt3. |
||
| 2939 | * @return Dossier1 Returns this Dossier1. |
||
| 2940 | */ |
||
| 2941 | public function setDroitCreationTypeCpt3(?string $droitCreationTypeCpt3): Dossier1 { |
||
| 2945 | |||
| 2946 | /** |
||
| 2947 | * Set the droit creation type cpt4. |
||
| 2948 | * |
||
| 2949 | * @param string|null $droitCreationTypeCpt4 The droit creation type cpt4. |
||
| 2950 | * @return Dossier1 Returns this Dossier1. |
||
| 2951 | */ |
||
| 2952 | public function setDroitCreationTypeCpt4(?string $droitCreationTypeCpt4): Dossier1 { |
||
| 2956 | |||
| 2957 | /** |
||
| 2958 | * Set the droit creation type cpt5. |
||
| 2959 | * |
||
| 2960 | * @param string|null $droitCreationTypeCpt5 The droit creation type cpt5. |
||
| 2961 | * @return Dossier1 Returns this Dossier1. |
||
| 2962 | */ |
||
| 2963 | public function setDroitCreationTypeCpt5(?string $droitCreationTypeCpt5): Dossier1 { |
||
| 2967 | |||
| 2968 | /** |
||
| 2969 | * Set the droit creation type cpt6. |
||
| 2970 | * |
||
| 2971 | * @param string|null $droitCreationTypeCpt6 The droit creation type cpt6. |
||
| 2972 | * @return Dossier1 Returns this Dossier1. |
||
| 2973 | */ |
||
| 2974 | public function setDroitCreationTypeCpt6(?string $droitCreationTypeCpt6): Dossier1 { |
||
| 2978 | |||
| 2979 | /** |
||
| 2980 | * Set the droit creation type cpt7. |
||
| 2981 | * |
||
| 2982 | * @param string|null $droitCreationTypeCpt7 The droit creation type cpt7. |
||
| 2983 | * @return Dossier1 Returns this Dossier1. |
||
| 2984 | */ |
||
| 2985 | public function setDroitCreationTypeCpt7(?string $droitCreationTypeCpt7): Dossier1 { |
||
| 2989 | |||
| 2990 | /** |
||
| 2991 | * Set the droit creation type cpt8. |
||
| 2992 | * |
||
| 2993 | * @param string|null $droitCreationTypeCpt8 The droit creation type cpt8. |
||
| 2994 | * @return Dossier1 Returns this Dossier1. |
||
| 2995 | */ |
||
| 2996 | public function setDroitCreationTypeCpt8(?string $droitCreationTypeCpt8): Dossier1 { |
||
| 3000 | |||
| 3001 | /** |
||
| 3002 | * Set the droit creation type cpt9. |
||
| 3003 | * |
||
| 3004 | * @param string|null $droitCreationTypeCpt9 The droit creation type cpt9. |
||
| 3005 | * @return Dossier1 Returns this Dossier1. |
||
| 3006 | */ |
||
| 3007 | public function setDroitCreationTypeCpt9(?string $droitCreationTypeCpt9): Dossier1 { |
||
| 3011 | |||
| 3012 | /** |
||
| 3013 | * Set the duree exercice. |
||
| 3014 | * |
||
| 3015 | * @param string|null $dureeExercice The duree exercice. |
||
| 3016 | * @return Dossier1 Returns this Dossier1. |
||
| 3017 | */ |
||
| 3018 | public function setDureeExercice(?string $dureeExercice): Dossier1 { |
||
| 3022 | |||
| 3023 | /** |
||
| 3024 | * Set the duree exercice1. |
||
| 3025 | * |
||
| 3026 | * @param string|null $dureeExercice1 The duree exercice1. |
||
| 3027 | * @return Dossier1 Returns this Dossier1. |
||
| 3028 | */ |
||
| 3029 | public function setDureeExercice1(?string $dureeExercice1): Dossier1 { |
||
| 3033 | |||
| 3034 | /** |
||
| 3035 | * Set the edit date systeme. |
||
| 3036 | * |
||
| 3037 | * @param bool|null $editDateSysteme The edit date systeme. |
||
| 3038 | * @return Dossier1 Returns this Dossier1. |
||
| 3039 | */ |
||
| 3040 | public function setEditDateSysteme(?bool $editDateSysteme): Dossier1 { |
||
| 3044 | |||
| 3045 | /** |
||
| 3046 | * Set the edit page garde. |
||
| 3047 | * |
||
| 3048 | * @param bool|null $editPageGarde The edit page garde. |
||
| 3049 | * @return Dossier1 Returns this Dossier1. |
||
| 3050 | */ |
||
| 3051 | public function setEditPageGarde(?bool $editPageGarde): Dossier1 { |
||
| 3055 | |||
| 3056 | /** |
||
| 3057 | * Set the enseigne. |
||
| 3058 | * |
||
| 3059 | * @param string|null $enseigne The enseigne. |
||
| 3060 | * @return Dossier1 Returns this Dossier1. |
||
| 3061 | */ |
||
| 3062 | public function setEnseigne(?string $enseigne): Dossier1 { |
||
| 3066 | |||
| 3067 | /** |
||
| 3068 | * Set the euro ou franc. |
||
| 3069 | * |
||
| 3070 | * @param string|null $euroOuFranc The euro ou franc. |
||
| 3071 | * @return Dossier1 Returns this Dossier1. |
||
| 3072 | */ |
||
| 3073 | public function setEuroOuFranc(?string $euroOuFranc): Dossier1 { |
||
| 3077 | |||
| 3078 | /** |
||
| 3079 | * Set the famille1. |
||
| 3080 | * |
||
| 3081 | * @param string|null $famille1 The famille1. |
||
| 3082 | * @return Dossier1 Returns this Dossier1. |
||
| 3083 | */ |
||
| 3084 | public function setFamille1(?string $famille1): Dossier1 { |
||
| 3088 | |||
| 3089 | /** |
||
| 3090 | * Set the famille10. |
||
| 3091 | * |
||
| 3092 | * @param string|null $famille10 The famille10. |
||
| 3093 | * @return Dossier1 Returns this Dossier1. |
||
| 3094 | */ |
||
| 3095 | public function setFamille10(?string $famille10): Dossier1 { |
||
| 3099 | |||
| 3100 | /** |
||
| 3101 | * Set the famille2. |
||
| 3102 | * |
||
| 3103 | * @param string|null $famille2 The famille2. |
||
| 3104 | * @return Dossier1 Returns this Dossier1. |
||
| 3105 | */ |
||
| 3106 | public function setFamille2(?string $famille2): Dossier1 { |
||
| 3110 | |||
| 3111 | /** |
||
| 3112 | * Set the famille3. |
||
| 3113 | * |
||
| 3114 | * @param string|null $famille3 The famille3. |
||
| 3115 | * @return Dossier1 Returns this Dossier1. |
||
| 3116 | */ |
||
| 3117 | public function setFamille3(?string $famille3): Dossier1 { |
||
| 3121 | |||
| 3122 | /** |
||
| 3123 | * Set the famille4. |
||
| 3124 | * |
||
| 3125 | * @param string|null $famille4 The famille4. |
||
| 3126 | * @return Dossier1 Returns this Dossier1. |
||
| 3127 | */ |
||
| 3128 | public function setFamille4(?string $famille4): Dossier1 { |
||
| 3132 | |||
| 3133 | /** |
||
| 3134 | * Set the famille5. |
||
| 3135 | * |
||
| 3136 | * @param string|null $famille5 The famille5. |
||
| 3137 | * @return Dossier1 Returns this Dossier1. |
||
| 3138 | */ |
||
| 3139 | public function setFamille5(?string $famille5): Dossier1 { |
||
| 3143 | |||
| 3144 | /** |
||
| 3145 | * Set the famille6. |
||
| 3146 | * |
||
| 3147 | * @param string|null $famille6 The famille6. |
||
| 3148 | * @return Dossier1 Returns this Dossier1. |
||
| 3149 | */ |
||
| 3150 | public function setFamille6(?string $famille6): Dossier1 { |
||
| 3154 | |||
| 3155 | /** |
||
| 3156 | * Set the famille7. |
||
| 3157 | * |
||
| 3158 | * @param string|null $famille7 The famille7. |
||
| 3159 | * @return Dossier1 Returns this Dossier1. |
||
| 3160 | */ |
||
| 3161 | public function setFamille7(?string $famille7): Dossier1 { |
||
| 3165 | |||
| 3166 | /** |
||
| 3167 | * Set the famille8. |
||
| 3168 | * |
||
| 3169 | * @param string|null $famille8 The famille8. |
||
| 3170 | * @return Dossier1 Returns this Dossier1. |
||
| 3171 | */ |
||
| 3172 | public function setFamille8(?string $famille8): Dossier1 { |
||
| 3176 | |||
| 3177 | /** |
||
| 3178 | * Set the famille9. |
||
| 3179 | * |
||
| 3180 | * @param string|null $famille9 The famille9. |
||
| 3181 | * @return Dossier1 Returns this Dossier1. |
||
| 3182 | */ |
||
| 3183 | public function setFamille9(?string $famille9): Dossier1 { |
||
| 3187 | |||
| 3188 | /** |
||
| 3189 | * Set the famille analytique. |
||
| 3190 | * |
||
| 3191 | * @param string|null $familleAnalytique The famille analytique. |
||
| 3192 | * @return Dossier1 Returns this Dossier1. |
||
| 3193 | */ |
||
| 3194 | public function setFamilleAnalytique(?string $familleAnalytique): Dossier1 { |
||
| 3198 | |||
| 3199 | /** |
||
| 3200 | * Set the fin exercice. |
||
| 3201 | * |
||
| 3202 | * @param DateTime|null $finExercice The fin exercice. |
||
| 3203 | * @return Dossier1 Returns this Dossier1. |
||
| 3204 | */ |
||
| 3205 | public function setFinExercice(?DateTime $finExercice): Dossier1 { |
||
| 3209 | |||
| 3210 | /** |
||
| 3211 | * Set the fin exercice1. |
||
| 3212 | * |
||
| 3213 | * @param DateTime|null $finExercice1 The fin exercice1. |
||
| 3214 | * @return Dossier1 Returns this Dossier1. |
||
| 3215 | */ |
||
| 3216 | public function setFinExercice1(?DateTime $finExercice1): Dossier1 { |
||
| 3220 | |||
| 3221 | /** |
||
| 3222 | * Set the gestion compta eco. |
||
| 3223 | * |
||
| 3224 | * @param bool|null $gestionComptaEco The gestion compta eco. |
||
| 3225 | * @return Dossier1 Returns this Dossier1. |
||
| 3226 | */ |
||
| 3227 | public function setGestionComptaEco(?bool $gestionComptaEco): Dossier1 { |
||
| 3231 | |||
| 3232 | /** |
||
| 3233 | * Set the groupe app clients. |
||
| 3234 | * |
||
| 3235 | * @param string|null $groupeAppClients The groupe app clients. |
||
| 3236 | * @return Dossier1 Returns this Dossier1. |
||
| 3237 | */ |
||
| 3238 | public function setGroupeAppClients(?string $groupeAppClients): Dossier1 { |
||
| 3242 | |||
| 3243 | /** |
||
| 3244 | * Set the lr active. |
||
| 3245 | * |
||
| 3246 | * @param bool|null $lrActive The lr active. |
||
| 3247 | * @return Dossier1 Returns this Dossier1. |
||
| 3248 | */ |
||
| 3249 | public function setLrActive(?bool $lrActive): Dossier1 { |
||
| 3253 | |||
| 3254 | /** |
||
| 3255 | * Set the lr periode. |
||
| 3256 | * |
||
| 3257 | * @param DateTime|null $lrPeriode The lr periode. |
||
| 3258 | * @return Dossier1 Returns this Dossier1. |
||
| 3259 | */ |
||
| 3260 | public function setLrPeriode(?DateTime $lrPeriode): Dossier1 { |
||
| 3264 | |||
| 3265 | /** |
||
| 3266 | * Set the module agr actif. |
||
| 3267 | * |
||
| 3268 | * @param bool|null $moduleAgrActif The module agr actif. |
||
| 3269 | * @return Dossier1 Returns this Dossier1. |
||
| 3270 | */ |
||
| 3271 | public function setModuleAgrActif(?bool $moduleAgrActif): Dossier1 { |
||
| 3275 | |||
| 3276 | /** |
||
| 3277 | * Set the multi dossiers. |
||
| 3278 | * |
||
| 3279 | * @param bool|null $multiDossiers The multi dossiers. |
||
| 3280 | * @return Dossier1 Returns this Dossier1. |
||
| 3281 | */ |
||
| 3282 | public function setMultiDossiers(?bool $multiDossiers): Dossier1 { |
||
| 3286 | |||
| 3287 | /** |
||
| 3288 | * Set the nature menu1. |
||
| 3289 | * |
||
| 3290 | * @param string|null $natureMenu1 The nature menu1. |
||
| 3291 | * @return Dossier1 Returns this Dossier1. |
||
| 3292 | */ |
||
| 3293 | public function setNatureMenu1(?string $natureMenu1): Dossier1 { |
||
| 3297 | |||
| 3298 | /** |
||
| 3299 | * Set the nature menu10. |
||
| 3300 | * |
||
| 3301 | * @param string|null $natureMenu10 The nature menu10. |
||
| 3302 | * @return Dossier1 Returns this Dossier1. |
||
| 3303 | */ |
||
| 3304 | public function setNatureMenu10(?string $natureMenu10): Dossier1 { |
||
| 3308 | |||
| 3309 | /** |
||
| 3310 | * Set the nature menu2. |
||
| 3311 | * |
||
| 3312 | * @param string|null $natureMenu2 The nature menu2. |
||
| 3313 | * @return Dossier1 Returns this Dossier1. |
||
| 3314 | */ |
||
| 3315 | public function setNatureMenu2(?string $natureMenu2): Dossier1 { |
||
| 3319 | |||
| 3320 | /** |
||
| 3321 | * Set the nature menu3. |
||
| 3322 | * |
||
| 3323 | * @param string|null $natureMenu3 The nature menu3. |
||
| 3324 | * @return Dossier1 Returns this Dossier1. |
||
| 3325 | */ |
||
| 3326 | public function setNatureMenu3(?string $natureMenu3): Dossier1 { |
||
| 3330 | |||
| 3331 | /** |
||
| 3332 | * Set the nature menu4. |
||
| 3333 | * |
||
| 3334 | * @param string|null $natureMenu4 The nature menu4. |
||
| 3335 | * @return Dossier1 Returns this Dossier1. |
||
| 3336 | */ |
||
| 3337 | public function setNatureMenu4(?string $natureMenu4): Dossier1 { |
||
| 3341 | |||
| 3342 | /** |
||
| 3343 | * Set the nature menu5. |
||
| 3344 | * |
||
| 3345 | * @param string|null $natureMenu5 The nature menu5. |
||
| 3346 | * @return Dossier1 Returns this Dossier1. |
||
| 3347 | */ |
||
| 3348 | public function setNatureMenu5(?string $natureMenu5): Dossier1 { |
||
| 3352 | |||
| 3353 | /** |
||
| 3354 | * Set the nature menu6. |
||
| 3355 | * |
||
| 3356 | * @param string|null $natureMenu6 The nature menu6. |
||
| 3357 | * @return Dossier1 Returns this Dossier1. |
||
| 3358 | */ |
||
| 3359 | public function setNatureMenu6(?string $natureMenu6): Dossier1 { |
||
| 3363 | |||
| 3364 | /** |
||
| 3365 | * Set the nature menu7. |
||
| 3366 | * |
||
| 3367 | * @param string|null $natureMenu7 The nature menu7. |
||
| 3368 | * @return Dossier1 Returns this Dossier1. |
||
| 3369 | */ |
||
| 3370 | public function setNatureMenu7(?string $natureMenu7): Dossier1 { |
||
| 3374 | |||
| 3375 | /** |
||
| 3376 | * Set the nature menu8. |
||
| 3377 | * |
||
| 3378 | * @param string|null $natureMenu8 The nature menu8. |
||
| 3379 | * @return Dossier1 Returns this Dossier1. |
||
| 3380 | */ |
||
| 3381 | public function setNatureMenu8(?string $natureMenu8): Dossier1 { |
||
| 3385 | |||
| 3386 | /** |
||
| 3387 | * Set the nature menu9. |
||
| 3388 | * |
||
| 3389 | * @param string|null $natureMenu9 The nature menu9. |
||
| 3390 | * @return Dossier1 Returns this Dossier1. |
||
| 3391 | */ |
||
| 3392 | public function setNatureMenu9(?string $natureMenu9): Dossier1 { |
||
| 3396 | |||
| 3397 | /** |
||
| 3398 | * Set the nature regle1. |
||
| 3399 | * |
||
| 3400 | * @param string|null $natureRegle1 The nature regle1. |
||
| 3401 | * @return Dossier1 Returns this Dossier1. |
||
| 3402 | */ |
||
| 3403 | public function setNatureRegle1(?string $natureRegle1): Dossier1 { |
||
| 3407 | |||
| 3408 | /** |
||
| 3409 | * Set the nature regle10. |
||
| 3410 | * |
||
| 3411 | * @param string|null $natureRegle10 The nature regle10. |
||
| 3412 | * @return Dossier1 Returns this Dossier1. |
||
| 3413 | */ |
||
| 3414 | public function setNatureRegle10(?string $natureRegle10): Dossier1 { |
||
| 3418 | |||
| 3419 | /** |
||
| 3420 | * Set the nature regle2. |
||
| 3421 | * |
||
| 3422 | * @param string|null $natureRegle2 The nature regle2. |
||
| 3423 | * @return Dossier1 Returns this Dossier1. |
||
| 3424 | */ |
||
| 3425 | public function setNatureRegle2(?string $natureRegle2): Dossier1 { |
||
| 3429 | |||
| 3430 | /** |
||
| 3431 | * Set the nature regle3. |
||
| 3432 | * |
||
| 3433 | * @param string|null $natureRegle3 The nature regle3. |
||
| 3434 | * @return Dossier1 Returns this Dossier1. |
||
| 3435 | */ |
||
| 3436 | public function setNatureRegle3(?string $natureRegle3): Dossier1 { |
||
| 3440 | |||
| 3441 | /** |
||
| 3442 | * Set the nature regle4. |
||
| 3443 | * |
||
| 3444 | * @param string|null $natureRegle4 The nature regle4. |
||
| 3445 | * @return Dossier1 Returns this Dossier1. |
||
| 3446 | */ |
||
| 3447 | public function setNatureRegle4(?string $natureRegle4): Dossier1 { |
||
| 3451 | |||
| 3452 | /** |
||
| 3453 | * Set the nature regle5. |
||
| 3454 | * |
||
| 3455 | * @param string|null $natureRegle5 The nature regle5. |
||
| 3456 | * @return Dossier1 Returns this Dossier1. |
||
| 3457 | */ |
||
| 3458 | public function setNatureRegle5(?string $natureRegle5): Dossier1 { |
||
| 3462 | |||
| 3463 | /** |
||
| 3464 | * Set the nature regle6. |
||
| 3465 | * |
||
| 3466 | * @param string|null $natureRegle6 The nature regle6. |
||
| 3467 | * @return Dossier1 Returns this Dossier1. |
||
| 3468 | */ |
||
| 3469 | public function setNatureRegle6(?string $natureRegle6): Dossier1 { |
||
| 3473 | |||
| 3474 | /** |
||
| 3475 | * Set the nature regle7. |
||
| 3476 | * |
||
| 3477 | * @param string|null $natureRegle7 The nature regle7. |
||
| 3478 | * @return Dossier1 Returns this Dossier1. |
||
| 3479 | */ |
||
| 3480 | public function setNatureRegle7(?string $natureRegle7): Dossier1 { |
||
| 3484 | |||
| 3485 | /** |
||
| 3486 | * Set the nature regle8. |
||
| 3487 | * |
||
| 3488 | * @param string|null $natureRegle8 The nature regle8. |
||
| 3489 | * @return Dossier1 Returns this Dossier1. |
||
| 3490 | */ |
||
| 3491 | public function setNatureRegle8(?string $natureRegle8): Dossier1 { |
||
| 3495 | |||
| 3496 | /** |
||
| 3497 | * Set the nature regle9. |
||
| 3498 | * |
||
| 3499 | * @param string|null $natureRegle9 The nature regle9. |
||
| 3500 | * @return Dossier1 Returns this Dossier1. |
||
| 3501 | */ |
||
| 3502 | public function setNatureRegle9(?string $natureRegle9): Dossier1 { |
||
| 3506 | |||
| 3507 | /** |
||
| 3508 | * Set the niveau analytique. |
||
| 3509 | * |
||
| 3510 | * @param int|null $niveauAnalytique The niveau analytique. |
||
| 3511 | * @return Dossier1 Returns this Dossier1. |
||
| 3512 | */ |
||
| 3513 | public function setNiveauAnalytique(?int $niveauAnalytique): Dossier1 { |
||
| 3517 | |||
| 3518 | /** |
||
| 3519 | * Set the niveau droit1. |
||
| 3520 | * |
||
| 3521 | * @param string|null $niveauDroit1 The niveau droit1. |
||
| 3522 | * @return Dossier1 Returns this Dossier1. |
||
| 3523 | */ |
||
| 3524 | public function setNiveauDroit1(?string $niveauDroit1): Dossier1 { |
||
| 3528 | |||
| 3529 | /** |
||
| 3530 | * Set the niveau droit10. |
||
| 3531 | * |
||
| 3532 | * @param string|null $niveauDroit10 The niveau droit10. |
||
| 3533 | * @return Dossier1 Returns this Dossier1. |
||
| 3534 | */ |
||
| 3535 | public function setNiveauDroit10(?string $niveauDroit10): Dossier1 { |
||
| 3539 | |||
| 3540 | /** |
||
| 3541 | * Set the niveau droit2. |
||
| 3542 | * |
||
| 3543 | * @param string|null $niveauDroit2 The niveau droit2. |
||
| 3544 | * @return Dossier1 Returns this Dossier1. |
||
| 3545 | */ |
||
| 3546 | public function setNiveauDroit2(?string $niveauDroit2): Dossier1 { |
||
| 3550 | |||
| 3551 | /** |
||
| 3552 | * Set the niveau droit3. |
||
| 3553 | * |
||
| 3554 | * @param string|null $niveauDroit3 The niveau droit3. |
||
| 3555 | * @return Dossier1 Returns this Dossier1. |
||
| 3556 | */ |
||
| 3557 | public function setNiveauDroit3(?string $niveauDroit3): Dossier1 { |
||
| 3561 | |||
| 3562 | /** |
||
| 3563 | * Set the niveau droit4. |
||
| 3564 | * |
||
| 3565 | * @param string|null $niveauDroit4 The niveau droit4. |
||
| 3566 | * @return Dossier1 Returns this Dossier1. |
||
| 3567 | */ |
||
| 3568 | public function setNiveauDroit4(?string $niveauDroit4): Dossier1 { |
||
| 3572 | |||
| 3573 | /** |
||
| 3574 | * Set the niveau droit5. |
||
| 3575 | * |
||
| 3576 | * @param string|null $niveauDroit5 The niveau droit5. |
||
| 3577 | * @return Dossier1 Returns this Dossier1. |
||
| 3578 | */ |
||
| 3579 | public function setNiveauDroit5(?string $niveauDroit5): Dossier1 { |
||
| 3583 | |||
| 3584 | /** |
||
| 3585 | * Set the niveau droit6. |
||
| 3586 | * |
||
| 3587 | * @param string|null $niveauDroit6 The niveau droit6. |
||
| 3588 | * @return Dossier1 Returns this Dossier1. |
||
| 3589 | */ |
||
| 3590 | public function setNiveauDroit6(?string $niveauDroit6): Dossier1 { |
||
| 3594 | |||
| 3595 | /** |
||
| 3596 | * Set the niveau droit7. |
||
| 3597 | * |
||
| 3598 | * @param string|null $niveauDroit7 The niveau droit7. |
||
| 3599 | * @return Dossier1 Returns this Dossier1. |
||
| 3600 | */ |
||
| 3601 | public function setNiveauDroit7(?string $niveauDroit7): Dossier1 { |
||
| 3605 | |||
| 3606 | /** |
||
| 3607 | * Set the niveau droit8. |
||
| 3608 | * |
||
| 3609 | * @param string|null $niveauDroit8 The niveau droit8. |
||
| 3610 | * @return Dossier1 Returns this Dossier1. |
||
| 3611 | */ |
||
| 3612 | public function setNiveauDroit8(?string $niveauDroit8): Dossier1 { |
||
| 3616 | |||
| 3617 | /** |
||
| 3618 | * Set the niveau droit9. |
||
| 3619 | * |
||
| 3620 | * @param string|null $niveauDroit9 The niveau droit9. |
||
| 3621 | * @return Dossier1 Returns this Dossier1. |
||
| 3622 | */ |
||
| 3623 | public function setNiveauDroit9(?string $niveauDroit9): Dossier1 { |
||
| 3627 | |||
| 3628 | /** |
||
| 3629 | * Set the nom ville. |
||
| 3630 | * |
||
| 3631 | * @param string|null $nomVille The nom ville. |
||
| 3632 | * @return Dossier1 Returns this Dossier1. |
||
| 3633 | */ |
||
| 3634 | public function setNomVille(?string $nomVille): Dossier1 { |
||
| 3638 | |||
| 3639 | /** |
||
| 3640 | * Set the nom voie. |
||
| 3641 | * |
||
| 3642 | * @param string|null $nomVoie The nom voie. |
||
| 3643 | * @return Dossier1 Returns this Dossier1. |
||
| 3644 | */ |
||
| 3645 | public function setNomVoie(?string $nomVoie): Dossier1 { |
||
| 3649 | |||
| 3650 | /** |
||
| 3651 | * Set the num voie. |
||
| 3652 | * |
||
| 3653 | * @param string|null $numVoie The num voie. |
||
| 3654 | * @return Dossier1 Returns this Dossier1. |
||
| 3655 | */ |
||
| 3656 | public function setNumVoie(?string $numVoie): Dossier1 { |
||
| 3660 | |||
| 3661 | /** |
||
| 3662 | * Set the pas ecriture rb. |
||
| 3663 | * |
||
| 3664 | * @param bool|null $pasEcritureRb The pas ecriture rb. |
||
| 3665 | * @return Dossier1 Returns this Dossier1. |
||
| 3666 | */ |
||
| 3667 | public function setPasEcritureRb(?bool $pasEcritureRb): Dossier1 { |
||
| 3671 | |||
| 3672 | /** |
||
| 3673 | * Set the pas modif rib regl. |
||
| 3674 | * |
||
| 3675 | * @param bool|null $pasModifRibRegl The pas modif rib regl. |
||
| 3676 | * @return Dossier1 Returns this Dossier1. |
||
| 3677 | */ |
||
| 3678 | public function setPasModifRibRegl(?bool $pasModifRibRegl): Dossier1 { |
||
| 3682 | |||
| 3683 | /** |
||
| 3684 | * Set the periode cloturee. |
||
| 3685 | * |
||
| 3686 | * @param DateTime|null $periodeCloturee The periode cloturee. |
||
| 3687 | * @return Dossier1 Returns this Dossier1. |
||
| 3688 | */ |
||
| 3689 | public function setPeriodeCloturee(?DateTime $periodeCloturee): Dossier1 { |
||
| 3693 | |||
| 3694 | /** |
||
| 3695 | * Set the periode validee. |
||
| 3696 | * |
||
| 3697 | * @param DateTime|null $periodeValidee The periode validee. |
||
| 3698 | * @return Dossier1 Returns this Dossier1. |
||
| 3699 | */ |
||
| 3700 | public function setPeriodeValidee(?DateTime $periodeValidee): Dossier1 { |
||
| 3704 | |||
| 3705 | /** |
||
| 3706 | * Set the prochain num piece. |
||
| 3707 | * |
||
| 3708 | * @param int|null $prochainNumPiece The prochain num piece. |
||
| 3709 | * @return Dossier1 Returns this Dossier1. |
||
| 3710 | */ |
||
| 3711 | public function setProchainNumPiece(?int $prochainNumPiece): Dossier1 { |
||
| 3715 | |||
| 3716 | /** |
||
| 3717 | * Set the rc. |
||
| 3718 | * |
||
| 3719 | * @param string|null $rc The rc. |
||
| 3720 | * @return Dossier1 Returns this Dossier1. |
||
| 3721 | */ |
||
| 3722 | public function setRc(?string $rc): Dossier1 { |
||
| 3726 | |||
| 3727 | /** |
||
| 3728 | * Set the raison sociale. |
||
| 3729 | * |
||
| 3730 | * @param string|null $raisonSociale The raison sociale. |
||
| 3731 | * @return Dossier1 Returns this Dossier1. |
||
| 3732 | */ |
||
| 3733 | public function setRaisonSociale(?string $raisonSociale): Dossier1 { |
||
| 3737 | |||
| 3738 | /** |
||
| 3739 | * Set the saisie immo en ecriture. |
||
| 3740 | * |
||
| 3741 | * @param bool|null $saisieImmoEnEcriture The saisie immo en ecriture. |
||
| 3742 | * @return Dossier1 Returns this Dossier1. |
||
| 3743 | */ |
||
| 3744 | public function setSaisieImmoEnEcriture(?bool $saisieImmoEnEcriture): Dossier1 { |
||
| 3748 | |||
| 3749 | /** |
||
| 3750 | * Set the sauve commun. |
||
| 3751 | * |
||
| 3752 | * @param bool|null $sauveCommun The sauve commun. |
||
| 3753 | * @return Dossier1 Returns this Dossier1. |
||
| 3754 | */ |
||
| 3755 | public function setSauveCommun(?bool $sauveCommun): Dossier1 { |
||
| 3759 | |||
| 3760 | /** |
||
| 3761 | * Set the sauve compresse. |
||
| 3762 | * |
||
| 3763 | * @param bool|null $sauveCompresse The sauve compresse. |
||
| 3764 | * @return Dossier1 Returns this Dossier1. |
||
| 3765 | */ |
||
| 3766 | public function setSauveCompresse(?bool $sauveCompresse): Dossier1 { |
||
| 3770 | |||
| 3771 | /** |
||
| 3772 | * Set the siret. |
||
| 3773 | * |
||
| 3774 | * @param string|null $siret The siret. |
||
| 3775 | * @return Dossier1 Returns this Dossier1. |
||
| 3776 | */ |
||
| 3777 | public function setSiret(?string $siret): Dossier1 { |
||
| 3781 | |||
| 3782 | /** |
||
| 3783 | * Set the suivi aff tout. |
||
| 3784 | * |
||
| 3785 | * @param bool|null $suiviAffTout The suivi aff tout. |
||
| 3786 | * @return Dossier1 Returns this Dossier1. |
||
| 3787 | */ |
||
| 3788 | public function setSuiviAffTout(?bool $suiviAffTout): Dossier1 { |
||
| 3792 | |||
| 3793 | /** |
||
| 3794 | * Set the suivi ana2. |
||
| 3795 | * |
||
| 3796 | * @param string|null $suiviAna2 The suivi ana2. |
||
| 3797 | * @return Dossier1 Returns this Dossier1. |
||
| 3798 | */ |
||
| 3799 | public function setSuiviAna2(?string $suiviAna2): Dossier1 { |
||
| 3803 | |||
| 3804 | /** |
||
| 3805 | * Set the suivi ana classe0. |
||
| 3806 | * |
||
| 3807 | * @param bool|null $suiviAnaClasse0 The suivi ana classe0. |
||
| 3808 | * @return Dossier1 Returns this Dossier1. |
||
| 3809 | */ |
||
| 3810 | public function setSuiviAnaClasse0(?bool $suiviAnaClasse0): Dossier1 { |
||
| 3814 | |||
| 3815 | /** |
||
| 3816 | * Set the suivi ana classe1. |
||
| 3817 | * |
||
| 3818 | * @param bool|null $suiviAnaClasse1 The suivi ana classe1. |
||
| 3819 | * @return Dossier1 Returns this Dossier1. |
||
| 3820 | */ |
||
| 3821 | public function setSuiviAnaClasse1(?bool $suiviAnaClasse1): Dossier1 { |
||
| 3825 | |||
| 3826 | /** |
||
| 3827 | * Set the suivi ana classe2. |
||
| 3828 | * |
||
| 3829 | * @param bool|null $suiviAnaClasse2 The suivi ana classe2. |
||
| 3830 | * @return Dossier1 Returns this Dossier1. |
||
| 3831 | */ |
||
| 3832 | public function setSuiviAnaClasse2(?bool $suiviAnaClasse2): Dossier1 { |
||
| 3836 | |||
| 3837 | /** |
||
| 3838 | * Set the suivi ana classe3. |
||
| 3839 | * |
||
| 3840 | * @param bool|null $suiviAnaClasse3 The suivi ana classe3. |
||
| 3841 | * @return Dossier1 Returns this Dossier1. |
||
| 3842 | */ |
||
| 3843 | public function setSuiviAnaClasse3(?bool $suiviAnaClasse3): Dossier1 { |
||
| 3847 | |||
| 3848 | /** |
||
| 3849 | * Set the suivi ana classe4. |
||
| 3850 | * |
||
| 3851 | * @param bool|null $suiviAnaClasse4 The suivi ana classe4. |
||
| 3852 | * @return Dossier1 Returns this Dossier1. |
||
| 3853 | */ |
||
| 3854 | public function setSuiviAnaClasse4(?bool $suiviAnaClasse4): Dossier1 { |
||
| 3858 | |||
| 3859 | /** |
||
| 3860 | * Set the suivi ana classe5. |
||
| 3861 | * |
||
| 3862 | * @param bool|null $suiviAnaClasse5 The suivi ana classe5. |
||
| 3863 | * @return Dossier1 Returns this Dossier1. |
||
| 3864 | */ |
||
| 3865 | public function setSuiviAnaClasse5(?bool $suiviAnaClasse5): Dossier1 { |
||
| 3869 | |||
| 3870 | /** |
||
| 3871 | * Set the suivi ana classe8. |
||
| 3872 | * |
||
| 3873 | * @param bool|null $suiviAnaClasse8 The suivi ana classe8. |
||
| 3874 | * @return Dossier1 Returns this Dossier1. |
||
| 3875 | */ |
||
| 3876 | public function setSuiviAnaClasse8(?bool $suiviAnaClasse8): Dossier1 { |
||
| 3880 | |||
| 3881 | /** |
||
| 3882 | * Set the suivi ana classe9. |
||
| 3883 | * |
||
| 3884 | * @param bool|null $suiviAnaClasse9 The suivi ana classe9. |
||
| 3885 | * @return Dossier1 Returns this Dossier1. |
||
| 3886 | */ |
||
| 3887 | public function setSuiviAnaClasse9(?bool $suiviAnaClasse9): Dossier1 { |
||
| 3891 | |||
| 3892 | /** |
||
| 3893 | * Set the suivi ana facultatif. |
||
| 3894 | * |
||
| 3895 | * @param bool|null $suiviAnaFacultatif The suivi ana facultatif. |
||
| 3896 | * @return Dossier1 Returns this Dossier1. |
||
| 3897 | */ |
||
| 3898 | public function setSuiviAnaFacultatif(?bool $suiviAnaFacultatif): Dossier1 { |
||
| 3902 | |||
| 3903 | /** |
||
| 3904 | * Set the tva cle. |
||
| 3905 | * |
||
| 3906 | * @param string|null $tvaCle The tva cle. |
||
| 3907 | * @return Dossier1 Returns this Dossier1. |
||
| 3908 | */ |
||
| 3909 | public function setTvaCle(?string $tvaCle): Dossier1 { |
||
| 3913 | |||
| 3914 | /** |
||
| 3915 | * Set the tva code dossier. |
||
| 3916 | * |
||
| 3917 | * @param string|null $tvaCodeDossier The tva code dossier. |
||
| 3918 | * @return Dossier1 Returns this Dossier1. |
||
| 3919 | */ |
||
| 3920 | public function setTvaCodeDossier(?string $tvaCodeDossier): Dossier1 { |
||
| 3924 | |||
| 3925 | /** |
||
| 3926 | * Set the tva code recette. |
||
| 3927 | * |
||
| 3928 | * @param string|null $tvaCodeRecette The tva code recette. |
||
| 3929 | * @return Dossier1 Returns this Dossier1. |
||
| 3930 | */ |
||
| 3931 | public function setTvaCodeRecette(?string $tvaCodeRecette): Dossier1 { |
||
| 3935 | |||
| 3936 | /** |
||
| 3937 | * Set the ventilations communes. |
||
| 3938 | * |
||
| 3939 | * @param bool|null $ventilationsCommunes The ventilations communes. |
||
| 3940 | * @return Dossier1 Returns this Dossier1. |
||
| 3941 | */ |
||
| 3942 | public function setVentilationsCommunes(?bool $ventilationsCommunes): Dossier1 { |
||
| 3946 | } |
||
| 3947 |