|
@@ -5610,15 +5610,15 @@ public class ReportServiceImpl extends ServiceImpl<ReportMapper, Report> impleme
|
|
|
if(auditMsg.contains("提交了")){
|
|
|
int i = auditMsg.indexOf("提");
|
|
|
String substring = auditMsg.substring(0, i);
|
|
|
- msg = time+" " + auditMsg.replace(substring,"\\$userName="+corpwxUserId+"\\$");
|
|
|
+ msg = time+" " + auditMsg.replace(substring,"\\$userName="+corpwxUserId+"$\\");
|
|
|
}else if(auditMsg.contains("审核通过了")){
|
|
|
int i = auditMsg.indexOf("审");
|
|
|
String substring = auditMsg.substring(0, i);
|
|
|
- msg = time+" " + auditMsg.replace(substring,"\\$userName="+corpwxUserId+"\\$");
|
|
|
+ msg = time+" " + auditMsg.replace(substring,"\\$userName="+corpwxUserId+"$\\");
|
|
|
}else if(auditMsg.contains("驳回了")) {
|
|
|
int i = auditMsg.indexOf("驳");
|
|
|
String substring = auditMsg.substring(0, i);
|
|
|
- msg = time+" " + auditMsg.replace(substring,"\\$userName="+corpwxUserId+"\\$");
|
|
|
+ msg = time+" " + auditMsg.replace(substring,"\\$userName="+corpwxUserId+"$\\");
|
|
|
}
|
|
|
} else {
|
|
|
msg = time+" " + auditMsg;
|