wesmiler 1 月之前
父节点
当前提交
0cec40b073
共有 1 个文件被更改,包括 1 次插入6 次删除
  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) {
         if (isset($params['status']) && $params['status'] > 0) {
             $query->where('status', $params['status']);
             $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) {
         if (isset($params['refund_status']) && $params['refund_status'] > 0) {
             $query->where('refund_status', $params['refund_status']);
             $query->where('refund_status', $params['refund_status']);