|
@@ -382,6 +382,12 @@ public class CwFinanceInvoiceService extends ServiceImpl<CwFinanceInvoiceMapper,
|
|
list = cwFinanceInvoiceMapper.findList(page, queryWrapper);
|
|
list = cwFinanceInvoiceMapper.findList(page, queryWrapper);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ for (CwFinanceInvoiceDTO record : list.getRecords()) {
|
|
|
|
+ double aDouble = Double.parseDouble(record.getAccountDetail());
|
|
|
|
+ BigDecimal bd = new BigDecimal(aDouble).setScale(2, BigDecimal.ROUND_HALF_UP);
|
|
|
|
+ String string = bd.toString();
|
|
|
|
+ record.setAccountDetail(string);
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
|
|