feat(API): 중간검사 문서 템플릿 동적 연동 - process_steps ↔ document_templates 연결
- process_steps 테이블에 document_template_id FK 추가 (migration) - ProcessStep 모델에 documentTemplate BelongsTo 관계 추가 - ProcessStepService에서 documentTemplate eager loading - StoreProcessStepRequest/UpdateProcessStepRequest에 document_template_id 유효성 검증 - WorkOrderService에 getInspectionTemplate(), createInspectionDocument() 메서드 추가 - WorkOrderController에 inspection-template/inspection-document 엔드포인트 추가 - DocumentService.formatTemplateForReact() 접근자 public으로 변경 - i18n 메시지 키 추가 (inspection_document_created, no_inspection_template) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -218,4 +218,24 @@ public function inspectionReport(int $id)
|
||||
return $this->service->getInspectionReport($id);
|
||||
}, __('message.work_order.fetched'));
|
||||
}
|
||||
|
||||
/**
|
||||
* 작업지시의 검사용 문서 템플릿 조회
|
||||
*/
|
||||
public function inspectionTemplate(int $id)
|
||||
{
|
||||
return ApiResponse::handle(function () use ($id) {
|
||||
return $this->service->getInspectionTemplate($id);
|
||||
}, __('message.work_order.fetched'));
|
||||
}
|
||||
|
||||
/**
|
||||
* 검사 완료 시 검사 문서(Document) 생성
|
||||
*/
|
||||
public function createInspectionDocument(Request $request, int $id)
|
||||
{
|
||||
return ApiResponse::handle(function () use ($request, $id) {
|
||||
return $this->service->createInspectionDocument($id, $request->all());
|
||||
}, __('message.work_order.inspection_document_created'));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user