Commit f5d11f89 by 朱继来

调整定时任务

parent 120d368c
Showing with 3 additions and 3 deletions
......@@ -1252,7 +1252,7 @@ Class OrderController extends Controller
{
$order = DB::connection('order')
->table('lie_order')
->whereIn('status', ['2', '3'])
->where('status', '=', 2)
->whereNotIn('user_id', $this->testMobile())
->where('is_type', '=', 0)
->where('pay_time', '>', time())
......@@ -1310,7 +1310,7 @@ Class OrderController extends Controller
$order = DB::connection('order')
->table('lie_order')
->whereIn('status', ['2', '3'])
->where('status', '=', 2)
->whereNotIn('user_id', $this->testMobile())
->where('is_type', '=', 0)
->where('pay_time', '>=', $time)
......@@ -1325,7 +1325,7 @@ Class OrderController extends Controller
$update = DB::connection('order')
->table('lie_order')
->where('order_id', '=', $v->order_id)
->update(['status' => -1, 'pay_time' => 0]);
->update(['status' => -1, 'pay_time' => 0, 'cancel_time' => time()]);
if ($update) {
continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment