|
@@ -112,7 +112,7 @@ class OrderService
|
|
|
->where('order_category', '<>', 'VIP') // 康养城订单不自动取消,有分次付款
|
|
|
// ->where('order_platform','<>','SYSTEM') // 后台产生的订单不自动取消
|
|
|
->where(function ($query) {
|
|
|
- $query->where('order_platform', '<>', 'SYSTEM')->orWhereNull('order_platform');
|
|
|
+ $query->where('order_platform', '<>', 'SYSTEM')->orWhereRaw('order_platform is NULL');
|
|
|
})
|
|
|
->where('order_addtimes', '<', $timeUnix)
|
|
|
->get();
|