|
@@ -240,6 +240,7 @@ public class TaskController {
|
|
|
task.setCreaterName(user.getName());
|
|
|
task.setCreatorColor(user.getColor());
|
|
|
task.setCompanyId(user.getCompanyId());
|
|
|
+ task.setTaskDesc("");
|
|
|
//无需审核,直接通过
|
|
|
if (!taskType.getNeedAudit()){
|
|
|
task.setTaskStatus(STATUS_DOING);
|
|
@@ -698,7 +699,7 @@ public class TaskController {
|
|
|
}
|
|
|
if (stringJoiner.length()>0){
|
|
|
log.info("stringJoiner==>"+stringJoiner.toString());
|
|
|
- String msg1="计划:"+task.getName()+",审核人有以下改动:";
|
|
|
+ String msg1="计划:"+task.getName()+(initTaskStatus==3?",一级审核人有以下改动:":",二级审核人有以下改动:");
|
|
|
Information information = new Information();
|
|
|
information.setType(11);
|
|
|
information.setMsg(msg1+stringJoiner.toString());
|