fix: 物流同步异常

master
howell 3 years ago
parent 3569a34133
commit 4ae569bc07

@ -412,7 +412,12 @@ func OrderStockOut() {
}
for index, j := range orderSku {
order2.Expresslogic.Express(j.VendorId, "jcook", orderSku[index], ep)
if j.ExpressStatus == manage.RecookOrderGoodsDetailExpressStatusTrue {
continue
}
if err := order2.Expresslogic.Express(j.VendorId, "jcook", orderSku[index], ep); err != nil {
return err
}
}
return nil
})

Loading…
Cancel
Save