diff --git a/internal/biz/wechat_notify.go b/internal/biz/wechat_notify.go index 71ee667..3e6150b 100644 --- a/internal/biz/wechat_notify.go +++ b/internal/biz/wechat_notify.go @@ -92,11 +92,6 @@ func (v *VoucherBiz) createUseLog(ctx context.Context, order *bo.OrderBo, req *b func (v *VoucherBiz) used(ctx context.Context, order *bo.OrderBo) error { - if order.Status.IsUse() { - log.Warnf("券状态已是已使用,忽略不处理,orderNo:%s", order.OrderNo) - return nil - } - if err := v.OrderRepo.Used(ctx, order.ID); err != nil { return err }