mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-03 18:07:41 -08:00
Merge pull request #15956 from marcusmoore/bug/sc-27731
This commit is contained in:
commit
a7e6b8ea3f
|
@ -8,6 +8,7 @@ use App\Models\LicenseSeat;
|
||||||
use App\Models\Supplier;
|
use App\Models\Supplier;
|
||||||
use App\Models\User;
|
use App\Models\User;
|
||||||
use Illuminate\Database\Seeder;
|
use Illuminate\Database\Seeder;
|
||||||
|
use Illuminate\Support\Facades\Log;
|
||||||
|
|
||||||
class LicenseSeeder extends Seeder
|
class LicenseSeeder extends Seeder
|
||||||
{
|
{
|
||||||
|
@ -20,7 +21,20 @@ class LicenseSeeder extends Seeder
|
||||||
$this->call(CategorySeeder::class);
|
$this->call(CategorySeeder::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
$categoryIds = Category::all()->pluck('id');
|
$categories = Category::where('category_type', 'license')->get();
|
||||||
|
|
||||||
|
$graphicsSoftwareCategory = $categories->first(fn($category) => $category->name === 'Graphics Software');
|
||||||
|
$officeSoftwareCategory = $categories->first(fn($category) => $category->name === 'Office Software');
|
||||||
|
|
||||||
|
if (!$graphicsSoftwareCategory) {
|
||||||
|
Log::info('Graphics Software category not created. Using random category for seeding.');
|
||||||
|
$graphicsSoftwareCategory = Category::inRandomOrder()->first();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$officeSoftwareCategory) {
|
||||||
|
Log::info('Office Software category not created. Using random category for seeding.');
|
||||||
|
$officeSoftwareCategory = Category::inRandomOrder()->first();
|
||||||
|
}
|
||||||
|
|
||||||
if (! Supplier::count()) {
|
if (! Supplier::count()) {
|
||||||
$this->call(SupplierSeeder::class);
|
$this->call(SupplierSeeder::class);
|
||||||
|
@ -31,25 +45,25 @@ class LicenseSeeder extends Seeder
|
||||||
$admin = User::where('permissions->superuser', '1')->first() ?? User::factory()->firstAdmin()->create();
|
$admin = User::where('permissions->superuser', '1')->first() ?? User::factory()->firstAdmin()->create();
|
||||||
|
|
||||||
License::factory()->count(1)->photoshop()->create([
|
License::factory()->count(1)->photoshop()->create([
|
||||||
'category_id' => $categoryIds->random(),
|
'category_id' => $graphicsSoftwareCategory->id,
|
||||||
'supplier_id' => $supplierIds->random(),
|
'supplier_id' => $supplierIds->random(),
|
||||||
'created_by' => $admin->id,
|
'created_by' => $admin->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
License::factory()->count(1)->acrobat()->create([
|
License::factory()->count(1)->acrobat()->create([
|
||||||
'category_id' => $categoryIds->random(),
|
'category_id' => $officeSoftwareCategory->id,
|
||||||
'supplier_id' => $supplierIds->random(),
|
'supplier_id' => $supplierIds->random(),
|
||||||
'created_by' => $admin->id,
|
'created_by' => $admin->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
License::factory()->count(1)->indesign()->create([
|
License::factory()->count(1)->indesign()->create([
|
||||||
'category_id' => $categoryIds->random(),
|
'category_id' => $graphicsSoftwareCategory->id,
|
||||||
'supplier_id' => $supplierIds->random(),
|
'supplier_id' => $supplierIds->random(),
|
||||||
'created_by' => $admin->id,
|
'created_by' => $admin->id,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
License::factory()->count(1)->office()->create([
|
License::factory()->count(1)->office()->create([
|
||||||
'category_id' => $categoryIds->random(),
|
'category_id' => $officeSoftwareCategory->id,
|
||||||
'supplier_id' => $supplierIds->random(),
|
'supplier_id' => $supplierIds->random(),
|
||||||
'created_by' => $admin->id,
|
'created_by' => $admin->id,
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in a new issue