Kaynağa Gözat

修改,Mex成单

dongasai 6 ay önce
ebeveyn
işleme
4b072d378b
1 değiştirilmiş dosya ile 3 ekleme ve 0 silme
  1. 3 0
      app/Module/Mex/Logic/MexMatchLogic.php

+ 3 - 0
app/Module/Mex/Logic/MexMatchLogic.php

@@ -426,6 +426,9 @@ class MexMatchLogic
                 $sellOrders = MexOrder::where('item_id', $itemId)
                     ->where('order_type', OrderType::SELL)
                     ->where('status', OrderStatus::PENDING)
+                    ->where('price', '<',$priceConfig->min_price)
+                    ->orderBy('price', 'asc')
+                    ->orderBy('id', 'asc')
                     ->limit($batchSize)
                     ->get();