wesmiler 1 månad sedan
förälder
incheckning
0cec40b073
1 ändrade filer med 1 tillägg och 6 borttagningar
  1. 1 6
      app/Services/Common/OrderService.php

+ 1 - 6
app/Services/Common/OrderService.php

@@ -81,12 +81,7 @@ class OrderService extends BaseService
         if (isset($params['status']) && $params['status'] > 0) {
             $query->where('status', $params['status']);
         }
-
-        // 售后类型筛选(1-售后,2-退款)
-        if (isset($params['after_type']) && $params['after_type'] > 0) {
-            $query->where('after_type', $params['after_type']);
-        }
-
+        
         // 退款状态筛选
         if (isset($params['refund_status']) && $params['refund_status'] > 0) {
             $query->where('refund_status', $params['refund_status']);