package cn.ksource.web.controller.wechat.uwyw.stats;
|
|
import java.text.SimpleDateFormat;
|
import java.util.Calendar;
|
import java.util.HashMap;
|
import java.util.List;
|
import java.util.Map;
|
|
import javax.annotation.Resource;
|
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletResponse;
|
|
import org.springframework.stereotype.Controller;
|
import org.springframework.ui.Model;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.servlet.ModelAndView;
|
|
import cn.ksource.beans.SC_PARTNER_CUSTOMER_INFO;
|
import cn.ksource.core.util.ConvertUtil;
|
import cn.ksource.core.util.DateUtil;
|
import cn.ksource.core.util.JsonUtil;
|
import cn.ksource.core.util.StringUtil;
|
import cn.ksource.core.web.WebUtil;
|
import cn.ksource.web.facade.tj.IncidentStatisFacade;
|
|
|
@Controller
|
@RequestMapping("/uwyw/stats/uIncidentStats")
|
public class UIncidentStatsController {
|
|
@Resource
|
private IncidentStatisFacade incidentStatisFacade;
|
|
/**
|
* 事件统计首页
|
* @author chenlong
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentStatsIndex.html")
|
public String incidentStatsIndex(HttpServletRequest request){
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentStatsIndex";
|
}
|
|
/**
|
* 查询条件
|
* @author chenlong
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentSearchIndex.html")
|
public String incidentSearchIndex(Model model,HttpServletRequest request){
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentSearchIndex";
|
}
|
|
/**
|
* 获取快速查询日期
|
* @author chenlong
|
* @param request
|
* @param response
|
*/
|
@RequestMapping("/getFastSearchDate.html")
|
public void getFastSearchDate(HttpServletRequest request,HttpServletResponse response){
|
SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd");
|
Calendar cal = Calendar.getInstance();
|
Map<String, String> dateMap = new HashMap<String, String>();
|
String searchType = request.getParameter("searchType");
|
if(searchType.equals("one_week")){
|
dateMap = DateUtil.getRecentDate(df.format(cal.getTime()), -6, "DAY", 8);
|
}else if(searchType.equals("one_month")){
|
dateMap = DateUtil.getRecentDate(df.format(cal.getTime()), -1, "MONTH", 8);
|
}else if(searchType.equals("three_month")){
|
dateMap = DateUtil.getRecentDate(df.format(cal.getTime()), -2, "MONTH", 8);
|
}else if(searchType.equals("six_month")){
|
dateMap = DateUtil.getRecentDate(df.format(cal.getTime()), -5, "MONTH", 8);
|
}else if(searchType.equals("one_year")){
|
dateMap = DateUtil.getRecentDate(df.format(cal.getTime()), -1, "YEAR", 8);
|
}
|
WebUtil.write(response, JsonUtil.map2Json(dateMap));
|
}
|
|
@RequestMapping("/incidentStatsJump.html")
|
public String incidentStatsJump(HttpServletRequest request){
|
String statsType = request.getParameter("statsType");
|
if(statsType.equals("type")){
|
return "forward:/uwyw/stats/uIncidentStats/incidentTypePie.html";
|
}else if(statsType.equals("source")){
|
return "forward:/uwyw/stats/uIncidentStats/incidentSourcePie.html";
|
}else if(statsType.equals("close")){
|
return "forward:/uwyw/stats/uIncidentStats/incidentCloseCol.html";
|
}else if(statsType.equals("priority")){
|
return "forward:/uwyw/stats/uIncidentStats/incidentPriPie.html";
|
}else if(statsType.equals("influence")){
|
return "forward:/uwyw/stats/uIncidentStats/incidentInfluenceCol.html";
|
}else if(statsType.equals("level")){
|
return "forward:/uwyw/stats/uIncidentStats/incidentLvPie.html";
|
}else if(statsType.equals("response")){
|
return "forward:/uwyw/stats/uIncidentStats/incidentResponsePie.html";
|
}else if(statsType.equals("deal")){
|
return "forward:/uwyw/stats/uIncidentStats/incidentDealPie.html";
|
}else if(statsType.equals("happen")){
|
return "forward:/uwyw/stats/uIncidentStats/incidentHappendTimeLine.html";
|
}
|
return "forward:/uwyw/stats/uIncidentStats/incidentStatsIndex.html";
|
}
|
|
/**
|
* 事件类型饼状图
|
* @author chenlong
|
* @param model
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentTypePie.html")
|
public String incidentTypePie(Model model,HttpServletRequest request){
|
String startDate = request.getParameter("startDate");
|
String endDate = request.getParameter("endDate");
|
if(StringUtil.isBlank(startDate)){
|
Map dateMap = getInitDateMap();
|
startDate =ConvertUtil.obj2Str(dateMap.get("startDate")).replace("-", "");
|
endDate = ConvertUtil.obj2Str(dateMap.get("endDate")).replace("-", "");
|
}
|
String cusId = WebUtil.getUserWywCusId(request);
|
Map chartMap = incidentStatisFacade.incidentTypePie("day",cusId,startDate,endDate);
|
model.addAttribute("chartJsonStr",JsonUtil.map2Json(chartMap));
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentTypePie";
|
}
|
|
/**
|
* 事件来源饼状图
|
* @author chenlong
|
* @param model
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentSourcePie.html")
|
public String incidentSourcePie(Model model,HttpServletRequest request){
|
String startDate = request.getParameter("startDate");
|
String endDate = request.getParameter("endDate");
|
if(StringUtil.isBlank(startDate)){
|
Map dateMap = getInitDateMap();
|
startDate =ConvertUtil.obj2Str(dateMap.get("startDate")).replace("-", "");
|
endDate = ConvertUtil.obj2Str(dateMap.get("endDate")).replace("-", "");
|
}
|
String cusId = WebUtil.getUserWywCusId(request);
|
|
|
Map chartMap = incidentStatisFacade.incidentSourcePie("day",cusId,startDate,endDate);
|
model.addAttribute("chartJsonStr",JsonUtil.map2Json(chartMap));
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentSourcePie";
|
}
|
|
/**
|
* 事件关闭方式柱状图
|
* @author chenlong
|
* @param model
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentCloseCol.html")
|
public String incidentCloseCol(Model model,HttpServletRequest request){
|
String startDate = request.getParameter("startDate");
|
String endDate = request.getParameter("endDate");
|
if(StringUtil.isBlank(startDate)){
|
Map dateMap = getInitDateMap();
|
startDate =ConvertUtil.obj2Str(dateMap.get("startDate")).replace("-", "");
|
endDate = ConvertUtil.obj2Str(dateMap.get("endDate")).replace("-", "");
|
}
|
String cusId = WebUtil.getUserWywCusId(request);
|
|
|
Map chartMap = incidentStatisFacade.incidentCloseCol("day",cusId,startDate,endDate);
|
model.addAttribute("chartJsonStr",JsonUtil.map2Json(chartMap));
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentCloseCol";
|
}
|
|
/**
|
* 事件优先级饼图
|
* @author chenlong
|
* @param model
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentPriPie.html")
|
public String incidentPriPie(Model model,HttpServletRequest request){
|
String startDate = request.getParameter("startDate");
|
String endDate = request.getParameter("endDate");
|
if(StringUtil.isBlank(startDate)){
|
Map dateMap = getInitDateMap();
|
startDate =ConvertUtil.obj2Str(dateMap.get("startDate")).replace("-", "");
|
endDate = ConvertUtil.obj2Str(dateMap.get("endDate")).replace("-", "");
|
}
|
String cusId = WebUtil.getUserWywCusId(request);
|
|
|
Map chartMap = incidentStatisFacade.incidentPriPie("day",cusId,startDate,endDate);
|
model.addAttribute("chartJsonStr",JsonUtil.map2Json(chartMap));
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentPriPie";
|
}
|
|
/**
|
* 事件影响度柱状图
|
* @author chenlong
|
* @param model
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentInfluenceCol.html")
|
public String incidentInfluenceCol(Model model,HttpServletRequest request){
|
String startDate = request.getParameter("startDate");
|
String endDate = request.getParameter("endDate");
|
if(StringUtil.isBlank(startDate)){
|
Map dateMap = getInitDateMap();
|
startDate =ConvertUtil.obj2Str(dateMap.get("startDate")).replace("-", "");
|
endDate = ConvertUtil.obj2Str(dateMap.get("endDate")).replace("-", "");
|
}
|
String cusId = WebUtil.getUserWywCusId(request);
|
|
|
Map chartMap = incidentStatisFacade.incidentInfluenceCol("day",cusId,startDate,endDate);
|
model.addAttribute("chartJsonStr",JsonUtil.map2Json(chartMap));
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentInfluenceCol";
|
}
|
|
/**
|
* 事件服务级别饼图
|
* @author chenlong
|
* @param model
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentLvPie.html")
|
public String incidentLvPie(Model model,HttpServletRequest request){
|
String startDate = request.getParameter("startDate");
|
String endDate = request.getParameter("endDate");
|
if(StringUtil.isBlank(startDate)){
|
Map dateMap = getInitDateMap();
|
startDate =ConvertUtil.obj2Str(dateMap.get("startDate")).replace("-", "");
|
endDate = ConvertUtil.obj2Str(dateMap.get("endDate")).replace("-", "");
|
}
|
String cusId = WebUtil.getUserWywCusId(request);
|
|
|
Map chartMap = incidentStatisFacade.incidentLvPie("day",cusId,startDate,endDate);
|
model.addAttribute("chartJsonStr",JsonUtil.map2Json(chartMap));
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentLvPie";
|
}
|
|
/**
|
* 事件响应饼图
|
* @author chenlong
|
* @param model
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentResponsePie.html")
|
public String incidentResponsePie(Model model,HttpServletRequest request){
|
String startDate = request.getParameter("startDate");
|
String endDate = request.getParameter("endDate");
|
if(StringUtil.isBlank(startDate)){
|
Map dateMap = getInitDateMap();
|
startDate =ConvertUtil.obj2Str(dateMap.get("startDate")).replace("-", "");
|
endDate = ConvertUtil.obj2Str(dateMap.get("endDate")).replace("-", "");
|
}
|
String cusId = WebUtil.getUserWywCusId(request);
|
|
|
Map chartMap = incidentStatisFacade.incidentResponsePie("day",cusId,startDate,endDate);
|
model.addAttribute("chartJsonStr",JsonUtil.map2Json(chartMap));
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentResponsePie";
|
}
|
|
/**
|
* 事件处理饼图
|
* @author chenlong
|
* @param model
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentDealPie.html")
|
public String incidentDealPie(Model model,HttpServletRequest request){
|
String startDate = request.getParameter("startDate");
|
String endDate = request.getParameter("endDate");
|
if(StringUtil.isBlank(startDate)){
|
Map dateMap = getInitDateMap();
|
startDate =ConvertUtil.obj2Str(dateMap.get("startDate")).replace("-", "");
|
endDate = ConvertUtil.obj2Str(dateMap.get("endDate")).replace("-", "");
|
}
|
String cusId = WebUtil.getUserWywCusId(request);
|
|
|
Map chartMap = incidentStatisFacade.incidentDealPie("day",cusId,startDate,endDate);
|
model.addAttribute("chartJsonStr",JsonUtil.map2Json(chartMap));
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentDealPie";
|
}
|
|
/**
|
* 事件发生时间线形图
|
* @author chenlong
|
* @param model
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentHappendTimeLine.html")
|
public String incidentHappendTimeLine(Model model,HttpServletRequest request){
|
String startDate = request.getParameter("startDate");
|
String endDate = request.getParameter("endDate");
|
if(StringUtil.isBlank(startDate)){
|
Map dateMap = getInitDateMap();
|
startDate =ConvertUtil.obj2Str(dateMap.get("startDate")).replace("-", "");
|
endDate = ConvertUtil.obj2Str(dateMap.get("endDate")).replace("-", "");
|
}
|
String cusId = WebUtil.getUserWywCusId(request);
|
|
|
Map chartMap = incidentStatisFacade.incidentHappendTimeLine("day",cusId,startDate,endDate);
|
model.addAttribute("chartJsonStr",JsonUtil.map2Json(chartMap));
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentHappendTimeLine";
|
}
|
|
public Map getInitDateMap(){
|
Calendar cal = Calendar.getInstance();
|
SimpleDateFormat df = new SimpleDateFormat("yyyyMMdd");
|
Map<String, String> dateMap = new HashMap<String, String>();
|
dateMap = DateUtil.getRecentDate(df.format(cal.getTime()), -6, "DAY", 8);
|
return dateMap;
|
}
|
|
@RequestMapping("/incidentStatsReportJump.html")
|
public String incidentStatsReportJump(HttpServletRequest request){
|
String statsType = request.getParameter("statsType");
|
if(statsType.equals("cus")){
|
return "forward:/uwyw/stats/uIncidentStats/uincidentTotalChart.html";
|
}else if(statsType.equals("detail")){
|
return "forward:/uwyw/stats/uIncidentStats/uincidentStatis.html";
|
}else if(statsType.equals("dcl")){
|
return "forward:/uwyw/stats/uIncidentStats/uincidentDclStatis.html";
|
}else if(statsType.equals("close")){
|
return "forward:/uwyw/stats/uIncidentStats/uincidentCloseStatis.html";
|
}else if(statsType.equals("type")){
|
return "forward:/uwyw/stats/uIncidentStats/uincidentTypeStatis.html";
|
}else if(statsType.equals("dealtime")){
|
return "forward:/uwyw/stats/uIncidentStats/uincidentDealTimeStatis.html";
|
}else if(statsType.equals("deal")){
|
return "forward:/uwyw/stats/uIncidentStats/uincidentDealStatis.html";
|
}
|
return "forward:/uwyw/stats/uIncidentStats/incidentStatsIndex.html";
|
}
|
|
@RequestMapping("uincidentTotalChart.html")
|
public ModelAndView uincidentTotalChart(HttpServletRequest request,HttpServletResponse response) {
|
ModelAndView modelAndView = new ModelAndView("/business/wechat/uwyw/stats/uIncidentStats/uincidentTotalChart");
|
//获取当前session中的客户信息
|
String cusId = WebUtil.getUserWywCusId(request);
|
String beginTime = request.getParameter("beginDay");
|
String endTime = request.getParameter("endDay");
|
if(!StringUtil.isEmpty(cusId)){
|
Map resMap = incidentStatisFacade.incidentTotalChart(cusId,"",beginTime,endTime);
|
SC_PARTNER_CUSTOMER_INFO cus = new SC_PARTNER_CUSTOMER_INFO(cusId).getInstanceById();
|
List<Map> typeList = (List<Map>)resMap.get("typeList");
|
List<Map> sourceList = (List<Map>)resMap.get("sourceList");
|
List<Map> closeList = (List<Map>)resMap.get("closeList");
|
List<Map> priList = (List<Map>)resMap.get("priList");
|
List<Map> effectList = (List<Map>)resMap.get("effectList");
|
List<Map> levelList = (List<Map>)resMap.get("levelList");
|
List<Map> timeoutList = (List<Map>)resMap.get("timeoutList");
|
List<Map> resolveList = (List<Map>)resMap.get("resolveList");
|
List<Map> stateList = (List<Map>)resMap.get("stateList");
|
List<Map> resList = (List<Map>)resMap.get("resList");
|
modelAndView.addObject("typeList",typeList);
|
modelAndView.addObject("sourceList",sourceList);
|
modelAndView.addObject("closeList",closeList);
|
modelAndView.addObject("priList",priList);
|
modelAndView.addObject("effectList",effectList);
|
modelAndView.addObject("levelList",levelList);
|
modelAndView.addObject("timeoutList",timeoutList);
|
modelAndView.addObject("resolveList",resolveList);
|
modelAndView.addObject("stateList",stateList);
|
modelAndView.addObject("resList",resList);
|
modelAndView.addObject("cusName",cus.getShort_name());
|
modelAndView.addObject("beginTime",DateUtil.format("yyyy/MM/dd", beginTime));
|
modelAndView.addObject("endTime",DateUtil.format("yyyy/MM/dd", endTime));
|
}
|
|
return modelAndView;
|
}
|
|
/**
|
* 查询条件
|
* @param request
|
* @return
|
*/
|
@RequestMapping("/incidentSearchReport.html")
|
public String incidentSearchReport(Model model,HttpServletRequest request){
|
return "/business/wechat/uwyw/stats/uIncidentStats/incidentSearchReport";
|
}
|
|
/**
|
* 办公网络保修统计
|
* @param request
|
* @return
|
*/
|
@RequestMapping("uincidentStatis.html")
|
public ModelAndView uincidentStatis(HttpServletRequest request){
|
ModelAndView modelAndView=new ModelAndView("/business/wechat/uwyw/stats/uIncidentStats/uincidentStatis");
|
String cusId = WebUtil.getUserWywCusId(request);
|
String beginTime = request.getParameter("beginDay");
|
String endTime = request.getParameter("endDay");
|
String sub_customer_id = request.getParameter("sub_customer_id");
|
if(!StringUtil.isEmpty(cusId)){
|
List<Map> incidentList=incidentStatisFacade.queryIncidentStatis(cusId,sub_customer_id,beginTime,endTime,"","","");
|
modelAndView.addObject("incidentList",incidentList);
|
SC_PARTNER_CUSTOMER_INFO cus = new SC_PARTNER_CUSTOMER_INFO(cusId).getInstanceById();
|
modelAndView.addObject("beginTime",DateUtil.format("yyyy/MM/dd", request.getParameter("beginDay")));
|
modelAndView.addObject("endTime",DateUtil.format("yyyy/MM/dd", request.getParameter("endDay")));
|
modelAndView.addObject("cusName",cus.getShort_name());
|
}
|
return modelAndView;
|
}
|
|
/**
|
* 跳转到事件达成率信息页面
|
*/
|
@RequestMapping("uincidentDclStatis.html")
|
public ModelAndView uincidentDclStatis(HttpServletRequest request) {
|
ModelAndView modelAndView = new ModelAndView("/business/wechat/uwyw/stats/uIncidentStats/uincidentDclStatis");
|
String cusId = WebUtil.getUserWywCusId(request);
|
String beginTime = request.getParameter("beginTime");
|
String endTime = request.getParameter("endTime");
|
String subCustomerId = request.getParameter("sub_customer_id");
|
if(!StringUtil.isEmpty(cusId)){
|
List<Map> reports = incidentStatisFacade.queryIncidentDclStatis(cusId,subCustomerId,beginTime,endTime);
|
SC_PARTNER_CUSTOMER_INFO cus = new SC_PARTNER_CUSTOMER_INFO(cusId).getInstanceById();
|
modelAndView.addObject("reports", reports);
|
modelAndView.addObject("beginTime",DateUtil.format("yyyy/MM/dd", request.getParameter("beginTime")));
|
modelAndView.addObject("endTime",DateUtil.format("yyyy/MM/dd", request.getParameter("endTime")));
|
modelAndView.addObject("cusName",cus.getShort_name());
|
}
|
return modelAndView;
|
}
|
|
@RequestMapping("uincidentCloseStatis.html")
|
public String uincidentCloseStatis(Model model,HttpServletRequest request,HttpServletResponse response){
|
String cusId = WebUtil.getUserWywCusId(request);
|
String beginDay = request.getParameter("beginDay");
|
String endDay = request.getParameter("endDay");
|
if(!StringUtil.isEmpty(beginDay)){
|
Map report = incidentStatisFacade.queryCloseReport(cusId,beginDay,endDay);
|
model.addAttribute("report", report);
|
|
SC_PARTNER_CUSTOMER_INFO cus = new SC_PARTNER_CUSTOMER_INFO(cusId).getInstanceById();
|
model.addAttribute("beginTime",DateUtil.format("yyyy/MM/dd", request.getParameter("beginDay")));
|
model.addAttribute("endTime",DateUtil.format("yyyy/MM/dd", request.getParameter("endDay")));
|
model.addAttribute("cusName",cus.getShort_name());
|
}
|
return "/business/wechat/uwyw/stats/uIncidentStats/uincidentCloseStatis";
|
}
|
|
@RequestMapping("uincidentTypeStatis.html")
|
public String uincidentTypeStatis(Model model,HttpServletRequest request,HttpServletResponse response){
|
String cusId = WebUtil.getUserWywCusId(request);
|
String beginDay = request.getParameter("beginDay");
|
String endDay = request.getParameter("endDay");
|
if(!StringUtil.isEmpty(beginDay)){
|
Map report = incidentStatisFacade.queryTypeReport(cusId,beginDay,endDay);
|
List<List> dataList = (List)report.get("dataList");
|
if(dataList.size() > 0){
|
|
for(List<String> list:dataList){
|
int hj = 0;
|
for(int i = 0 ;i < list.size();i++){
|
if(i != 0){
|
hj = hj + ConvertUtil.obj2Int(list.get(i));
|
}
|
}
|
list.add(ConvertUtil.obj2StrBlank(hj));
|
}
|
}
|
|
model.addAttribute("report", report);
|
|
SC_PARTNER_CUSTOMER_INFO cus = new SC_PARTNER_CUSTOMER_INFO(cusId).getInstanceById();
|
model.addAttribute("beginTime",DateUtil.format("yyyy/MM/dd", request.getParameter("beginDay")));
|
model.addAttribute("endTime",DateUtil.format("yyyy/MM/dd", request.getParameter("endDay")));
|
model.addAttribute("cusName",cus.getShort_name());
|
}
|
return "/business/wechat/uwyw/stats/uIncidentStats/uincidentTypeStatis";
|
}
|
|
@RequestMapping("uincidentDealTimeStatis.html")
|
public String uincidentDealTimeStatis(Model model,HttpServletRequest request,HttpServletResponse response){
|
String cusId = WebUtil.getUserWywCusId(request);
|
String beginDay = request.getParameter("beginDay");
|
String endDay = request.getParameter("endDay");
|
if(!StringUtil.isEmpty(beginDay)){
|
Map report = incidentStatisFacade.queryDealTimeReport(cusId,beginDay,endDay);
|
model.addAttribute("report", report);
|
|
SC_PARTNER_CUSTOMER_INFO cus = new SC_PARTNER_CUSTOMER_INFO(cusId).getInstanceById();
|
model.addAttribute("beginTime",DateUtil.format("yyyy/MM/dd", request.getParameter("beginDay")));
|
model.addAttribute("endTime",DateUtil.format("yyyy/MM/dd", request.getParameter("endDay")));
|
model.addAttribute("cusName",cus.getShort_name());
|
}
|
return "/business/wechat/uwyw/stats/uIncidentStats/uincidentDealTimeStatis";
|
}
|
|
@RequestMapping("uincidentDealStatis.html")
|
public String uincidentDealStatis(Model model,HttpServletRequest request,HttpServletResponse response){
|
String cusId = WebUtil.getUserWywCusId(request);
|
String beginDay = request.getParameter("beginDay");
|
String endDay = request.getParameter("endDay");
|
if(!StringUtil.isEmpty(beginDay)){
|
Map report = incidentStatisFacade.queryDealSituationReport(cusId,beginDay,endDay);
|
model.addAttribute("report", report);
|
SC_PARTNER_CUSTOMER_INFO cus = new SC_PARTNER_CUSTOMER_INFO(cusId).getInstanceById();
|
model.addAttribute("beginTime",DateUtil.format("yyyy/MM/dd", request.getParameter("beginDay")));
|
model.addAttribute("endTime",DateUtil.format("yyyy/MM/dd", request.getParameter("endDay")));
|
model.addAttribute("cusName",cus.getShort_name());
|
}
|
return "/business/wechat/uwyw/stats/uIncidentStats/uincidentDealStatis";
|
}
|
}
|