Ola, exite alguma maneira de exibir o valor em uma coluna com uma condição, eu tentei da seguinte forma mas exibe o resultado
<p:column headerText="Provento">
<p:outputLabel value="#{pagamentos.evento.tipo}" />
<c:if test="#{'P' eq pagamentos.evento.tipo}">
<p:outputLabel value="0">
<f:convertNumber type="currency" />
</p:outputLabel>
</c:if>
</p:column>
<p:column headerText="Desconto">
<c:if test="#{'D' eq pagamentos.evento.tipo}">
<p:outputLabel value="#{pagamentos.valor}">
<f:convertNumber type="currency" />
</p:outputLabel>
</c:if>
</p:column>