Aller au contenu

effort_report

L’outil effort_report genere des rapports structures d’effort R&D sur une periode, essentiels pour les credits d’impot (CIR/CII/JEI).

project string requis

Project ID, ou * pour tous les projets

period_start string requis

Date ISO de debut (inclusive)

period_end string requis

Date ISO de fin (exclusive)

format string défaut: summary
FormatDescription
summaryMetriques cles uniquement
detailedListing par entree
miaStructure complete pour valorisation MIA/Ayming
markdownTemplate rapport CIR/CII
{
"project": "mon-api",
"period": {"start": "2025-01-01", "end": "2025-07-01"},
"total_hours": 127.5,
"total_entries": 42,
"by_category": {"CODE": 30, "RESEARCH": 12}
}

Structure complete pour valorisation Ayming :

{
"project": "mon-api",
"period": {...},
"total_hours": 127.5,
"objectives": [
{
"name": "Optimisation latence API",
"hours": 45.5,
"entries": 12,
"timeline": ["2025-01", "2025-02", "2025-03"]
}
],
"asset_types_breakdown": {
"logiciel": 100.0,
"base_donnees": 27.5
},
"cir_indicators": {
"has_research_activity": true,
"has_defined_objectives": true,
"has_continuous_effort": true,
"research_ratio": 0.28
},
"proof_chain": {
"attestation_count": 42,
"first_attestation": "2025-01-05T10:00:00Z",
"last_attestation": "2025-06-28T16:30:00Z"
}
}

Genere un document structure pour controle fiscal :

# Rapport R&D - mon-api
## Periode : 2025-01-01 au 2025-07-01
### Synthese
- **Heures totales** : 127.5h
- **Entrees certifiees** : 42
- **Ratio R&D** : 28%
### Indicateurs CIR
- [x] Activite de recherche documentee
- [x] Objectifs techniques definis
- [x] Effort continu (>3 mois)
### Objectifs R&D
| Objectif | Heures | Periode |
|----------|--------|---------|
| Optimisation latence API | 45.5h | Jan-Mar 2025 |
...
Genere le rapport MIA du premier semestre 2025 pour mon-api
Rapport R&D de tous mes projets pour 2025
effort_report(project="*", period_start="2025-01-01", period_end="2026-01-01", format="summary")