45
|
|
- $thisOrder = Order::where('delivery_date', $today_date)->where('id', $id)->where('warehouse', 3)->where('is_del', 0)->whereIn('status', 2)->whereNull('orderCode')->first();
|
|
45
|
+ $thisOrder = Order::select('id')->where('delivery_date', $today_date)->where('id', $id)->where('warehouse', 3)->where('is_del', 0)->whereIn('status', 2)->whereNull('orderCode')->first();
|