|
|
@@ -2085,7 +2085,7 @@ public class ReportsServiceImpl extends ServiceImpl<ReportsMapper, Reports> impl
|
|
|
}
|
|
|
feeCenterReports.setAmountLocD(item.getAmountLoc());
|
|
|
feeCenterReports.setHblno(item.getHblno());
|
|
|
- feeCenterReports.setAmount(item.getQuantity().setScale(2) + "*" + item.getPrice().setScale(2));
|
|
|
+ feeCenterReports.setAmount(item.getQuantity().setScale(2,RoundingMode.HALF_UP) + "*" + item.getPrice().setScale(2,RoundingMode.HALF_UP));
|
|
|
feeCenterReports.setExrate(item.getExrate());
|
|
|
feeCenterReports.setQuantity(item.getQuantity());
|
|
|
feeCenterReports.setUnitNo(item.getUnitNo());
|