Commit 7d7f6e79 by caohongzhe

ReportController:修改发送消息方法。

parent 8cd26a83
...@@ -286,7 +286,6 @@ public class ReportController extends BaseController { ...@@ -286,7 +286,6 @@ public class ReportController extends BaseController {
model.addAttribute("supplementTypeStr", supplementTypeStr); model.addAttribute("supplementTypeStr", supplementTypeStr);
return "modules/report/reportTrack"; return "modules/report/reportTrack";
} }
/** /**
* 举报跟踪信息保存 * 举报跟踪信息保存
* *
...@@ -330,7 +329,7 @@ public class ReportController extends BaseController { ...@@ -330,7 +329,7 @@ public class ReportController extends BaseController {
reportService.addRecord(reportEntity,"1"); reportService.addRecord(reportEntity,"1");
}else if (StringUtils.isNotBlank(reportEntity.getDealResult()) && StringUtils.isBlank(transferUser)){ }else if (StringUtils.isNotBlank(reportEntity.getDealResult()) && StringUtils.isBlank(transferUser)){
//自行处理 //自行处理
if (!(reportEntity.getDealResult().equals("3") && StringUtils.isBlank(ifDone))) { if (!(StringUtils.isBlank(ifDone))) {
reportService.addNotice(reportEntity, "answer", ifDone); reportService.addNotice(reportEntity, "answer", ifDone);
} }
}else if (StringUtils.isNotBlank(transferUser) && StringUtils.isNotBlank(reportEntity.getDealResult())){ }else if (StringUtils.isNotBlank(transferUser) && StringUtils.isNotBlank(reportEntity.getDealResult())){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment