.
├── PHPDocumentationGenerator.php
├── action
│ ├── action_annuler_creation_commande.php
│ ├── action_devis.php
│ ├── action_envoi_commande.php
│ ├── action_facture.php
│ ├── action_opportunite.php
│ ├── action_validation_signature_devis_manuel.php
│ ├── action_yousign_exstsite.php
│ ├── attestation
│ │ └── AttestationFiscale.php
│ ├── product_line_save_new_custom_description.php
│ └── produit
│ └── action_produit.php
├── class_NOOA.php
├── composants
│ ├── documents
│ │ ├── CommandeManager.php
│ │ ├── CommandeService.php
│ │ ├── Devis
│ │ │ ├── DevisLine.php
│ │ │ └── DevisManager.php
│ │ ├── DevisManager.php
│ │ ├── Facture
│ │ │ ├── FactureLine.php
│ │ │ └── FactureManager.php
│ │ ├── FactureManager.php
│ │ ├── Traits
│ │ │ └── DesignDocuments.php
│ │ └── _Documents_provider
│ │ ├── AccountingDocument.php
│ │ ├── DocumentLine.php
│ │ ├── Interfaces
│ │ │ ├── IAccountingDocument.php
│ │ │ ├── IDocumentLineProvider.php
│ │ │ ├── IFromCompanyProvider.php
│ │ │ ├── IModuleCodeProvider.php
│ │ │ ├── IToCustomerProvider.php
│ │ │ ├── IUserIdentificationProvider.php
│ │ │ └── sub_interfaces
│ │ ├── Services
│ │ │ ├── IPaymentService.php
│ │ │ └── ISignatureService.php
│ │ └── Traits
│ │ ├── DocumentDesigner.php
│ │ └── DocumentItemUtils.php
│ ├── dropdown
│ │ ├── selectize_client.php
│ │ └── selectize_produit.php
│ ├── filters
│ │ └── FilterWhereClauseBuilder.php
│ ├── reports
│ │ ├── report_factures_files.php
│ │ └── report_opportunites_contact.php
│ └── utilitaires
│ └── fct_utilitaires
│ ├── cgv.php
│ ├── client.php
│ ├── dates.php
│ ├── devis.php
│ ├── email.php
│ ├── moduleCode.php
│ ├── produit.php
│ ├── user.php
│ └── zip.php
├── documentation
│ ├── AccountingDocument.html
│ ├── CalDavAPI.html
│ ├── CalDavClientInterface.html
│ ├── CalDavUserManager.html
│ ├── CalDavUserManagerInterface.html
│ ├── CommandeManager.html
│ ├── CommandeService.html
│ ├── DesignDocuments.html
│ ├── DevisLine.html
│ ├── DevisManager.html
│ ├── DocumentDesigner.html
│ ├── DocumentItemUtils.html
│ ├── DocumentLine.html
│ ├── FactureLine.html
│ ├── FactureManager.html
│ ├── FilterWhereClauseBuilder.html
│ ├── HttpOperations.html
│ ├── IAccountingDocument.html
│ ├── IDocumentLineCalculator.html
│ ├── IDocumentLineProvider.html
│ ├── IDocumentLineUpdater.html
│ ├── IModuleCodeProvider.html
│ ├── IProductProvider.html
│ ├── IUserIdentificationProvider.html
│ ├── PHPDocumentationGenerator.html
│ ├── action_devis.html
│ ├── action_facture.html
│ ├── automation.html
│ ├── cgv.html
│ ├── client.html
│ ├── dashboard.html
│ ├── devis.html
│ ├── droits_clients.html
│ ├── droits_commandes.html
│ ├── droits_devis.html
│ ├── droits_factures.html
│ ├── droits_opportunites.html
│ ├── droits_produits.html
│ ├── email.html
│ ├── index.html
│ ├── modal_envoi_mail.html
│ ├── modal_raison_devis_refuse.html
│ ├── modal_uploadmanuel_devissigne_creationcommande.html
│ ├── modals.html
│ ├── report.html
│ ├── report_commande.html
│ ├── report_facture.html
│ ├── report_factures_files.html
│ ├── report_opportunites_contact.html
│ ├── selectize_client.html
│ ├── selectize_produit.html
│ ├── style.css
│ ├── trigger_commande.html
│ ├── trigger_devis.html
│ ├── trigger_reglement.html
│ ├── user.html
│ └── zip.html
├── droits
│ ├── droits_clients.php
│ ├── droits_commandes.php
│ ├── droits_cooperatives.php
│ ├── droits_devis.php
│ ├── droits_factures.php
│ ├── droits_modal_devis.php
│ ├── droits_opportunites.php
│ └── droits_produits.php
├── extsite
│ └── page_formulaire.php
├── generate_doc.php
├── lowcode
│ ├── automation.php
│ ├── dashboard.php
│ ├── modals.php
│ ├── report.php
│ ├── report_commande.php
│ └── report_facture.php
├── main.php
├── modals
│ ├── modal_add_todo_prescripteur.php
│ ├── modal_annuler_opportunite.php
│ ├── modal_attribution_lead_by_franchiseur.php
│ ├── modal_creation_cerfa.php
│ ├── modal_devis_marque_envoye.php
│ ├── modal_envoi_mail.php
│ ├── modal_export_devis_client.php
│ ├── modal_line_custom_description.php
│ ├── modal_raison_devis_refuse.php
│ ├── modal_send_mail_commande_cooperative.php
│ ├── modal_uploadmanuel_devissigne_creationcommande.php
│ └── send_mail_devis_client.php
├── module
│ ├── caldav
│ │ ├── Client
│ │ │ ├── CalDavAPI.php
│ │ │ ├── CalDavClient.php
│ │ │ └── CalDavUserManager.php
│ │ ├── Core
│ │ │ ├── CalDavClientInterface.php
│ │ │ └── CalDavUserManagerInterface.php
│ │ └── Traits
│ │ ├── DateTimeUtils.php
│ │ ├── DebugUtils.php
│ │ ├── HttpOperations.php
│ │ └── UrlUtils.php
│ ├── demo.js
│ └── demo.php
├── script_mco
│ ├── markdown.php
│ ├── mco.php
│ ├── mco_att.php
│ ├── mco_droit.php
│ ├── mco_script.php
│ ├── output_exteco_param_obj.md
│ ├── output_exteco_param_obj_att.md
│ ├── output_rainea_param_obj.md
│ ├── output_rainea_param_obj_att.md
│ └── resultat
│ ├── mco-att-.json
│ ├── mco-att_exteco.csv
│ ├── mco-att_extecotest.csv
│ ├── mco-modal-.json
│ ├── mco-modal_exteco.csv
│ ├── mco-modal_extecotest.csv
│ ├── mco-search_exteco.csv
│ ├── mco-search_extecotest.csv
│ └── type_objet_exteco.csv
├── trigger
│ ├── eteko_trigger_devis.php
│ ├── trigger_client.php
│ ├── trigger_commande.php
│ ├── trigger_contact.php
│ ├── trigger_devis.php
│ ├── trigger_facture.php
│ ├── trigger_franchise.php
│ ├── trigger_produit.php
│ └── trigger_reglement.php
└── yousign.php