Commit 06c1f4fe by huangZW

111

parent dde702bf
......@@ -113,6 +113,8 @@ public class AuditController extends WebBaseController{
JSONObject json = JSON.parseObject(oldValue);
clerkCode = json.getString("clerkCode");
staffName = json.getString("staffName");
String headPic = json.get("headPic")== null ? "": json.get("headPic").toString();
if(auditDTO.getAuditType() == 3){
vo.setCommitReason("添加导购账号:("+clerkCode+")");
}else if(auditDTO.getAuditType() == 4){
......@@ -126,6 +128,7 @@ public class AuditController extends WebBaseController{
vo.setFailReason(auditDTO.getAuditReason());
vo.setStaffName(auditDTO.getCommitName());
vo.setClerkName(auditDTO.getCommitName());
vo.setHeadPic(headPic);
if(auditDTO.getAuditType() != 0){
vo.setUpdateTime(auditDTO.getUpdateTime());
}
......
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