This commit is contained in:
Rzy 2024-06-20 16:59:44 +08:00
parent b8f9e0d42d
commit f1e99fb8dc
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ func (l *MarketLogic) Market(req *types.Req) (resp *types.Resp, err error) {
DecryptData, _ := l.Decrypt(req.VendorNo, req.Data)
_ = copier.Copy(&reqData, &req)
tagLen := len(DecryptData.VoucherTag)
if tagLen > 6 {
if tagLen < 6 {
//如果没有解析出来,直接投递给荣数,让荣数自行处理转发
result, _err := l.svcCtx.TransferRpc.RsCouponGrant(l.ctx, &reqData)
if _err != nil {