资金大屏统计修改
This commit is contained in:
parent
7e332201c4
commit
c4e43ff5ef
|
@ -80,4 +80,8 @@ public interface TAbilityApplicationDao extends BaseDao<TAbilityApplicationEntit
|
|||
List<Map> getProvideDistrictFundStatement();
|
||||
|
||||
List<Map> getApplyDistrictFundStatement();
|
||||
|
||||
Long getApplyPriceCount();
|
||||
|
||||
Long getResourceFundStatementTotal();
|
||||
}
|
|
@ -234,13 +234,9 @@ public class TAbilityApplicationServiceImpl extends CrudServiceImpl<TAbilityAppl
|
|||
@Override
|
||||
public Object getResourceFundStatement(Map<String, Object> params) {
|
||||
List<Map> list = abilityApplicationDao.getResourceFundStatement();
|
||||
BigDecimal total = BigDecimal.ZERO;
|
||||
for (Map map : list) {
|
||||
total = total.add((BigDecimal) map.get("applyPrice"));
|
||||
}
|
||||
Map<String, Object> resultMap = new HashMap<>();
|
||||
resultMap.put("list", list);
|
||||
resultMap.put("total", total);
|
||||
resultMap.put("total", abilityApplicationDao.getResourceFundStatementTotal());
|
||||
return resultMap;
|
||||
}
|
||||
|
||||
|
@ -292,12 +288,10 @@ public class TAbilityApplicationServiceImpl extends CrudServiceImpl<TAbilityAppl
|
|||
|
||||
@Override
|
||||
public Object getApplyPriceCount() {
|
||||
Map<String, Object> map = new HashMap<>();
|
||||
map.put("applyResult", "通过");
|
||||
Long sum = abilityApplicationDao.getFundStatementSum(map);
|
||||
BigDecimal result = new BigDecimal(sum).divide(new BigDecimal(10000));
|
||||
result = result.setScale(1, BigDecimal.ROUND_HALF_UP);
|
||||
return result ;
|
||||
|
||||
Long sum = 0L;
|
||||
sum = sum + abilityApplicationDao.getApplyPriceCount();
|
||||
return sum ;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue