feat: 작업일지/중간검사 설정을 ProcessStep → Process 레벨로 이동
- 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>
This commit is contained in:
@@ -18,7 +18,6 @@ public function rules(): array
|
||||
'is_required' => ['nullable', 'boolean'],
|
||||
'needs_approval' => ['nullable', 'boolean'],
|
||||
'needs_inspection' => ['nullable', 'boolean'],
|
||||
'document_template_id' => ['nullable', 'integer', 'exists:document_templates,id'],
|
||||
'is_active' => ['nullable', 'boolean'],
|
||||
'connection_type' => ['nullable', 'string', 'max:20'],
|
||||
'connection_target' => ['nullable', 'string', 'max:255'],
|
||||
@@ -33,7 +32,6 @@ public function attributes(): array
|
||||
'is_required' => '필수여부',
|
||||
'needs_approval' => '승인필요여부',
|
||||
'needs_inspection' => '검사필요여부',
|
||||
'document_template_id' => '문서양식',
|
||||
'is_active' => '사용여부',
|
||||
'connection_type' => '연결유형',
|
||||
'connection_target' => '연결대상',
|
||||
|
||||
@@ -18,7 +18,6 @@ public function rules(): array
|
||||
'is_required' => ['nullable', 'boolean'],
|
||||
'needs_approval' => ['nullable', 'boolean'],
|
||||
'needs_inspection' => ['nullable', 'boolean'],
|
||||
'document_template_id' => ['nullable', 'integer', 'exists:document_templates,id'],
|
||||
'is_active' => ['nullable', 'boolean'],
|
||||
'connection_type' => ['nullable', 'string', 'max:20'],
|
||||
'connection_target' => ['nullable', 'string', 'max:255'],
|
||||
@@ -33,7 +32,6 @@ public function attributes(): array
|
||||
'is_required' => '필수여부',
|
||||
'needs_approval' => '승인필요여부',
|
||||
'needs_inspection' => '검사필요여부',
|
||||
'document_template_id' => '문서양식',
|
||||
'is_active' => '사용여부',
|
||||
'connection_type' => '연결유형',
|
||||
'connection_target' => '연결대상',
|
||||
|
||||
Reference in New Issue
Block a user