Fixes the Asset Factory to assign example Suppliers and Locations to Assets

This commit is contained in:
Ivan Nieto Vivanco 2021-12-11 21:36:54 -06:00
parent b43a0569b1
commit 5bda4b79d2

View file

@ -38,7 +38,7 @@ class AssetFactory extends Factory
{
return [
'name' => null,
'rtd_location_id' => Location::factory()->create(),
'rtd_location_id' => Location::all()->random()->id,
'serial' => $this->faker->uuid,
'status_id' => 1,
'user_id' => 1,
@ -47,7 +47,7 @@ class AssetFactory extends Factory
'purchase_date' => $this->faker->dateTimeBetween('-1 years', 'now', date_default_timezone_get()),
'purchase_cost' => $this->faker->randomFloat(2, '299.99', '2999.99'),
'order_number' => $this->faker->numberBetween(1000000, 50000000),
'supplier_id' => Supplier::factory()->create(),
'supplier_id' => Supplier::all()->random()->id,
'requestable' => $this->faker->boolean(),
'assigned_to' => null,
'assigned_type' => null,