76 lines
1.8 KiB
PHP
76 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\Concerns\LogsHrActivity;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Support\Str;
|
|
|
|
class Department extends Model
|
|
{
|
|
use HasFactory;
|
|
use LogsHrActivity;
|
|
use SoftDeletes;
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'code',
|
|
'description',
|
|
'is_active',
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'is_active' => 'boolean',
|
|
];
|
|
}
|
|
|
|
protected static function booted(): void
|
|
{
|
|
static::saving(function (Department $department): void {
|
|
if (blank($department->code) && filled($department->name)) {
|
|
$department->code = static::generateUniqueCodeFromName(
|
|
$department->name,
|
|
$department->id,
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
public static function generateUniqueCodeFromName(string $name, ?int $ignoreId = null): string
|
|
{
|
|
$base = Str::upper(Str::slug($name));
|
|
|
|
$query = static::query()
|
|
->when($ignoreId, fn ($query) => $query->where('id', '!=', $ignoreId));
|
|
|
|
if (! $query->clone()->where('code', $base)->exists()) {
|
|
return $base;
|
|
}
|
|
|
|
$maxSuffix = $query->clone()
|
|
->where('code', 'like', "{$base}-%")
|
|
->pluck('code')
|
|
->map(fn (string $code): int => (int) Str::after($code, "{$base}-"))
|
|
->max();
|
|
|
|
return "{$base}-".(($maxSuffix ?? 0) + 1);
|
|
}
|
|
|
|
public function employees(): HasMany
|
|
{
|
|
return $this->hasMany(Employee::class);
|
|
}
|
|
|
|
public function users(): HasMany
|
|
{
|
|
return $this->hasMany(User::class);
|
|
}
|
|
}
|