@silexpert/core 1.3.175 → 1.3.177-0

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 (35) hide show
  1. package/dist/cjs/api/resources.d.ts +1 -1
  2. package/dist/cjs/api/resources.js +1 -1
  3. package/dist/cjs/api/resources.js.map +1 -1
  4. package/dist/cjs/types/Enum/Ged.d.ts +0 -1
  5. package/dist/cjs/types/Enum/Ged.d.ts.map +1 -1
  6. package/dist/cjs/types/Enum/Ged.js +13 -136
  7. package/dist/cjs/types/Enum/Ged.js.map +1 -1
  8. package/dist/cjs/types/Enum/InformationRequestState.d.ts +2 -1
  9. package/dist/cjs/types/Enum/InformationRequestState.d.ts.map +1 -1
  10. package/dist/cjs/types/Enum/InformationRequestState.js +1 -0
  11. package/dist/cjs/types/Enum/InformationRequestState.js.map +1 -1
  12. package/dist/cjs/types/Interface/api/revenue/revenueMovement.d.ts +28 -4
  13. package/dist/cjs/types/Interface/api/revenue/revenueMovement.d.ts.map +1 -1
  14. package/dist/cjs/types/Interface/api/revenue/revenueMovement.js +65 -7
  15. package/dist/cjs/types/Interface/api/revenue/revenueMovement.js.map +1 -1
  16. package/dist/mjs/api/resources.d.ts +1 -1
  17. package/dist/mjs/api/resources.js +1 -1
  18. package/dist/mjs/api/resources.js.map +1 -1
  19. package/dist/mjs/types/Enum/Ged.d.ts +0 -1
  20. package/dist/mjs/types/Enum/Ged.d.ts.map +1 -1
  21. package/dist/mjs/types/Enum/Ged.js +13 -136
  22. package/dist/mjs/types/Enum/Ged.js.map +1 -1
  23. package/dist/mjs/types/Enum/InformationRequestState.d.ts +2 -1
  24. package/dist/mjs/types/Enum/InformationRequestState.d.ts.map +1 -1
  25. package/dist/mjs/types/Enum/InformationRequestState.js +1 -0
  26. package/dist/mjs/types/Enum/InformationRequestState.js.map +1 -1
  27. package/dist/mjs/types/Interface/api/revenue/revenueMovement.d.ts +28 -4
  28. package/dist/mjs/types/Interface/api/revenue/revenueMovement.d.ts.map +1 -1
  29. package/dist/mjs/types/Interface/api/revenue/revenueMovement.js +63 -6
  30. package/dist/mjs/types/Interface/api/revenue/revenueMovement.js.map +1 -1
  31. package/package.json +1 -1
  32. package/ts/api/resources.ts +1 -1
  33. package/ts/types/Enum/Ged.ts +212 -333
  34. package/ts/types/Enum/InformationRequestState.ts +1 -0
  35. package/ts/types/Interface/api/revenue/revenueMovement.ts +67 -5
@@ -282,7 +282,7 @@ export const GedFileTypeDetail = {
282
282
  },
283
283
  IDENTITY_CARD: {
284
284
  id: GedFileType.IDENTITY_CARD,
285
- name: 'Carte d\'identité',
285
+ name: "Carte d'identité",
286
286
  idGedFolder: GedFolder.KBIS,
287
287
  typeFile: TypeFile.IDENTITY_CARD_RECTO,
288
288
  },
