1

我正在使用 displaytag 导出 PDF。如果我在 display:column 中给出 total="true",最后一行包含总金额,我可以使用 numberformat 格式化该值,但在 PDF 中总值显示为未格式化。下面给出的是我的代码片段。

 <display:column property="discountAmt" titleKey="DiscountAmt" 
                 total="true" format="<%=currency_format%>"/>

 <display:column property="orderGrandTotal" titleKey="GrandTotal" 
                 sortable="true" format="<%=currency_format%>" class="numeric" 
                 total="true"/>

在表中,包含总值的最后一行是 1,913.30 和 12,033.50。但在 PDF 中显示为 1913.3 和 12033.5。

请给我一个想法来格式化它。

4

1 回答 1

0
<display:column property="money" format="{0,number,0,000.00} $" sortable="true" />

检查是否有效。查看http://www.displaytag.org/10/tagreference-displaytag-12.html了解更多信息。

于 2013-08-28T21:02:41.903 回答