来函增加函号的校验;

来函统计修复取消来函的展示bug,修复分页问题。
This commit is contained in:
duandongmei
2019-01-06 12:46:42 +06:00
parent cecc8c90e9
commit 8cd631af13
9 changed files with 106 additions and 29 deletions

View File

@@ -55,9 +55,9 @@ public class RequestInfoService extends BaseService{
}
public RequestInfo getRequestInfoByRequestNumber(String requestNumber) {
public RequestInfo getRequestInfoByRequest(RequestInfo req) {
return requestInfoDao.getRequestInfoByRequestNumber(requestNumber);
return requestInfoDao.getRequestInfoByRequest(req);
}
public RequestInfo getRequestInfoById(Long id) {

View File

@@ -2,6 +2,7 @@ package com.nis.web.service.configuration.statistics;
import java.util.Date;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@@ -38,8 +39,8 @@ public class ConfigureStatisticsService extends CrudService<NumCfgDao,NumBoundar
Date statisticTime=configureStatisticsDao.getRequestStatisticTime();
return statisticTime;
}
public List<Object[]> getRequestStateStatistics(List<RequestInfo> requestList,List<SysMenu> menuList,String statistcTime){
List<Object[]> dataList=configureStatisticsDao.getRequestStateStatistics(requestList,menuList,statistcTime);
public List<Map> getRequestStateStatistics(List<RequestInfo> requestList,List<SysMenu> menuList,String statistcTime){
List<Map> dataList=configureStatisticsDao.getRequestStateStatistics(requestList,menuList,statistcTime);
return dataList;
}
/* public List<Object[]> getRequestStateStatistics(List<RequestInfo> requestList,List<FunctionServiceDict> serviceList,String statistcTime){