parent
801b0be909
commit
fa670a1fb4
|
@ -67,6 +67,10 @@ public class guaranteecontListPlugin extends AbstractListPlugin {
|
||||||
DecimalFormat df = new DecimalFormat("¥#,##0.00");
|
DecimalFormat df = new DecimalFormat("¥#,##0.00");
|
||||||
String formattedAmount = df.format(sumOfBal);
|
String formattedAmount = df.format(sumOfBal);
|
||||||
e.setFormatValue(formattedAmount);
|
e.setFormatValue(formattedAmount);
|
||||||
|
}else {
|
||||||
|
DecimalFormat df = new DecimalFormat("¥#,##0.00");
|
||||||
|
String formattedAmount = df.format(BigDecimal.ZERO);
|
||||||
|
e.setFormatValue(formattedAmount);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue