Showing
1 changed file
with
4 additions
and
0 deletions
@@ -2996,6 +2996,10 @@ public class UnionShareServiceImpl implements IUnionShareService,IBusinessExport | @@ -2996,6 +2996,10 @@ public class UnionShareServiceImpl implements IUnionShareService,IBusinessExport | ||
2996 | rspBo.setSettlementAmount(preamount); | 2996 | rspBo.setSettlementAmount(preamount); |
2997 | rspBo.setTaxAmount(getTaxAmount(preamount)); | 2997 | rspBo.setTaxAmount(getTaxAmount(preamount)); |
2998 | rspBo.setAfterTaxAmount(preamount.subtract(rspBo.getTaxAmount())); | 2998 | rspBo.setAfterTaxAmount(preamount.subtract(rspBo.getTaxAmount())); |
2999 | + DecimalFormat df1 = new DecimalFormat("0.00"); | ||
3000 | + rspBo.setSettlementAmountStr("¥"+df1.format(rspBo.getSettlementAmount())); | ||
3001 | + rspBo.setTaxAmountStr("¥"+df1.format(rspBo.getTaxAmount())); | ||
3002 | + rspBo.setAfterTaxAmountStr("¥"+df1.format(rspBo.getTaxAmount())); | ||
2999 | return rspBo; | 3003 | return rspBo; |
3000 | } | 3004 | } |
3001 | 3005 |
-
Please register or login to post a comment