This commit is contained in:
Leufolium 2024-11-20 17:12:05 +08:00
parent 25352fbf06
commit 6cf254e1c7
2 changed files with 2 additions and 1 deletions

View File

@ -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
}

View File

@ -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)