@silexpert/core 0.4.21 → 0.4.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/es/api/resources/Account.d.ts +7 -1
  2. package/es/api/resources/Account.d.ts.map +1 -1
  3. package/es/api/resources/Account.js +15 -0
  4. package/es/api/resources/Account.js.map +1 -1
  5. package/es/api/resources/Cerfa.d.ts +5 -1
  6. package/es/api/resources/Cerfa.d.ts.map +1 -1
  7. package/es/api/resources/Cerfa.js +8 -0
  8. package/es/api/resources/Cerfa.js.map +1 -1
  9. package/es/api/resources/Sponsorship.d.ts +11 -0
  10. package/es/api/resources/Sponsorship.d.ts.map +1 -0
  11. package/es/api/resources/Sponsorship.js +34 -0
  12. package/es/api/resources/Sponsorship.js.map +1 -0
  13. package/es/api/resources.d.ts +2 -0
  14. package/es/api/resources.d.ts.map +1 -1
  15. package/es/api/resources.js +2 -0
  16. package/es/api/resources.js.map +1 -1
  17. package/es/types/Enum/SponsorshipState.d.ts +7 -0
  18. package/es/types/Enum/SponsorshipState.d.ts.map +1 -0
  19. package/es/types/Enum/SponsorshipState.js +8 -0
  20. package/es/types/Enum/SponsorshipState.js.map +1 -0
  21. package/es/types/Interface/api/cerfa/CreateCerfa.d.ts +512 -0
  22. package/es/types/Interface/api/cerfa/CreateCerfa.d.ts.map +1 -1
  23. package/es/types/Interface/api/cerfa/CreateCerfa.js +421 -0
  24. package/es/types/Interface/api/cerfa/CreateCerfa.js.map +1 -1
  25. package/es/types/Interface/models/IAccount.d.ts +1 -0
  26. package/es/types/Interface/models/IAccount.d.ts.map +1 -1
  27. package/es/types/Interface/models/IAccount.js.map +1 -1
  28. package/es/types/Interface/models/IAccountExtend.d.ts +6 -0
  29. package/es/types/Interface/models/IAccountExtend.d.ts.map +1 -0
  30. package/es/types/Interface/models/IAccountExtend.js +2 -0
  31. package/es/types/Interface/models/IAccountExtend.js.map +1 -0
  32. package/es/types/Interface/models/IApiError.d.ts +1 -0
  33. package/es/types/Interface/models/IApiError.d.ts.map +1 -1
  34. package/es/types/Interface/models/IApiError.js +1 -0
  35. package/es/types/Interface/models/IApiError.js.map +1 -1
  36. package/es/types/Interface/models/ISponsorship.d.ts.map +1 -1
  37. package/es/types/Interface/models/ISponsorship.js.map +1 -1
  38. package/es/types/Interface/models/ISponsorshipCheck.d.ts +6 -0
  39. package/es/types/Interface/models/ISponsorshipCheck.d.ts.map +1 -0
  40. package/es/types/Interface/models/ISponsorshipCheck.js +2 -0
  41. package/es/types/Interface/models/ISponsorshipCheck.js.map +1 -0
  42. package/es/types/Interface/models/ISponsorshipLink.d.ts.map +1 -1
  43. package/es/types/Interface/models/ISponsorshipLink.js.map +1 -1
  44. package/es/types/index.d.ts +3 -1
  45. package/es/types/index.d.ts.map +1 -1
  46. package/es/types/index.js +3 -1
  47. package/es/types/index.js.map +1 -1
  48. package/js/api/resources/Account.js +22 -0
  49. package/js/api/resources/Account.js.map +1 -1
  50. package/js/api/resources/Cerfa.js +9 -0
  51. package/js/api/resources/Cerfa.js.map +1 -1
  52. package/js/api/resources/Sponsorship.js +58 -0
  53. package/js/api/resources/Sponsorship.js.map +1 -0
  54. package/js/api/resources.js +3 -0
  55. package/js/api/resources.js.map +1 -1
  56. package/js/types/Enum/SponsorshipState.js +14 -0
  57. package/js/types/Enum/SponsorshipState.js.map +1 -0
  58. package/js/types/Interface/api/cerfa/CreateCerfa.js +277 -1
  59. package/js/types/Interface/api/cerfa/CreateCerfa.js.map +1 -1
  60. package/js/types/Interface/models/IAccountExtend.js +6 -0
  61. package/js/types/Interface/models/IAccountExtend.js.map +1 -0
  62. package/js/types/Interface/models/IApiError.js +2 -1
  63. package/js/types/Interface/models/IApiError.js.map +1 -1
  64. package/js/types/Interface/models/ISponsorshipCheck.js +6 -0
  65. package/js/types/Interface/models/ISponsorshipCheck.js.map +1 -0
  66. package/js/types/index.js +27 -3
  67. package/js/types/index.js.map +1 -1
  68. package/package.json +16 -16
  69. package/ts/api/resources/Account.ts +24 -1
  70. package/ts/api/resources/Cerfa.ts +9 -1
  71. package/ts/api/resources/Sponsorship.ts +31 -0
  72. package/ts/api/resources.ts +2 -0
  73. package/ts/types/Enum/SponsorshipState.ts +6 -0
  74. package/ts/types/Interface/api/cerfa/CreateCerfa.ts +723 -0
  75. package/ts/types/Interface/models/IAccount.ts +1 -0
  76. package/ts/types/Interface/models/IAccountExtend.ts +6 -0
  77. package/ts/types/Interface/models/IApiError.ts +1 -0
  78. package/ts/types/Interface/models/ISponsorship.ts +0 -1
  79. package/ts/types/Interface/models/ISponsorshipCheck.ts +6 -0
  80. package/ts/types/Interface/models/ISponsorshipLink.ts +0 -1
  81. package/ts/types/index.ts +3 -1
  82. package/es/types/Enum/SponsorshipEmailState.d.ts +0 -6
  83. package/es/types/Enum/SponsorshipEmailState.d.ts.map +0 -1
  84. package/es/types/Enum/SponsorshipEmailState.js +0 -7
  85. package/es/types/Enum/SponsorshipEmailState.js.map +0 -1
  86. package/js/types/Enum/SponsorshipEmailState.js +0 -13
  87. package/js/types/Enum/SponsorshipEmailState.js.map +0 -1
  88. package/ts/types/Enum/SponsorshipEmailState.ts +0 -5
