mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Accessory;
|
|
use App\Models\Asset;
|
|
use App\Models\CheckoutAcceptance;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class CheckoutAcceptanceFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'checkoutable_type' => Asset::class,
|
|
'checkoutable_id' => Asset::factory(),
|
|
'assigned_to_id' => User::factory(),
|
|
];
|
|
}
|
|
|
|
public function configure(): static
|
|
{
|
|
return $this->afterCreating(function (CheckoutAcceptance $acceptance) {
|
|
if ($acceptance->checkoutable instanceof Asset && $acceptance->assignedTo instanceof User) {
|
|
$acceptance->checkoutable->update([
|
|
'assigned_to' => $acceptance->assigned_to_id,
|
|
'assigned_type' => get_class($acceptance->assignedTo),
|
|
]);
|
|
}
|
|
});
|
|
}
|
|
|
|
public function forAccessory()
|
|
{
|
|
return $this->state([
|
|
'checkoutable_type' => Accessory::class,
|
|
'checkoutable_id' => Accessory::factory(),
|
|
]);
|
|
}
|
|
|
|
public function pending()
|
|
{
|
|
return $this->state([
|
|
'accepted_at' => null,
|
|
'declined_at' => null,
|
|
]);
|
|
}
|
|
}
|