- ProductionOrder 전용 엔드포인트 (목록/통계/상세) - 재고생산 보조공정 일반 워크플로우에서 분리 - 자재투입 replace 모드 + bom_group_key 개별 저장 - 공정단계 options 컬럼 추가 (검사 설정/범위) - 셔터박스 prefix isStandard 파라미터 제거 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
668 B
PHP
26 lines
668 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\ProductionOrder;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class ProductionOrderIndexRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'search' => 'nullable|string|max:100',
|
|
'production_status' => 'nullable|in:waiting,in_production,completed',
|
|
'sort_by' => 'nullable|in:created_at,delivery_date,order_no',
|
|
'sort_dir' => 'nullable|in:asc,desc',
|
|
'page' => 'nullable|integer|min:1',
|
|
'per_page' => 'nullable|integer|min:1|max:100',
|
|
];
|
|
}
|
|
}
|