Skip to Content
Menu
This question has been flagged
1 Reply
1601 Views

I want to replace 0.00 (second row) which are null data by blank space in span or a DASH.

My data is coming through dictionary in xml for eg: 

t-esc="pline['tds']"/>

I tried using "  or '-'  " but not working 


 

Avatar
Discard
Best Answer

Hi

You can use    for blank space in qweb report.

Try with this example



<t t-if="pline['tds']">
<t t-esc="pline['tds']"/>
</t>
<t t-else="">
<span> &amp;nbsp;</span>
</t>

Regards

Avatar
Discard
Author

THANKYOU

Related Posts Replies Views Activity
0
Apr 24
150
0
Oct 24
117
0
Jan 22
9
0
Sep 23
653
2
Mar 20
2713