@@ -416,203 +416,185 @@ export const GedFolderList: Array<{
416
416
  idGedCategory: GedCategory;
417
417
  name: string;
418
418
  }> = [
419
- {
420
- id: GedFolder.KBIS,
421
- name: 'K-bis & Carte d\'identité & Mémento fiscal',
422
- isVisibleForClient: true,
423
- idGedCategory: GedCategory.COMPANY,
424
- },
425
- { id: GedFolder.LDM, name: 'Lettres de missions', isVisibleForClient: true, idGedCategory: GedCategory.COMPANY },
426
- { id: GedFolder.RIB_MANDATES, name: 'Mandats & RIB', isVisibleForClient: true, idGedCategory: GedCategory.COMPANY },
427
- {
428
- id: GedFolder.BALANCE_GL,
429
- name: 'Balance-GL Journaux',
430
- isVisibleForClient: true,
431
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
432
- },
433
- {
434
- id: GedFolder.CLOSE_BALANCE_SHEET,
435
- name: 'Clôtures & Bilans',
436
- isVisibleForClient: true,
437
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
438
- },
439
- {
440
- id: GedFolder.VAT,
441
- name: 'Déclarations de TVA',
442
- isVisibleForClient: true,
443
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
444
- },
445
- {
446
- id: GedFolder.IS_DECLARATIONS,
447
- name: 'Déclarations d\'IS',
448
- isVisibleForClient: true,
449
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
450
- },
451
- { id: GedFolder.STATUTES, name: 'Statuts & avenants', isVisibleForClient: true, idGedCategory: GedCategory.COMPANY },
452
- {
453
- id: GedFolder.TRAINING_AND_PROFESSIONAL_TAX,
454
- name: 'Formation et taxe professionnelle',
455
- isVisibleForClient: true,
456
- idGedCategory: GedCategory.SOCIAL,
457
- },
458
- { id: GedFolder.DADS_U_DUE, name: 'DADS-U & DUE', isVisibleForClient: true, idGedCategory: GedCategory.SOCIAL },
459
- { id: GedFolder.URSSAF, name: 'URSSAF & Pôle-Emploi', isVisibleForClient: true, idGedCategory: GedCategory.SOCIAL },
460
- {
461
- id: GedFolder.PAY_SLIPS,
462
- name: 'Bulletins de salaires',
463
- isVisibleForClient: true,
464
- idGedCategory: GedCategory.SOCIAL,
465
- },
466
- { id: GedFolder.TNS, name: 'TNS', isVisibleForClient: true, idGedCategory: GedCategory.SOCIAL },
467
- { id: GedFolder.AGM, name: 'PV d\'AG', isVisibleForClient: true, idGedCategory: GedCategory.JURIDIC },
468
- {
469
- id: GedFolder.CONTRACTS_LEASES,
470
- name: 'Contrats & Baux',
471
- isVisibleForClient: true,
472
- idGedCategory: GedCategory.GENERALITY,
473
- },
474
- { id: GedFolder.INSURANCES, name: 'Assurances', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
475
- {
476
- id: GedFolder.CABINET_INVOICES,
477
- name: 'Factures Cabinet',
478
- isVisibleForClient: true,
479
- idGedCategory: GedCategory.BILLING,
480
- },
481
- { id: GedFolder.OTHER, name: 'Autres', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
482
- { id: GedFolder.VEHICLES, name: 'Véhicules', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
483
- {
484
- id: GedFolder.BORROWING_TABLES,
485
- name: 'Tableaux d’emprunts',
486
- isVisibleForClient: true,
487
- idGedCategory: GedCategory.GENERALITY,
488
- },
489
- { id: GedFolder.RSI_URSSAF, name: 'RSI & URSSAF', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
490
- {
491
- id: GedFolder.GA_BALANCE_PV,
492
- name: 'Bilan & PV d’AG antérieur',
493
- isVisibleForClient: true,
494
- idGedCategory: GedCategory.GENERALITY,
495
- },
496
- {
497
- id: GedFolder.SLIPS_CFE,
498
- name: 'Bordereaux pour la CFE',
499
- isVisibleForClient: true,
500
- idGedCategory: GedCategory.GENERALITY,
501
- },
502
- {
503
- id: GedFolder.APPENDIX_PROVIDERS_CUSTOMERS,
504
- name: 'Annexes fournisseurs/clients',
505
- isVisibleForClient: true,
506
- idGedCategory: GedCategory.GENERALITY,
507
- },
508
- {
509
- id: GedFolder.MISCELLANEOUS,
510
- name: 'Divers',
511
- isVisibleForClient: true,
512
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
513
- },
514
- {
515
- id: GedFolder.LEGAL_ANNOUNCEMENTS,
516
- name: 'Annonces Légales',
517
- isVisibleForClient: true,
518
- idGedCategory: GedCategory.JURIDIC,
519
- },
520
- { id: GedFolder.CERTIFICATES, name: 'Attestations', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
521
- { id: GedFolder.PARTNERS, name: 'Associés', isVisibleForClient: true, idGedCategory: GedCategory.COMPANY },
522
- {
523
- id: GedFolder.INCOMING_MAILS,
524
- name: 'Courriers entrants',
525
- isVisibleForClient: true,
526
- idGedCategory: GedCategory.MAIL,
527
- },
528
- {
529
- id: GedFolder.OUTGOING_MAIL,
530
- name: 'Courriers sortants',
531
- isVisibleForClient: true,
532
- idGedCategory: GedCategory.MAIL,
533
- },
534
- {
535
- id: GedFolder.BANK_STATEMENT,
536
- name: 'Relevés Bancaires',
537
- isVisibleForClient: true,
538
- idGedCategory: GedCategory.BANK_STATEMENT,
539
- },
540
- {
541
- id: GedFolder.FORMALISM,
542
- name: 'Formalisme',
543
- isVisibleForClient: false,
544
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
545
- },
546
- {
547
- id: GedFolder.PENDING_POINTS,
548
- name: 'Points en suspens',
549
- isVisibleForClient: false,
550
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
551
- },
552
- {
553
- id: GedFolder.BALANCE_GL_JOURNALS_YEAR,
554
- name: 'Balance-GL Journaux Année N-1',
555
- isVisibleForClient: true,
556
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
557
- },
558
- { id: GedFolder.JURIDICAL, name: 'Juridique', isVisibleForClient: true, idGedCategory: GedCategory.JURIDIC },
559
- { id: GedFolder.SUBVENTION, name: 'Subvention', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
560
- {
561
- id: GedFolder.EMPLOYEMENT_CONTRACT,
562
- name: 'Contrats de travail & avenants',
563
- isVisibleForClient: true,
564
- idGedCategory: GedCategory.SOCIAL,
565
- },
566
- {
567
- id: GedFolder.EXIT_DOCUMENT,
568
- name: 'Documents de sorties',
569
- isVisibleForClient: true,
570
- idGedCategory: GedCategory.SOCIAL,
571
- },
572
- {
573
- id: GedFolder.JEDECLARE_MANDATES,
574
- name: 'Mandat JeDeclare',
575
- isVisibleForClient: true,
576
- idGedCategory: GedCategory.COMPANY,
577
- },
578
- {
579
- id: GedFolder.COMPANY_PASSWORD_SERVICE,
580
- name: 'Mot de passe service entreprise',
581
- isVisibleForClient: false,
582
- idGedCategory: GedCategory.COMPANY,
583
- },
584
- { id: GedFolder.FEC, name: 'Fec', isVisibleForClient: false, idGedCategory: GedCategory.ACCOUNTING_AND_TAX },
585
- {
586
- id: GedFolder.PREVISIONAL,
587
- name: 'Prévisionnels',
588
- isVisibleForClient: true,
589
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
590
- },
591
- {
592
- id: GedFolder.PREVISIONAL_ANNEX,
593
- name: 'Annexes Prévisionnels',
594
- isVisibleForClient: false,
595
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
596
- },
597
- {
598
- id: GedFolder.CASH_BOOK,
599
- name: 'Caisse',
600
- isVisibleForClient: true,
601
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
602
- },
603
- {
604
- id: GedFolder.STOCK,
605
- name: 'Stock',
606
- isVisibleForClient: true,
607
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
608
- },
609
- {
610
- id: GedFolder.SUMMARY,
611
- name: 'Récapitulatif',
612
- isVisibleForClient: true,
613
- idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
614
- },
615
- ];
419
+ {
420
+ id: GedFolder.KBIS,
421
+ name: "K-bis & Carte d'identité & Mémento fiscal",
422
+ isVisibleForClient: true,
423
+ idGedCategory: GedCategory.COMPANY,
424
+ },
425
+ { id: GedFolder.LDM, name: 'Lettres de missions', isVisibleForClient: true, idGedCategory: GedCategory.COMPANY },
426
+ { id: GedFolder.RIB_MANDATES, name: 'Mandats & RIB', isVisibleForClient: true, idGedCategory: GedCategory.COMPANY },
427
+ {
428
+ id: GedFolder.BALANCE_GL,
429
+ name: 'Balance-GL Journaux',
430
+ isVisibleForClient: true,
431
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
432
+ },
433
+ {
434
+ id: GedFolder.CLOSE_BALANCE_SHEET,
435
+ name: 'Clôtures & Bilans',
436
+ isVisibleForClient: true,
437
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
438
+ },
439
+ {
440
+ id: GedFolder.VAT,
441
+ name: 'Déclarations de TVA',
442
+ isVisibleForClient: true,
443
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
444
+ },
445
+ {
446
+ id: GedFolder.IS_DECLARATIONS,
447
+ name: "Déclarations d'IS",
448
+ isVisibleForClient: true,
449
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
450
+ },
451
+ { id: GedFolder.STATUTES, name: 'Statuts & avenants', isVisibleForClient: true, idGedCategory: GedCategory.COMPANY },
452
+ {
453
+ id: GedFolder.TRAINING_AND_PROFESSIONAL_TAX,
454
+ name: 'Formation et taxe professionnelle',
455
+ isVisibleForClient: true,
456
+ idGedCategory: GedCategory.SOCIAL,
457
+ },
458
+ { id: GedFolder.DADS_U_DUE, name: 'DADS-U & DUE', isVisibleForClient: true, idGedCategory: GedCategory.SOCIAL },
459
+ { id: GedFolder.URSSAF, name: 'URSSAF & Pôle-Emploi', isVisibleForClient: true, idGedCategory: GedCategory.SOCIAL },
460
+ {
461
+ id: GedFolder.PAY_SLIPS,
462
+ name: 'Bulletins de salaires',
463
+ isVisibleForClient: true,
464
+ idGedCategory: GedCategory.SOCIAL,
465
+ },
466
+ { id: GedFolder.TNS, name: 'TNS', isVisibleForClient: true, idGedCategory: GedCategory.SOCIAL },
467
+ { id: GedFolder.AGM, name: "PV d'AG", isVisibleForClient: true, idGedCategory: GedCategory.JURIDIC },
468
+ {
469
+ id: GedFolder.CONTRACTS_LEASES,
470
+ name: 'Contrats & Baux',
471
+ isVisibleForClient: true,
472
+ idGedCategory: GedCategory.GENERALITY,
473
+ },
474
+ { id: GedFolder.INSURANCES, name: 'Assurances', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
475
+ {
476
+ id: GedFolder.CABINET_INVOICES,
477
+ name: 'Factures Cabinet',
478
+ isVisibleForClient: true,
479
+ idGedCategory: GedCategory.BILLING,
480
+ },
481
+ { id: GedFolder.OTHER, name: 'Autres', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
482
+ { id: GedFolder.VEHICLES, name: 'Véhicules', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
483
+ {
484
+ id: GedFolder.BORROWING_TABLES,
485
+ name: 'Tableaux d’emprunts',
486
+ isVisibleForClient: true,
487
+ idGedCategory: GedCategory.GENERALITY,
488
+ },
489
+ { id: GedFolder.RSI_URSSAF, name: 'RSI & URSSAF', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
490
+ {
491
+ id: GedFolder.GA_BALANCE_PV,
492
+ name: 'Bilan & PV d’AG antérieur',
493
+ isVisibleForClient: true,
494
+ idGedCategory: GedCategory.GENERALITY,
495
+ },
496
+ {
497
+ id: GedFolder.SLIPS_CFE,
498
+ name: 'Bordereaux pour la CFE',
499
+ isVisibleForClient: true,
500
+ idGedCategory: GedCategory.GENERALITY,
501
+ },
502
+ {
503
+ id: GedFolder.APPENDIX_PROVIDERS_CUSTOMERS,
504
+ name: 'Annexes fournisseurs/clients',
505
+ isVisibleForClient: true,
506
+ idGedCategory: GedCategory.GENERALITY,
507
+ },
508
+ {
509
+ id: GedFolder.MISCELLANEOUS,
510
+ name: 'Divers',
511
+ isVisibleForClient: true,
512
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
513
+ },
514
+ {
515
+ id: GedFolder.LEGAL_ANNOUNCEMENTS,
516
+ name: 'Annonces Légales',
517
+ isVisibleForClient: true,
518
+ idGedCategory: GedCategory.JURIDIC,
519
+ },
520
+ { id: GedFolder.CERTIFICATES, name: 'Attestations', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
521
+ { id: GedFolder.PARTNERS, name: 'Associés', isVisibleForClient: true, idGedCategory: GedCategory.COMPANY },
522
+ {
523
+ id: GedFolder.INCOMING_MAILS,
524
+ name: 'Courriers entrants',
525
+ isVisibleForClient: true,
526
+ idGedCategory: GedCategory.MAIL,
527
+ },
528
+ {
529
+ id: GedFolder.OUTGOING_MAIL,
530
+ name: 'Courriers sortants',
531
+ isVisibleForClient: true,
532
+ idGedCategory: GedCategory.MAIL,
533
+ },
534
+ {
535
+ id: GedFolder.BANK_STATEMENT,
536
+ name: 'Relevés Bancaires',
537
+ isVisibleForClient: true,
538
+ idGedCategory: GedCategory.BANK_STATEMENT,
539
+ },
540
+ {
541
+ id: GedFolder.FORMALISM,
542
+ name: 'Formalisme',
543
+ isVisibleForClient: false,
544
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
545
+ },
546
+ {
547
+ id: GedFolder.PENDING_POINTS,
548
+ name: 'Points en suspens',
549
+ isVisibleForClient: false,
550
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
551
+ },
552
+ {
553
+ id: GedFolder.BALANCE_GL_JOURNALS_YEAR,
554
+ name: 'Balance-GL Journaux Année N-1',
555
+ isVisibleForClient: true,
556
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
557
+ },
558
+ { id: GedFolder.JURIDICAL, name: 'Juridique', isVisibleForClient: true, idGedCategory: GedCategory.JURIDIC },
559
+ { id: GedFolder.SUBVENTION, name: 'Subvention', isVisibleForClient: true, idGedCategory: GedCategory.GENERALITY },
560
+ {
561
+ id: GedFolder.EMPLOYEMENT_CONTRACT,
562
+ name: 'Contrats de travail & avenants',
563
+ isVisibleForClient: true,
564
+ idGedCategory: GedCategory.SOCIAL,
565
+ },
566
+ {
567
+ id: GedFolder.EXIT_DOCUMENT,
568
+ name: 'Documents de sorties',
569
+ isVisibleForClient: true,
570
+ idGedCategory: GedCategory.SOCIAL,
571
+ },
572
+ {
573
+ id: GedFolder.JEDECLARE_MANDATES,
574
+ name: 'Mandat JeDeclare',
575
+ isVisibleForClient: true,
576
+ idGedCategory: GedCategory.COMPANY,
577
+ },
578
+ {
579
+ id: GedFolder.COMPANY_PASSWORD_SERVICE,
580
+ name: 'Mot de passe service entreprise',
581
+ isVisibleForClient: false,
582
+ idGedCategory: GedCategory.COMPANY,
583
+ },
584
+ { id: GedFolder.FEC, name: 'Fec', isVisibleForClient: false, idGedCategory: GedCategory.ACCOUNTING_AND_TAX },
585
+ {
586
+ id: GedFolder.PREVISIONAL,
587
+ name: 'Prévisionnels',
588
+ isVisibleForClient: true,
589
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
590
+ },
591
+ {
592
+ id: GedFolder.PREVISIONAL_ANNEX,
593
+ name: 'Annexes Prévisionnels',
594
+ isVisibleForClient: false,
595
+ idGedCategory: GedCategory.ACCOUNTING_AND_TAX,
596
+ },
597
+ ];
616
598
 
617
599
  export const gedCategoryWithName: Array<{
618
600
  idGedCategory: number;
@@ -620,52 +602,47 @@ export const gedCategoryWithName: Array<{
620
602
  usableByClient: boolean;
621
603
  brandCondition?: string[];
622
604
  }> = [
623
- { idGedCategory: GedCategory.COMPANY, name: 'Entreprise', usableByClient: true },
624
- { idGedCategory: GedCategory.ACCOUNTING_AND_TAX, name: 'Comptabilité', usableByClient: false },
625
- { idGedCategory: GedCategory.SOCIAL, name: 'Social', usableByClient: false },
626
- { idGedCategory: GedCategory.JURIDIC, name: 'Juridique', usableByClient: false },
627
- { idGedCategory: GedCategory.GENERALITY, name: 'Généralités', usableByClient: true },
628
- { idGedCategory: GedCategory.BILLING, name: 'Facturation', usableByClient: false },
629
- {
630
- idGedCategory: GedCategory.MAIL,
631
- name: 'Courriers',
632
- usableByClient: true,
633
- brandCondition: ['Clementine', 'Comptastart'],
634
- },
635
- { idGedCategory: GedCategory.BANK_STATEMENT, name: 'Relevés bancaires', usableByClient: true },
636
- ];
605
+ { idGedCategory: GedCategory.COMPANY, name: 'Entreprise', usableByClient: true },
606
+ { idGedCategory: GedCategory.ACCOUNTING_AND_TAX, name: 'Comptabilité', usableByClient: false },
607
+ { idGedCategory: GedCategory.SOCIAL, name: 'Social', usableByClient: false },
608
+ { idGedCategory: GedCategory.JURIDIC, name: 'Juridique', usableByClient: false },
609
+ { idGedCategory: GedCategory.GENERALITY, name: 'Généralités', usableByClient: true },
610
+ { idGedCategory: GedCategory.BILLING, name: 'Facturation', usableByClient: false },
611
+ {
612
+ idGedCategory: GedCategory.MAIL,
613
+ name: 'Courriers',
614
+ usableByClient: true,
615
+ brandCondition: ['Clementine', 'Comptastart'],
616
+ },
617
+ { idGedCategory: GedCategory.BANK_STATEMENT, name: 'Relevés bancaires', usableByClient: true },
618
+ ];
637
619
 
638
- export const TypeFileDetail: Record<number, {
639
- typeFile: TypeFile;
640
- name: string;
641
- idGedFolder?: GedFolder;
642
- helpText?: string;
643
- }> = {
620
+ export const TypeFileDetail: Record<
621
+ number,
622
+ {
623
+ typeFile: TypeFile;
624
+ name: string;
625
+ idGedFolder?: GedFolder;
626
+ }
627
+ > = {
644
628
  [TypeFile.INSURANCE_CONTRACT]: {
645
629
  typeFile: TypeFile.INSURANCE_CONTRACT,
646
- name: 'Contrat d\'assurance',
630
+ name: "Contrat d'assurance",
647
631
  idGedFolder: GedFolder.INSURANCES,
648
632
  },
649
633
  [TypeFile.COMPANY_CONTRIBUTION_PROOF]: {
650
634
  typeFile: TypeFile.COMPANY_CONTRIBUTION_PROOF,
651
635
  name: 'Justificatif des apports faits à la société',
652
636
  idGedFolder: GedFolder.JURIDICAL,
653
- helpText: 'Vos relevés bancaires personnels indiquant le montant d’épargne disponible, votre avis d\'imposition personnel'
654
637
  },
655
638
  [TypeFile.NOTARY_STATEMENT]: {
656
639
  typeFile: TypeFile.NOTARY_STATEMENT,
657
- name: 'Décompte de notaire',
658
- idGedFolder: GedFolder.JURIDICAL,
659
- helpText: 'Le décompte du notaire définitif doit détailler toutes les opérations intervenues'
660
- },
661
- [TypeFile.PURCHASE_DEED]: {
662
- typeFile: TypeFile.PURCHASE_DEED,
663
- name: 'Acte d\'achat',
640
+ name: "Décompte de notaire et acte d'achat",
664
641
  idGedFolder: GedFolder.JURIDICAL,
665
642
  },
666
643
  [TypeFile.PV_RESULT_ALLOCATION]: {
667
644
  typeFile: TypeFile.PV_RESULT_ALLOCATION,
668
- name: 'PV d\'AG d\'affectation du résultat',
645
+ name: "PV d'AG d'affectation du résultat",
669
646
  idGedFolder: GedFolder.AGM,
670
647
  },
671
648
  [TypeFile.SUBSIDY_PROOF]: {
@@ -675,7 +652,7 @@ export const TypeFileDetail: Record<number, {
675
652
  },
676
653
  [TypeFile.LOAN_AMORTIZATION_TABLE]: {
677
654
  typeFile: TypeFile.LOAN_AMORTIZATION_TABLE,
678
- name: 'Tableau d\'amortissement des emprunts',
655
+ name: "Tableau d'amortissement des emprunts",
679
656
  idGedFolder: GedFolder.BORROWING_TABLES,
680
657
  },
681
658
  [TypeFile.COMMERCIAL_OR_RENTAL_LEASE]: {
@@ -695,7 +672,7 @@ export const TypeFileDetail: Record<number, {
695
672
  },
696
673
  [TypeFile.LIVESTOCK_REGISTER]: {
697
674
  typeFile: TypeFile.LIVESTOCK_REGISTER,
698
- name: 'Registre d\'élevage',
675
+ name: "Registre d'élevage",
699
676
  idGedFolder: GedFolder.OTHER,
700
677
  },
701
678
  [TypeFile.LIVESTOCK_INVENTORY]: {
@@ -725,7 +702,7 @@ export const TypeFileDetail: Record<number, {
725
702
  },
726
703
  [TypeFile.AGRICULTURAL_TAX_CREDIT_PROOF]: {
727
704
  typeFile: TypeFile.AGRICULTURAL_TAX_CREDIT_PROOF,
728
- name: 'Justificatifs de crédits d\'impôt agricoles',
705
+ name: "Justificatifs de crédits d'impôt agricoles",
729
706
  idGedFolder: GedFolder.MISCELLANEOUS,
730
707
  },
731
708
  [TypeFile.LOAN_REPAYMENT_PROOF]: {
@@ -750,17 +727,17 @@ export const TypeFileDetail: Record<number, {
750
727
  },
751
728
  [TypeFile.CONDOMINIUM_AGM_MINUTES]: {
752
729
  typeFile: TypeFile.CONDOMINIUM_AGM_MINUTES,
753
- name: 'Procès-verbaux d\'AG de copropriété',
730
+ name: "Procès-verbaux d'AG de copropriété",
754
731
  idGedFolder: GedFolder.AGM,
755
732
  },
756
733
  [TypeFile.TAX_NOTICE]: {
757
734
  typeFile: TypeFile.TAX_NOTICE,
758
- name: 'Avis d\'imposition (CFE, taxe foncière)',
735
+ name: "Avis d'imposition (CFE, taxe foncière)",
759
736
  idGedFolder: GedFolder.SLIPS_CFE,
760
737
  },
761
738
  [TypeFile.SUBSIDY_ALLOCATION_NOTIFICATION]: {
762
739
  typeFile: TypeFile.SUBSIDY_ALLOCATION_NOTIFICATION,
763
- name: 'Notifications d\'attribution de subventions publiques',
740
+ name: "Notifications d'attribution de subventions publiques",
764
741
  idGedFolder: GedFolder.SUBVENTION,
765
742
  },
766
743
  [TypeFile.FINANCING_CONTRACTS_OR_SUBSIDY_AGREEMENTS]: {
@@ -768,102 +745,4 @@ export const TypeFileDetail: Record<number, {
768
745
  name: 'Contrats de financement ou conventions de subvention',
769
746
  idGedFolder: GedFolder.SUBVENTION,
770
747
  },
771
- [TypeFile.CAISSE]: {
772
- typeFile: TypeFile.CAISSE,
773
- name: 'Livre de caisse',
774
- idGedFolder: GedFolder.CASH_BOOK,
775
- helpText: `Créer un tableau structuré Le livre de caisse peut être tenu sur papier, dans un tableur (Excel), ou via un logiciel comptable. Il doit comporter les colonnes suivantes :
776
- Date
777
- Libellé / Description de l’opération
778
- Pièce justificative (n° ou référence)
779
- Entrée (recette)
780
- Sortie (dépense)
781
- Solde
782
- Enregistrer chaque opération
783
- Dès qu’une opération en espèces est effectuée, elle doit être inscrite dans le livre de caisse.
784
- Le solde doit être mis à jour après chaque mouvement.
785
- Conserver les justificatifs
786
- Chaque opération doit être appuyée par une pièce justificative (facture, reçu, ticket de caisse…).
787
- Ces documents doivent être classés et conservés.
788
- Faire des contrôles réguliers
789
- Vérifiez que le solde du livre de caisse correspond au montant réel dans la caisse. En cas d’écart, il faut l’expliquer et le corriger.
790
- Clôturer périodiquement
791
- À la fin de chaque mois ou période comptable, le livre de caisse peut être clôturé et archivé`
792
- },
793
- [TypeFile.STOCK]: {
794
- typeFile: TypeFile.STOCK,
795
- name: 'L\'état de vos stocks à la date de clôture',
796
- idGedFolder: GedFolder.STOCK,
797
- helpText: 'L’état des stocks doit recenser l’ensemble des produits disponibles à la date de clôture. Chaque article doit être identifié précisément, classé par catégorie (matières premières, marchandises, produits finis), et valorisé au prix d’achat hors taxes (HT). Ce document doit impérativement être daté et signé'
798
- },
799
- [TypeFile.RECIPROCITY]: {
800
- typeFile: TypeFile.RECIPROCITY,
801
- name: 'Le grand livre de réciprocité des comptes',
802
- idGedFolder: GedFolder.BALANCE_GL_JOURNALS_YEAR,
803
- helpText: 'Votre société détient ou a cédé des actions à une autre entité, ce qui établit un lien capitalistique entre les deux sociétés. En conséquence, des mouvements comptables peuvent exister entre elles. Afin d\'assurer la cohérence des écritures comptables, nous vous demandons de nous transmettre les grands livres des opérations enregistrées dans la comptabilité de l’autre société. Cela nous permettra de rapprocher et cadrer les flux entre les deux entités'
804
- },
805
- [TypeFile.SUPPLIER_DEBTS]: {
806
- typeFile: TypeFile.SUPPLIER_DEBTS,
807
- name: 'Vos dettes fournisseurs',
808
- idGedFolder: GedFolder.BALANCE_GL_JOURNALS_YEAR,
809
- helpText: 'Les factures d’achats émises avant la clôture de l’exercice mais non réglées à cette date'
810
- },
811
- [TypeFile.CUSTOMER_RECEIVABLES]: {
812
- typeFile: TypeFile.CUSTOMER_RECEIVABLES,
813
- name: 'Vos créances clients',
814
- idGedFolder: GedFolder.BALANCE_GL_JOURNALS_YEAR,
815
- helpText: 'Les factures de ventes émises avant la clôture de l’exercice mais non encaissées à cette date'
816
- },
817
- [TypeFile.PAYROLL_ACCOUNTING_FILE]: {
818
- typeFile: TypeFile.PAYROLL_ACCOUNTING_FILE,
819
- name: 'Votre fichier des écritures comptables de paie',
820
- idGedFolder: GedFolder.PAY_SLIPS,
821
- helpText: 'Les écritures de paie, le tableau des charges, le livre de paie annuel. Ces documents sont fournis par le prestataire qui établit les bulletins de salaire'
822
- },
823
- [TypeFile.MONTHLY_TESE_SUMMARIES]: {
824
- typeFile: TypeFile.MONTHLY_TESE_SUMMARIES,
825
- name: 'États des récapitulatifs mensuels TESE',
826
- idGedFolder: GedFolder.PAY_SLIPS,
827
- },
828
- [TypeFile.TICKET_Z]: {
829
- typeFile: TypeFile.TICKET_Z,
830
- name: 'Vos ticket Z',
831
- idGedFolder: GedFolder.CASH_BOOK,
832
- helpText: 'Un ticket Z mensuel regroupe et récapitule toutes les ventes enregistrées durant le mois. Le document est édité par la caisse enregistreuse à la fin d’un mois'
833
- },
834
- [TypeFile.POLICE_BOOK]: {
835
- typeFile: TypeFile.POLICE_BOOK,
836
- name: 'Votre livre de police',
837
- idGedFolder: GedFolder.SUMMARY,
838
- helpText: 'Récapitulatif des achats et des ventes de vos véhicules afin de comparer la marge. Le document doit être signé et tamponné par la mairie ou la police avant remplissage de celui-ci'
839
- },
840
- [TypeFile.STRIPE_AMAZON_STATEMENTS]: {
841
- typeFile: TypeFile.STRIPE_AMAZON_STATEMENTS,
842
- name: ' Vos relevés stripe, amazon ect.',
843
- idGedFolder: GedFolder.SUMMARY,
844
- helpText: `Stripe : Dans le menu Rapports → Balance ou Relevés financiers, vous pouvez générer un rapport mensuel complet en PDF ou CSV incluant paiements, frais, remboursements, et soldes.
845
- Amazon : Rendez-vous sur Business Analytics.
846
- Sous Rapports, sélectionnez Commandes.
847
- Sélectionnez la période, les filtres, les colonnes, les factures et tous les documents liés à la commande que vous souhaitez télécharger.
848
- Saisissez un nom pour votre rapport de commande.
849
- Sélectionnez Télécharger en format PDF`
850
- },
851
- [TypeFile.INVOICING_SOFTWARE_SUMMARY]: {
852
- typeFile: TypeFile.INVOICING_SOFTWARE_SUMMARY,
853
- name: 'Un récapitulatif de votre logiciel de facturation détaillé par type d’encaissement et par taux de TVA',
854
- idGedFolder: GedFolder.SUMMARY,
855
- },
856
- [TypeFile.MILEAGE_ALLOWANCES_SUMMARY]: {
857
- typeFile: TypeFile.MILEAGE_ALLOWANCES_SUMMARY,
858
- name: 'Un récapitulatif de vos indemnités kilométriques',
859
- idGedFolder: GedFolder.SUMMARY,
860
- helpText: `Le récapitulatif de vos indemnités kilométriques (IK) doit comporter les éléments suivants :
861
- Le lieu de départ
862
- Le lieu d’arrivée
863
- Le nombre de kilomètres parcourus
864
- Le véhicule utilisé
865
- La puissance fiscale du véhicule (CV fiscaux)
866
- Le barème appliqué
867
- Le montant de l’indemnité calculée`
868
- }
869
- };
748
+ };
@@ -2,4 +2,5 @@ export enum InformationRequestState {
2
2
  PENDING = 1,
3
3
  COMPLETED = 2,
4
4
  NOT_CONCERNED = 3,
5
+ WAITING = 4,
5
6
  }