Files
sam-api/app/Http/Requests/Inspection/InspectionStoreRequest.php
권혁성 e6c02292d2 feat: [quote/quality] Phase 2B 견적 product_code 자동추출 + inspections work_order_id FK
- QuoteService: extractProductCodeFromInputs() 추가, store/update에서 자동 추출
- BackfillQuoteProductCodeCommand: 기존 quotes 25건 product_code 보정
- inspections 테이블에 work_order_id FK 마이그레이션 (nullable, nullOnDelete)
- Inspection↔WorkOrder 양방향 관계 추가
- InspectionService: store/show/index에 work_order_id 처리 + transformToFrontend
- InspectionStoreRequest: work_order_id 검증 규칙 추가
2026-02-27 23:18:09 +09:00

49 lines
1.7 KiB
PHP

<?php
namespace App\Http\Requests\Inspection;
use App\Models\Qualitys\Inspection;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class InspectionStoreRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
'inspection_type' => ['required', Rule::in([
Inspection::TYPE_IQC,
Inspection::TYPE_PQC,
Inspection::TYPE_FQC,
])],
'lot_no' => ['required', 'string', 'max:50'],
'work_order_id' => ['nullable', 'integer', 'exists:work_orders,id'],
'item_name' => ['nullable', 'string', 'max:200'],
'process_name' => ['nullable', 'string', 'max:100'],
'quantity' => ['nullable', 'numeric', 'min:0'],
'unit' => ['nullable', 'string', 'max:20'],
'inspector_id' => ['nullable', 'integer', 'exists:users,id'],
'remarks' => ['nullable', 'string', 'max:1000'],
'items' => ['nullable', 'array'],
'items.*.name' => ['required_with:items', 'string', 'max:200'],
'items.*.type' => ['required_with:items', Rule::in(['quality', 'measurement'])],
'items.*.spec' => ['required_with:items', 'string', 'max:200'],
'items.*.unit' => ['nullable', 'string', 'max:20'],
];
}
public function messages(): array
{
return [
'inspection_type.required' => __('validation.required', ['attribute' => '검사유형']),
'inspection_type.in' => __('validation.in', ['attribute' => '검사유형']),
'lot_no.required' => __('validation.required', ['attribute' => 'LOT번호']),
];
}
}