noble_man
noble_man

Reputation: 342

OpenERP, adding new column in rml report using python

Here is the snip code I took from survey statistics report python object

if percantage:
    rml += """<td color="#FFF435"><para style="answer_bold">""" +                   
        tools.ustr(percantage) +"% (" + tools.ustr(cal_count) + """)</para></td>"""
rml += """<td color="#FFF435"><para style="answer_bold">"""+ tools.ustr(summery_perc)     
    +"%(" + tools.ustr(cal_count) + """)</para></td>""" 

what I want to do is in matrix_of_choices_only_one_ans question type I want to add average of answered question per each column and overall summary I already did the calculation code part but when I add the new column (seen line it 3) it popups error. What am i missing here? your any help would be appreciated I am new to rml

Upvotes: 0

Views: 480

Answers (1)

Quentin THEURET
Quentin THEURET

Reputation: 1232

It popups error because you have a blockTable with a defined number of columns (in colWidths) so we can't have more columns than this defined number.

Upvotes: 1

Related Questions