diff --git a/business/jxcallback/orderman/orderman_ext.go b/business/jxcallback/orderman/orderman_ext.go index 89f5d04c8..fba819084 100644 --- a/business/jxcallback/orderman/orderman_ext.go +++ b/business/jxcallback/orderman/orderman_ext.go @@ -1241,13 +1241,12 @@ func (c *OrderManager) AmendMissingOrders(ctx *jxcontext.Context, vendorIDs []in for _, v := range orderList { pair := v.(*tOrderVendorPair) goodsOrder := localOrderMap[jxutils.ComposeUniversalOrderID(pair.VendorOrderID, pair.VendorID)] - if goodsOrder == nil { + if goodsOrder == nil && pair.VendorStoreID != "2391979" { missingOrderList = append(missingOrderList, pair) } else { if !model.IsOrderFinalStatus(goodsOrder.Status) { if goodsOrder.BusinessType == model.BusinessTypeImmediate { if time.Now().Sub(goodsOrder.OrderCreatedAt).Hours() >= orderSubTimeImmediatelyArrive { - globals.SugarLogger.Debugf("AmendMissingOrders ListOrders3 order :%v", utils.Format4Output(goodsOrder, true)) updateOrderStatusList = append(updateOrderStatusList, goodsOrder) } } else {