作者 tangxvhui

Merge branch 'dev' of http://gitlab.fjmaimaimai.com/mmm-go/oppmg into dev

... ... @@ -431,6 +431,11 @@ func getAuditFlowLog(chanceid int64) ([]protocol.ChanceFlowLog, error) {
LEFT JOIN user AS c ON b.user_id = c.id
WHERE chance_id =? `
err = utils.ExecuteQueryAll(&flowLogs, datasql, chanceid)
for i := range flowLogs {
if flowLogs[i].Code == 6 { //系统自动审核通过
flowLogs[i].NickName = "系统"
}
}
return flowLogs, err
}
... ...