|
|
|
@ -83,7 +83,7 @@ class Collector extends Command |
|
|
|
if (ctype_digit($supplier_id)) { |
|
|
|
$ids = [$supplier_id]; |
|
|
|
} else if ($supplier_id == 'all') { |
|
|
|
$ids = Supplier::query()->pluck('id'); |
|
|
|
$ids = Supplier::query()->where('id', '>', 1)->pluck('id'); |
|
|
|
} else { |
|
|
|
return; |
|
|
|
} |
|
|
|
|