Hello Community. I have a problem with my qweb report. It prints data like this:
Titre | Section | Chapitre | Article | Paragraphe | Montant |
Recettes | Fonctionnement | Vente | Services Vendus | Recettes Activités Sportives | 84500000 |
Recettes | Fonctionnement | Vente | Subvention Etat | Personnel | 55000000 |
Recettes | Invesissement | Subventio Investissement | Etat | Etat | 74500000 |
Recettes | Invesissement | Achat et variations de stocks | Achat matières premières | Matières combustibles | 3500000 |
Recettes | Investissement | Transport et mission | Frais de transport du personnel | A l'interieur | 85000000 |
<table class="table table-sm mb32">
<thead style ="border : 2px solid #000000;">
<tr>
<th style ="border : 2px solid #000000;" rowspan="2">Titre</th>
<th style ="border : 2px solid #000000;" rowspan="2">Section</th>
<th style ="border : 2px solid #000000;" rowspan="2">Chapitre</th>
<th style ="border : 2px solid #000000;" rowspan="2">Article</th>
<th style ="border : 2px solid #000000;" rowspan="2">Paragraphe</th>
<th style ="border : 2px solid #000000; text-align:center;">Montant</th>
</tr>
</thead>
<tbody>
<tr t-foreach="o.rubrique_ids" t-as="ligne">
<td style = "border:2px solid;">
<span t-esc="ligne.cd_titre_id.titre.titre"/>
</td>
<td style = "border:2px solid;">
<span t-esc="ligne.cd_section_id.section.section"/>
</td>
<td style = "border:2px solid;">
<span t-esc="ligne.cd_chapitre_id.chapitre.chapitre"/>
</td>
<td style = "border:2px solid;">
<span t-esc="ligne.cd_article_id.article.article"/>
</td>
<td style = "border:2px solid;">
<span t-esc="ligne.cd_paragraphe_id.paragraphe.paragraphe"/>
</td>
<td style = "border:2px solid;">
<span t-esc="ligne.mnts_budgetise"/>
</td>
</tr>
</tbody>
</table>