From e8901253dd99de03304f389c4a43e9bdfb9884ee Mon Sep 17 00:00:00 2001 From: suyl <770236076@qq.com> Date: Thu, 6 May 2021 11:51:20 +0800 Subject: [PATCH] aa --- business/jxcallback/orderman/orderman_ext.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 {