merge
This commit is contained in:
commit
3ce8ba6efb
|
@ -283,11 +283,10 @@ func WithdrawApply(ctx *gin.Context) {
|
|||
ReplyErrorMsg(ctx, "最低提现金额不能小于100元")
|
||||
return
|
||||
}
|
||||
|
||||
if !vasproto.IsWithdrawAnyDiasEnable(req.Mid) && req.Diamonds > 20000 {
|
||||
ReplyErrorMsg(ctx, "最大提现金额不能大于2000元")
|
||||
return
|
||||
}
|
||||
//if !vasproto.IsWithdrawAnyDiasEnable(req.Mid) && req.Diamonds > 20000 {
|
||||
// ReplyErrorMsg(ctx, "最大提现金额不能大于2000元")
|
||||
// return
|
||||
//}
|
||||
|
||||
time.Sleep(time.Second * 1)
|
||||
|
||||
|
|
|
@ -1580,7 +1580,7 @@ func (v *Vas) WithdrawApply(ctx *gin.Context, req *vasproto.WithdrawApplyReq) (t
|
|||
}
|
||||
|
||||
// 2000元以下直接操作
|
||||
if money <= 200000 || vasproto.IsWithdrawAnyDiasEnable(req.Mid) {
|
||||
//if money <= 200000 || vasproto.IsWithdrawAnyDiasEnable(req.Mid) {
|
||||
alipayCli := alipaycli.GetAlipayClientByAppId(alipaycli.AppIdXinYiDaoLe)
|
||||
|
||||
// 更改状态
|
||||
|
@ -1637,7 +1637,7 @@ func (v *Vas) WithdrawApply(ctx *gin.Context, req *vasproto.WithdrawApplyReq) (t
|
|||
logger.Error("UniTransfer fail, param: %v, resp: %v, err: %v", util.ToJson(transferParam), util.ToJson(transferResp), err)
|
||||
return
|
||||
}
|
||||
}
|
||||
//}
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue