timeSliceQuery

This commit is contained in:
ziming 2025-06-13 09:46:39 +08:00
parent ca8f9955cb
commit 5e43a7d6d2
1 changed files with 2 additions and 2 deletions

View File

@ -194,7 +194,7 @@ func (v *VoucherBiz) notice(ctx context.Context, order *bo.OrderBo, notifyNum *i
func (v *VoucherBiz) cmbNotice(ctx context.Context, order *bo.OrderBo, orderNotify *bo.OrderNotifyBo, notifyNum *int) error { func (v *VoucherBiz) cmbNotice(ctx context.Context, order *bo.OrderBo, orderNotify *bo.OrderNotifyBo, notifyNum *int) error {
if orderNotify.Event.CanNotify() { if !orderNotify.Event.CanNotify() {
return nil // 不可通知,忽略 return nil // 不可通知,忽略
} }
@ -207,7 +207,7 @@ func (v *VoucherBiz) cmbNotice(ctx context.Context, order *bo.OrderBo, orderNoti
reply, err := v.CmbMixRepo.Request(ctx, request, order.NotifyUrl) reply, err := v.CmbMixRepo.Request(ctx, request, order.NotifyUrl)
if err != nil { if err != nil {
return fmt.Errorf("订单定时通知,orderNo:%s,outBizNo:%s,err:%s", order.OrderNo, order.OutBizNo, err.Error()) return fmt.Errorf("订单定时通知,orderNo:%s,outBizNo:%s,stockId:%s,err:%s", order.OrderNo, order.OutBizNo, order.BatchNo, err.Error())
} }
if reply.RespCode != vo.CmbResponseStatusSuccess.GetValue() { if reply.RespCode != vo.CmbResponseStatusSuccess.GetValue() {