| | |
| | | terms.put("createStart", fileStart+ " 00:00:00"); |
| | | terms.put("createEnd", fileEnd+ " 23:59:59"); |
| | | } |
| | | String areaType = request.getParameter("areaType"); |
| | | if (StringUtils.isNotBlank(areaType)){ |
| | | terms.put("areaType", areaType); |
| | | } |
| | | // 实际调解组织编号 |
| | | String mediateUnitId = request.getParameter("mediateUnitId"); |
| | | if (StringUtils.isNotBlank(mediateUnitId)){ |
| | | terms.put("mediateUnitId", mediateUnitId); |
| | | } |
| | | // 配合组织,多个用,隔开 |
| | | String assistUnitId = request.getParameter("assistUnitId"); |
| | | if (StringUtils.isNotBlank(assistUnitId)){ |
| | | terms.put("assistUnitId", assistUnitId); |
| | | } |
| | | // 配合组织,多个用,隔开 |
| | | String evaluateGrade = request.getParameter("evaluateGrade"); |
| | | if (StringUtils.isNotBlank(evaluateGrade)){ |
| | | terms.put("evaluateGrade", evaluateGrade); |
| | | } |
| | | String peopleNum = request.getParameter("peopleNum"); |
| | | if (StringUtils.isNotBlank(peopleNum)){ |
| | | String[] split = peopleNum.split("-"); |
| | | terms.put("peopleNumStart", split[0]); |
| | | if(split.length>1){ |
| | | terms.put("peopleNumEnd", split[1]); |
| | | } |
| | | |
| | | } |
| | | String amount = request.getParameter("amount"); |
| | | if (StringUtils.isNotBlank(amount)){ |
| | | String[] split = amount.split("-"); |
| | | terms.put("amountStart", split[0]); |
| | | if(split.length>1){ |
| | | terms.put("amountEnd", split[1]); |
| | | } |
| | | } |
| | | return terms; |
| | | } |
| | | |
| | |
| | | if (StringUtils.isNotBlank(inputWay)){ |
| | | terms.put("inputWay", inputWay); |
| | | } |
| | | // 事项状态,1:待分派,2:待签收,3:待受理,:4:办理中,5:结案审核,6:待评价,7:已归档 |
| | | // 事项状态,1:待分派,2:待签收,3:待受理,4:化解中,5:结案审核,6:待评价,7:已归档,8:不予受理 |
| | | String status = request.getParameter("status"); |
| | | if (StringUtils.isNotBlank(status)){ |
| | | terms.put("status", status); |
| | |
| | | if (StringUtils.isNotBlank(processName)){ |
| | | terms.put("processName", processName); |
| | | } |
| | | // 对外展示事项进度,1:待受理,2:办理中,3:已结案 |
| | | // 对外展示事项进度,1:待受理,2:化解中,3:已结案,4:不予受理 |
| | | String infoProcess = request.getParameter("process"); |
| | | if (StringUtils.isNotBlank(infoProcess)){ |
| | | terms.put("infoProcess", infoProcess); |