作者 yangfu

机会权限修改

@@ -2222,6 +2222,10 @@ func Permission(header *protocol.RequestHeader, request *protocol.PermissionRequ @@ -2222,6 +2222,10 @@ func Permission(header *protocol.RequestHeader, request *protocol.PermissionRequ
2222 if chance.UserId != header.UserId && chance.ReviewStatus == protocol.ReviewStatusReturn { 2222 if chance.UserId != header.UserId && chance.ReviewStatus == protocol.ReviewStatusReturn {
2223 noPermission() 2223 noPermission()
2224 } 2224 }
  2225 + //机会 已经在审核中的 本来即使是管理员也没有权限
  2226 + if chance.UserId == header.UserId && chance.ReviewStatus == protocol.ReviewStatusAuditging && len(chance.ApproveData) > 0 {
  2227 + noPermission()
  2228 + }
2225 return 2229 return
2226 } 2230 }
2227 //机会关闭 / 删除 2231 //机会关闭 / 删除