- 모델 4개: Approval, ApprovalStep, ApprovalForm, ApprovalLine - ApprovalService: 목록/CRUD/워크플로우(상신/승인/반려/회수) 비즈니스 로직 - ApprovalApiController: JSON API 엔드포인트 (기안함/결재함/완료함/참조함) - ApprovalController: Blade 뷰 컨트롤러 (HX-Redirect 처리) - 뷰 8개: drafts, pending, completed, references, create, edit, show - partials: _status-badge, _step-progress, _approval-line-editor - api.php/web.php 라우트 등록
84 lines
2.1 KiB
PHP
84 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Approvals;
|
|
|
|
use App\Models\User;
|
|
use App\Traits\BelongsToTenant;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class ApprovalLine extends Model
|
|
{
|
|
use BelongsToTenant, SoftDeletes;
|
|
|
|
protected $table = 'approval_lines';
|
|
|
|
protected $casts = [
|
|
'steps' => 'array',
|
|
'is_default' => 'boolean',
|
|
];
|
|
|
|
protected $fillable = [
|
|
'tenant_id',
|
|
'name',
|
|
'steps',
|
|
'is_default',
|
|
'created_by',
|
|
'updated_by',
|
|
'deleted_by',
|
|
];
|
|
|
|
// =========================================================================
|
|
// 단계 유형 상수
|
|
// =========================================================================
|
|
|
|
public const STEP_TYPE_APPROVAL = 'approval';
|
|
|
|
public const STEP_TYPE_AGREEMENT = 'agreement';
|
|
|
|
public const STEP_TYPE_REFERENCE = 'reference';
|
|
|
|
public const STEP_TYPES = [
|
|
self::STEP_TYPE_APPROVAL,
|
|
self::STEP_TYPE_AGREEMENT,
|
|
self::STEP_TYPE_REFERENCE,
|
|
];
|
|
|
|
// =========================================================================
|
|
// 관계 정의
|
|
// =========================================================================
|
|
|
|
public function creator(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
|
|
// =========================================================================
|
|
// 스코프
|
|
// =========================================================================
|
|
|
|
public function scopeDefault($query)
|
|
{
|
|
return $query->where('is_default', true);
|
|
}
|
|
|
|
// =========================================================================
|
|
// 헬퍼 메서드
|
|
// =========================================================================
|
|
|
|
public function getStepCountAttribute(): int
|
|
{
|
|
return count($this->steps ?? []);
|
|
}
|
|
|
|
public function getApproverIdsAttribute(): array
|
|
{
|
|
return collect($this->steps ?? [])
|
|
->pluck('user_id')
|
|
->filter()
|
|
->values()
|
|
->toArray();
|
|
}
|
|
}
|