- Process 모델에 document_template_id, needs_work_log, work_log_template_id 추가 - ProcessStep에서 해당 필드 제거 - WorkOrderService의 검사 관련 3개 메서드(getInspectionTemplate, resolveInspectionDocument, createInspectionDocument) 공정 레벨 참조로 변경 - ProcessService eager loading에 documentTemplate, workLogTemplateRelation 추가 - FormRequest 검증 규칙 이동 (ProcessStep → Process) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
43 lines
890 B
PHP
43 lines
890 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class ProcessStep extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'process_id',
|
|
'step_code',
|
|
'step_name',
|
|
'is_required',
|
|
'needs_approval',
|
|
'needs_inspection',
|
|
'is_active',
|
|
'sort_order',
|
|
'connection_type',
|
|
'connection_target',
|
|
'completion_type',
|
|
];
|
|
|
|
protected $casts = [
|
|
'is_required' => 'boolean',
|
|
'needs_approval' => 'boolean',
|
|
'needs_inspection' => 'boolean',
|
|
'is_active' => 'boolean',
|
|
'sort_order' => 'integer',
|
|
];
|
|
|
|
/**
|
|
* 공정
|
|
*/
|
|
public function process(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Process::class);
|
|
}
|
|
}
|