@@ -347,4 +347,727 @@ export class ParamsGenerate2035 {
347
347
 
348
348
  @ApiPropertyOptional()
349
349
  miscellaneousToBeDeductedTotal?: number | null; // Divers à déduire (CL)
350
+ }
351
+
352
+ /**
353
+ * CERFA 2033 TYPES
354
+ */
355
+ export class Cerfa2033Society {
356
+ name: string;
357
+ address: string;
358
+ addressFormatted: string;
359
+ siret: string;
360
+ siren: string;
361
+ zipCode: string;
362
+ city: string;
363
+ }
364
+
365
+ export type Cerfa2033ActiveValues = {
366
+ gross: number;
367
+ amortization: number;
368
+ net: number;
369
+ };
370
+
371
+ export class Cerfa2033FixedAsset {
372
+ intangibleAssetsCommercialFunds: Cerfa2033ActiveValues;
373
+ intangibleAssetsOther: Cerfa2033ActiveValues;
374
+ tangibleFixedAssets: Cerfa2033ActiveValues;
375
+ financialFixedAssets: Cerfa2033ActiveValues;
376
+ total: Cerfa2033ActiveValues;
377
+ }
378
+
379
+ export class Cerfa2033CirculatingActive {
380
+ rawMaterials: Cerfa2033ActiveValues;
381
+ merchandise: Cerfa2033ActiveValues;
382
+ advancesAndDeposit: Cerfa2033ActiveValues;
383
+ claimsCustomers: Cerfa2033ActiveValues;
384
+ claimsOthers: Cerfa2033ActiveValues;
385
+ investmentSecurities: Cerfa2033ActiveValues;
386
+ availabilities: Cerfa2033ActiveValues;
387
+ prepaidExpenses: Cerfa2033ActiveValues;
388
+ total: Cerfa2033ActiveValues;
389
+ }
390
+
391
+ export class Cerfa2033Equity {
392
+ shareCapital: number;
393
+ revaluationDifferences: number;
394
+ legalReserve: number;
395
+ reglemented: number;
396
+ otherReserve: {
397
+ purchaseOfOriginalWorks: number;
398
+ total: number;
399
+ };
400
+ deferralAgain: number;
401
+ resultOfTheExercise: number;
402
+ regulatedProvisions: number;
403
+ total: number;
404
+ }
405
+
406
+ export class Cerfa2033Debts {
407
+ loansAndSimilarDebts: number;
408
+ advances: number;
409
+ accountsPayable: number;
410
+ otherDebts: {
411
+ partnerCurrentAccount: number;
412
+ total: number;
413
+ };
414
+ prepaid: number;
415
+ total: number;
416
+ }
417
+
418
+ export class Cerfa2033Referrals {
419
+ fixedAssets: number;
420
+ debtsMoreThanOneYear: number;
421
+ claims: number; // créances
422
+ currentAccount: number;
423
+ costOfAcquired: number;
424
+ sellPriceWithoutVat: number;
425
+ }
426
+
427
+ export class Cerfa2033ExeploitationProducts {
428
+ saleOfMerchandise: {
429
+ export: number;
430
+ total: number;
431
+ };
432
+ saleOfProduction: {
433
+ goods: {
434
+ export: number;
435
+ total: number;
436
+ };
437
+ services: {
438
+ export: number;
439
+ total: number;
440
+ };
441
+ };
442
+ stockedProduction: number;
443
+ immobilizedProduction: number;
444
+ operatingGrants: number;
445
+ otherProducts: number;
446
+ total: number;
447
+ }
448
+
449
+ export class Cerfa2033ExploitationExpenses {
450
+ purchaseOfMerchandise: number;
451
+ stockVariationMerchandise: number;
452
+ purchaseOfRawMaterials: number;
453
+ stockVariationRawMaterials: number;
454
+ otherExternalExpenses: {
455
+ loanFurniture: number;
456
+ loanRealEstate: number;
457
+ total: number;
458
+ };
459
+ tax: {
460
+ CFEandCVAE: number;
461
+ total: number;
462
+ };
463
+ remunerations: number;
464
+ social: number;
465
+ amortization: number;
466
+ provisions: number;
467
+ otherExpenses: {
468
+ provisions: number;
469
+ cotisations: number;
470
+ total: number;
471
+ };
472
+ total: number;
473
+ }
474
+
475
+ export class Cerfa2033AccountingIncome {
476
+ isIncomeTax: boolean;
477
+ exploitationProducts: Cerfa2033ExeploitationProducts;
478
+ exploitationExpenses: Cerfa2033ExploitationExpenses;
479
+ }
480
+
481
+ export class Cerfa2033ExploitationResult {
482
+ total: number;
483
+ financialProducts: number;
484
+ financialExpenses: number;
485
+ exceptionalProducts: number;
486
+ exceptionalExpenses: {
487
+ subscriptions: number;
488
+ exceptional: number;
489
+ total: number
490
+ };
491
+ benefitTax: number;
492
+ }
493
+
494
+ export class Cerfa2033FiscalResult {
495
+ reinstatements: {
496
+ benefitIncome: number;
497
+ deficitIncome: number;
498
+ remunerations: number;
499
+ amortizations: number;
500
+ provisions: number;
501
+ tax: number;
502
+ diverse: number;
503
+ deviations: number;
504
+ line330: number;
505
+ fractionOfRents: number;
506
+ shareOfRent: number;
507
+ relatedCharges: number;
508
+ fiscalResult: number;
509
+ };
510
+ deductions: {
511
+ maritimeTransport: number;
512
+ newBusiness: number;
513
+ ZFU: number;
514
+ difficultBusiness: number;
515
+ JEI: number;
516
+ ZRD: number;
517
+ ZRR: number;
518
+ revitalize: number;
519
+ overseasInvestment: number;
520
+ ZFANG: number;
521
+ BUD: number;
522
+ priorityDevelopment: number;
523
+ total: number;
524
+ diverse: {
525
+ debt: number;
526
+ exceptionalDeduction: number;
527
+ exceptionalDeductionA: number;
528
+ exceptionalDeductionB: number;
529
+ exceptionalDeductionC: number;
530
+ exceptionalDeductionD: number;
531
+ exceptionalDeductionE: number;
532
+ exceptionalDeductionF: number;
533
+ exceptionalDeductionG: number;
534
+ total: number;
535
+ };
536
+ resultBeforeImputation: {
537
+ benefit: number;
538
+ deficit: number;
539
+ };
540
+ deficits: {
541
+ exercise: number;
542
+ reportable: number;
543
+ imputed: number;
544
+ };
545
+ fiscalResultAfterImputation: {
546
+ benefit: number;
547
+ deficit: number;
548
+ }
549
+ };
550
+ }
551
+
552
+ export type ImmobilizationsArray = {
553
+ grossValueOfExerciseBegining: number;
554
+ increases: number;
555
+ decreases: number;
556
+ grossValueOfExerciseFinishing: number;
557
+ legalReevaluation: number;
558
+ };
559
+
560
+ export class Cerfa2033Immobilizations {
561
+ commercialFunds: ImmobilizationsArray;
562
+ other: ImmobilizationsArray;
563
+ land: ImmobilizationsArray;
564
+ constructions: ImmobilizationsArray;
565
+ technicalInstallations: ImmobilizationsArray;
566
+ generalInstallations: ImmobilizationsArray;
567
+ equipmentTransportation: ImmobilizationsArray;
568
+ bodily: ImmobilizationsArray;
569
+ financial: ImmobilizationsArray;
570
+ total: ImmobilizationsArray;
571
+ }
572
+
573
+ export type AmortizationArray = {
574
+ exerciseBegining: number;
575
+ increases: number;
576
+ diminution: number;
577
+ exerciseFinishing: number;
578
+ };
579
+
580
+ export class Cerfa2033Amortizations {
581
+ intangible: AmortizationArray;
582
+ lands: AmortizationArray;
583
+ constructions: AmortizationArray;
584
+ technicalInstallations: AmortizationArray;
585
+ generalInstallations: AmortizationArray;
586
+ equipmentTransportation: AmortizationArray;
587
+ bodily: AmortizationArray;
588
+ total: AmortizationArray;
589
+ }
590
+
591
+ export type Cerfa2033TaxableValues = {
592
+ active: number;
593
+ amortizations: number;
594
+ residualValue: number;
595
+ salePrice: number;
596
+ shortTerm: number;
597
+ longTerm19: number;
598
+ longTerm15or128: number;
599
+ longTerm0: number;
600
+ };
601
+
602
+ export class Cerfa2033Values {
603
+ natures: string[];
604
+ immobilizations: {
605
+ list: Cerfa2033TaxableValues[];
606
+ total: Cerfa2033TaxableValues;
607
+ };
608
+ taxableGains: {
609
+ residualValue: number;
610
+ shortTerm: number;
611
+ longTerm19: number;
612
+ longTerm15or128: number;
613
+ longTerm0: number;
614
+ };
615
+ total: {
616
+ shortTerm: number;
617
+ longTerm19: number;
618
+ longTerm15or128: number;
619
+ longTerm0: number;
620
+ };
621
+ }
622
+
623
+ export type Cerfa2033ProvisionNaturesArray = {
624
+ beginingAmount: number;
625
+ increases: number;
626
+ diminution: number;
627
+ finishingAmount: number;
628
+ };
629
+ export class Cerfa2033ProvisionNatures {
630
+ amortizations: Cerfa2033ProvisionNaturesArray;
631
+ majorations: Cerfa2033ProvisionNaturesArray;
632
+ other: Cerfa2033ProvisionNaturesArray;
633
+ risk: Cerfa2033ProvisionNaturesArray;
634
+ immobilizations: Cerfa2033ProvisionNaturesArray;
635
+ stock: Cerfa2033ProvisionNaturesArray;
636
+ clientAccounts: Cerfa2033ProvisionNaturesArray;
637
+ depreviation: Cerfa2033ProvisionNaturesArray;
638
+ total: Cerfa2033ProvisionNaturesArray;
639
+ }
640
+
641
+ export type Cerfa2033ProvisionMovesDotationsAndRevivals = {
642
+ dotations: number;
643
+ revivals: number;
644
+ };
645
+
646
+ export type Cerfa2033ProvisionMovesVentilation = {
647
+ label: number;
648
+ amount: number;
649
+ };
650
+
651
+ export class Cerfa2033ProvisionMoves {
652
+ bodily: Cerfa2033ProvisionMovesDotationsAndRevivals;
653
+ land: Cerfa2033ProvisionMovesDotationsAndRevivals;
654
+ constructions: Cerfa2033ProvisionMovesDotationsAndRevivals;
655
+ technicalInstallations: Cerfa2033ProvisionMovesDotationsAndRevivals;
656
+ generalInstallations: Cerfa2033ProvisionMovesDotationsAndRevivals;
657
+ equipmentTransportation: Cerfa2033ProvisionMovesDotationsAndRevivals;
658
+ other: Cerfa2033ProvisionMovesDotationsAndRevivals;
659
+ total: Cerfa2033ProvisionMovesDotationsAndRevivals;
660
+ }
661
+
662
+ export class Cerfa2033ReportableDeficits {
663
+ remaining: number;
664
+ transferred: number;
665
+ operations: number;
666
+ imputed: number;
667
+ reportable: number;
668
+ exercise: number;
669
+ total: number;
670
+ }
671
+
672
+ export class Cerfa2033ApplicationDeficits {
673
+ result: number;
674
+ stranger: number;
675
+ }
676
+
677
+ export class Cerfa2033ApplicationDiverse {
678
+ bonuses: {
679
+ deductible: number;
680
+ cotisations: number;
681
+ total: number;
682
+ };
683
+ cotisations: {
684
+ deductible: number;
685
+ total: number;
686
+ };
687
+ approvedManagementCenter: number;
688
+ vatCollected: number;
689
+ vatDeductible: number;
690
+ specimens: number;
691
+ aidReceived: number;
692
+ investment: number;
693
+ }
694
+
695
+ export class Cerfa2033WorkForce {
696
+ isNil: boolean;
697
+ declaration?: {
698
+ average: number;
699
+ apprentices: number;
700
+ handicapped: number;
701
+ artisanal: number;
702
+ };
703
+ addedValue?: {
704
+ saleOfProducts: number;
705
+ licences: number;
706
+ saleOfImmobilizations: number;
707
+ expensesTransfert: number;
708
+ total1: number;
709
+ otherProducts: number;
710
+ production: number;
711
+ subventions: number;
712
+ positiveVariation: number;
713
+ deductibleExpensesTransfert: number;
714
+ debts: number;
715
+ total2: number;
716
+ purchases: number;
717
+ negativeVariation: number;
718
+ services: number;
719
+ rents: number;
720
+ taxes: number;
721
+ otherManagementExpenses: number;
722
+ deductibleExpenses: number;
723
+ deductibleFraction: number;
724
+ lessValues: number;
725
+ total3: number;
726
+ addValue: number;
727
+ cotisation: number;
728
+ };
729
+ CVAE?: {
730
+ isEstablishment: boolean;
731
+ turnover: number;
732
+ workforce: number;
733
+ turnoverGroup: number;
734
+ period: {
735
+ startDate: string;
736
+ endDate: string;
737
+ };
738
+ cessationDate: string;
739
+ };
740
+ }
741
+ export interface Cerfa2033ShareCapital {
742
+ moralAssociates: number;
743
+ moralAssociatesShares: number;
744
+ physicAssociates: number;
745
+ physicAssociatesShares: number;
746
+ moralShareholder: MoralShareholder[];
747
+ physicShareholder: PhysicShareholder[];
748
+ }
749
+
750
+ export interface Cerfa2033 {
751
+ isNil: boolean;
752
+ society: Cerfa2033Society;
753
+ period: {
754
+ startDate: Date,
755
+ endDate: Date,
756
+ endDay: string,
757
+ endMonth: string,
758
+ endYear: string,
759
+ months: string,
760
+ previousExerciceMonths: string
761
+ };
762
+ fixedAsset: Cerfa2033FixedAsset;
763
+ circulatingActive: Cerfa2033CirculatingActive;
764
+ totalActive: Cerfa2033ActiveValues;
765
+ equity: Cerfa2033Equity;
766
+ provisionsForRisks: number;
767
+ debts: Cerfa2033Debts;
768
+ generalTotal: number;
769
+ referrals: Cerfa2033Referrals;
770
+ accountingIncome: Cerfa2033AccountingIncome;
771
+ exploitationResult: Cerfa2033ExploitationResult;
772
+ benefitsOrLoses: number;
773
+ fiscalResult: Cerfa2033FiscalResult;
774
+ immobilizations: Cerfa2033Immobilizations;
775
+ amortizations: Cerfa2033Amortizations;
776
+ values: Cerfa2033Values;
777
+ provisions: Cerfa2033ProvisionNatures;
778
+ provisionsMoves: Cerfa2033ProvisionMoves;
779
+ ventilations: {
780
+ list: Cerfa2033ProvisionMovesVentilation[],
781
+ total: number;
782
+ },
783
+ reportableDeficits: Cerfa2033ReportableDeficits;
784
+ applicationDeficits: Cerfa2033ApplicationDeficits;
785
+ diverse: Cerfa2033ApplicationDiverse;
786
+ workForce: Cerfa2033WorkForce;
787
+ shareCapital: Cerfa2033ShareCapital;
788
+ subsidiaries: { total: number, list: Subsidiarie[], isSubsidiariesNil: boolean };
789
+ }
790
+
791
+ export class ParamsGenerate2033 {
792
+ @ApiProperty()
793
+ isTest?: boolean; // Modifie le chemin du PDF
794
+
795
+ @ApiProperty()
796
+ isNil: boolean; // Néant
797
+
798
+ @ApiPropertyOptional()
799
+ equityOtherReservePurchaseOfOriginalWorks?: number | null; // Passif > Capitaux propres > Autres réserves (ligne 131)
800
+
801
+ @ApiPropertyOptional()
802
+ referralFixedAssets?: number | null; // Passif > Renvois > Dont immobilisations financières à moins d'un an (ligne 193)
803
+
804
+ @ApiPropertyOptional()
805
+ referralDebtsMoreThanOneYear?: number | null; // Passif > Renvois > Dont immobilisations financières à moins d'un an (ligne 195)
806
+
807
+ @ApiPropertyOptional()
808
+ referralClaims?: number | null; // Passif > Renvois > Dont immobilisations financières à moins d'un an (ligne 197)
809
+
810
+ @ApiPropertyOptional()
811
+ saleOfMerchandiseExport?: number | null; // Résultat comptable > Produits d'exploitation > Ventes de marchandises > Dont export (ligne 209)
812
+
813
+ @ApiPropertyOptional()
814
+ saleOfProductionGoodsExport?: number | null; // Résultat comptable > Produits d'exploitation > Production vendue - biens > Dont export (ligne 215)
815
+
816
+ @ApiPropertyOptional()
817
+ saleOfProductionServicesExport?: number | null; // Résultat comptable > Produits d'exploitation > Production vendue - services > Dont export (ligne 217)
818
+
819
+ @ApiPropertyOptional()
820
+ otherExpensesProvisions?: number | null; // Résultat comptable > Charges d'exploitation > Autres charges > dont provisions fiscales pour implantations commerciales à l'étranger (ligne 259)
821
+
822
+ @ApiPropertyOptional()
823
+ otherExpensesCotisations?: number | null; // Résultat comptable > Charges d'exploitation > Autres charges > dont provisions fiscales pour implantations commerciales à l'étranger (ligne 260)
824
+
825
+ @ApiPropertyOptional()
826
+ exceptionalExpensesSubscriptions?: number | null; // Résultat d'exploitation > Charges exceptionnelles > dont amortissements des souscriptions
827
+
828
+ @ApiPropertyOptional()
829
+ exceptionalExpensesExceptional?: number | null; // Résultat d'exploitation > Charges exceptionnelles > dont amortissements exceptionnels
830
+
831
+ @ApiPropertyOptional()
832
+ reinstatementsRemuneration?: number | null; // Résultat fiscal > Rémunérations et avantages personnels non déductibles (ligne 316)
833
+
834
+ @ApiPropertyOptional()
835
+ reinstatementsAmortizations?: number | null; // Résultat fiscal > Amortissements excédentaires (art. 39-4 du CGI) et autres amortissements non déductibles (ligne 318)
836
+
837
+ @ApiPropertyOptional()
838
+ reinstatementsProvisions?: number | null; // Résultat fiscal > Provisions non déductibles (ligne 322)
839
+
840
+ @ApiPropertyOptional()
841
+ reinstatementsDiverse?: number | null; // Résultat fiscal > Réintégrations (ligne 247)
842
+
843
+ @ApiPropertyOptional()
844
+ reinstatementsDeviations?: number | null; // Résultat fiscal > Réintégrations (ligne 248)
845
+
846
+ @ApiPropertyOptional()
847
+ reinstatementsShareOfRent?: number | null; // Résultat fiscal > Réintégrations (ligne )
848
+
849
+ @ApiPropertyOptional()
850
+ reinstatementsFractionOfRents?: number | null; // Résultat fiscal > Réintégrations (ligne 249)
851
+
852
+ @ApiPropertyOptional()
853
+ reinstatementsRelatedCharges?: number | null; // Résultat fiscal > Réintégrations (ligne 998)
854
+
855
+ @ApiPropertyOptional()
856
+ reinstatementsFiscalResult?: number | null; // Résultat fiscal > Réintégrations (ligne 999)
857
+
858
+ @ApiPropertyOptional()
859
+ maritimeTransportDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 997)
860
+
861
+ @ApiPropertyOptional()
862
+ newBusinessDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 986)
863
+
864
+ @ApiPropertyOptional()
865
+ ZFUDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 987)
866
+
867
+ @ApiPropertyOptional()
868
+ difficultBusinessDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 981)
869
+
870
+ @ApiPropertyOptional()
871
+ JEIDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 989)
872
+
873
+ @ApiPropertyOptional()
874
+ ZRDDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 127)
875
+
876
+ @ApiPropertyOptional()
877
+ ZRRDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 138)
878
+
879
+ @ApiPropertyOptional()
880
+ revitalizeDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 991)
881
+
882
+ @ApiPropertyOptional()
883
+ overseasInvestmentDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 344)
884
+
885
+ @ApiPropertyOptional()
886
+ ZFANGDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 345)
887
+
888
+ @ApiPropertyOptional()
889
+ BUDDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 992)
890
+
891
+ @ApiPropertyOptional()
892
+ priorityDevelopmentDeduction?: number | null; // Résultat fiscal > Déductions > ( ligne 993)
893
+
894
+ @ApiPropertyOptional()
895
+ diverseDebts?: number | null; // Résultat fiscal > Divers
896
+
897
+ @ApiPropertyOptional()
898
+ exceptionalDeduction?: number | null; // Résultat fiscal > Divers
899
+
900
+ @ApiPropertyOptional()
901
+ exceptionalDeductionA?: number | null; // Résultat fiscal > Divers
902
+
903
+ @ApiPropertyOptional()
904
+ exceptionalDeductionB?: number | null; // Résultat fiscal > Divers
905
+
906
+ @ApiPropertyOptional()
907
+ exceptionalDeductionC?: number | null; // Résultat fiscal > Divers
908
+
909
+ @ApiPropertyOptional()
910
+ exceptionalDeductionD?: number | null; // Résultat fiscal > Divers
911
+
912
+ @ApiPropertyOptional()
913
+ exceptionalDeductionE?: number | null; // Résultat fiscal > Divers
914
+
915
+ @ApiPropertyOptional()
916
+ exceptionalDeductionF?: number | null; // Résultat fiscal > Divers
917
+
918
+ @ApiPropertyOptional()
919
+ exceptionalDeductionG?: number | null; // Résultat fiscal > Divers
920
+
921
+ @ApiPropertyOptional()
922
+ deficitsExercise?: number | null; // Déficit de l'exercice reporté en arrière
923
+
924
+ @ApiPropertyOptional()
925
+ deficitsReportable?: number | null; // Déficits antérieurs reportables
926
+
927
+ @ApiPropertyOptional()
928
+ deficitsImputed?: number | null; // dont imputés sur le résultat
929
+
930
+ @ApiPropertyOptional()
931
+ addedValueNatures?: string[]; // Nature des immobilisations cédées virées de poste à poste, mise hors service ou réintégrées dans le patrimoine privé
932
+
933
+ @ApiPropertyOptional()
934
+ majorationsBeginingAmount?: number;
935
+
936
+ @ApiPropertyOptional()
937
+ majorationsIncreases?: number;
938
+
939
+ @ApiPropertyOptional()
940
+ majorationsDiminution?: number;
941
+
942
+ @ApiPropertyOptional()
943
+ provisionsMovesBodilyDotations?: number;
944
+
945
+ @ApiPropertyOptional()
946
+ provisionsMovesBodilyRevivals?: number;
947
+
948
+ @ApiPropertyOptional()
949
+ provisionsMovesBodilyAmount?: number;
950
+
951
+ @ApiPropertyOptional()
952
+ provisionsMovesLandDotations?: number;
953
+
954
+ @ApiPropertyOptional()
955
+ provisionsMovesLandRevivals?: number;
956
+
957
+ @ApiPropertyOptional()
958
+ provisionsMovesLandLabel?: number;
959
+
960
+ @ApiPropertyOptional()
961
+ provisionsMovesLandAmount?: number;
962
+
963
+ @ApiPropertyOptional()
964
+ provisionsMovesConstructionsDotations?: number;
965
+
966
+ @ApiPropertyOptional()
967
+ provisionsMovesConstructionsRevivals?: number;
968
+
969
+ @ApiPropertyOptional()
970
+ provisionsMovesConstructionsLabel?: number;
971
+
972
+ @ApiPropertyOptional()
973
+ provisionsMovesConstructionsAmount?: number;
974
+
975
+ @ApiPropertyOptional()
976
+ provisionsMovesTechicalInstallationsDotations?: number;
977
+
978
+ @ApiPropertyOptional()
979
+ provisionsMovesTechicalInstallationsRevivals?: number;
980
+
981
+ @ApiPropertyOptional()
982
+ provisionsMovesTechicalInstallationsLabel?: number;
983
+
984
+ @ApiPropertyOptional()
985
+ provisionsMovesTechicalInstallationsAmount?: number;
986
+
987
+ @ApiPropertyOptional()
988
+ provisionsMovesGeneralInstallationsDotations?: number;
989
+
990
+ @ApiPropertyOptional()
991
+ provisionsMovesGeneralInstallationsRevivals?: number;
992
+
993
+ @ApiPropertyOptional()
994
+ provisionsMovesGeneralInstallationsLabel?: number;
995
+
996
+ @ApiPropertyOptional()
997
+ provisionsMovesGeneralInstallationsAmount?: number;
998
+
999
+ @ApiPropertyOptional()
1000
+ provisionsMovesEquipmentTransactionDotations?: number;
1001
+
1002
+ @ApiPropertyOptional()
1003
+ provisionsMovesEquipmentTransactionRevivals?: number;
1004
+
1005
+ @ApiPropertyOptional()
1006
+ provisionsMovesEquipmentTransactionLabel?: number;
1007
+
1008
+ @ApiPropertyOptional()
1009
+ provisionsMovesEquipmentTransactionAmount?: number;
1010
+
1011
+ @ApiPropertyOptional()
1012
+ provisionsMovesOtherDotations?: number;
1013
+
1014
+ @ApiPropertyOptional()
1015
+ provisionsMovesOtherRevivals?: number;
1016
+
1017
+ @ApiPropertyOptional()
1018
+ provisionsMovesOtherLabel?: number;
1019
+
1020
+ @ApiPropertyOptional()
1021
+ provisionsMovesOtherAmount?: number;
1022
+
1023
+ @ApiPropertyOptional()
1024
+ ventilations?: Cerfa2033ProvisionMovesVentilation[];
1025
+
1026
+ @ApiPropertyOptional()
1027
+ applicationDeficitsResult?: number;
1028
+
1029
+ @ApiPropertyOptional()
1030
+ applicationDeficitsStranger?: number;
1031
+
1032
+ @ApiPropertyOptional()
1033
+ applicationDeficitsDeductible?: number;
1034
+
1035
+ @ApiPropertyOptional()
1036
+ applicationDeficitsCotisations?: number;
1037
+
1038
+ @ApiPropertyOptional()
1039
+ applicationDeficitsTotal?: number;
1040
+
1041
+ @ApiPropertyOptional()
1042
+ cotisationsDeductible?: number;
1043
+
1044
+ @ApiPropertyOptional()
1045
+ cotisationsTotal?: number;
1046
+
1047
+ @ApiPropertyOptional()
1048
+ approvedManagementCenter?: number;
1049
+
1050
+ @ApiPropertyOptional()
1051
+ vatCollected?: number;
1052
+
1053
+ @ApiPropertyOptional()
1054
+ vatDeductible?: number;
1055
+
1056
+ @ApiPropertyOptional()
1057
+ specimens?: number;
1058
+
1059
+ @ApiPropertyOptional()
1060
+ aidReceived?: number;
1061
+
1062
+ @ApiPropertyOptional()
1063
+ investment?: number;
1064
+
1065
+ @ApiPropertyOptional()
1066
+ reportableDeficitsTransferred?: number;
1067
+
1068
+ @ApiPropertyOptional()
1069
+ reportableDeficitsOperations?: number;
1070
+
1071
+ @ApiPropertyOptional()
1072
+ deductionsDiverseTotal?: number;
350
1073
  }