Skip to Content
Menu
This question has been flagged
2013 Views

Hello Community. I have a problem with my qweb report. It prints data like this:

 

TitreSectionChapitreArticleParagrapheMontant
Recettes
Fonctionnement
VenteServices Vendus
Recettes Activités Sportives
84500000
Recettes
Fonctionnement
Vente
Subvention Etat
Personnel
55000000
Recettes
Invesissement
Subventio Investissement 
Etat
Etat74500000
Recettes
Invesissement
Achat et variations de stocksAchat matières premièresMatières combustibles3500000
RecettesInvestissementTransport et missionFrais de transport du personnelA l'interieur85000000
But I would to print it differently by grouping each column with have the same id. Here is my code

<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>

Thanks you
Avatar
Discard