stanley-king 3 years ago
parent
commit
4aecba32db
1 changed files with 2 additions and 1 deletions
  1. 2 1
      admin/control/ordersendlist.php

+ 2 - 1
admin/control/ordersendlist.php

@@ -17,7 +17,8 @@ class ordersendlistControl extends SystemControl
         $mintime_getter = function ()
         {
             $mod = Model();
-            $item = $mod->table('refill_detail')->field('min(order_time) as mintime')->where(['order_time' => ['egt', time() - 1 * 86400], 'order_state' => 30])->find();
+            //'order_time' => ['egt', time() - 1 * 86400],
+            $item = $mod->table('refill_detail')->field('min(order_time) as mintime')->where(['order_state' => 30])->find();
             if(empty($item)) {
                 return time() - 3600;
             }