...
|
...
|
@@ -991,7 +991,7 @@ func GenAuditFlowProcess(header *protocol.RequestHeader, chanceId int64, related |
|
|
return
|
|
|
}
|
|
|
for j := range ids {
|
|
|
if ids[j] == header.Uid {
|
|
|
if ids[j] == header.UserId {
|
|
|
groupId = config.AuditGroupId
|
|
|
IsSpecailAuditFlow = true
|
|
|
break
|
...
|
...
|
@@ -1790,6 +1790,7 @@ func ChanceDetail(header *protocol.RequestHeader, request *protocol.ChanceDetail |
|
|
Id: chance.Id,
|
|
|
Provider: provider,
|
|
|
CreateTime: chance.CreateAt.Unix() * 1000,
|
|
|
UpdateTime: chance.UpdateAt.Unix() * 1000,
|
|
|
}
|
|
|
jsonUnmarshal(chance.SourceContent, &item.FormList)
|
|
|
if chanceData, err = models.GetChanceDataByChanceId(chance.Id); err == nil {
|
...
|
...
|
|