This commit is contained in:
parent
25352fbf06
commit
6cf254e1c7
|
@ -569,7 +569,7 @@ func (l *AuthBusinessValidator) EnsureZoneCollaboratorIsNotZoneOwner(fun func(ct
|
|||
|
||||
func (l *AuthBusinessValidator) EnsureZoneThirdPartnerSharingRatioIsNotTooLarge(sharingRatio float64) *AuthBusinessValidator {
|
||||
l.oplist = append(l.oplist, func() {
|
||||
if sharingRatio > 0.5 {
|
||||
if sharingRatio > 0.5 || sharingRatio < 0 {
|
||||
l.ec = errcode.ErrCodeZoneThirdPartnerSharingRatioTooLarge
|
||||
return
|
||||
}
|
||||
|
|
|
@ -1430,6 +1430,7 @@ func (s *Service) OpCreateZoneThirdPartnerBusinessValidate(ctx *gin.Context, req
|
|||
// 1.鉴权校验
|
||||
result := businessvalidator.NewAuthBusinessValidator(ctx, req).
|
||||
EnsureZoneThirdPartnerIsNotZoneCreater(_DefaultZone.GetById, req.ZoneThirdPartner.GetZid(), req.ZoneThirdPartner.GetThirdPartnerMid()).
|
||||
EnsureZoneThirdPartnerSharingRatioIsNotTooLarge(req.ZoneThirdPartner.GetSharingRatio()).
|
||||
Validate().
|
||||
Collect()
|
||||
ec, _ = result[0].(errcode.ErrCode)
|
||||
|
|
Loading…
Reference in New Issue