Files
sam-api/app/Http/Requests/Order/StoreOrderRequest.php
권혁성 78851ec04a feat: 테넌트별 채번 규칙 시스템 구현
- numbering_rules 테이블: JSON 패턴 기반 채번 규칙 저장 (tenant별)
- numbering_sequences 테이블: MySQL UPSERT 기반 atomic 시퀀스 관리
- NumberingService: generate/preview/nextSequence 핵심 서비스
- QuoteNumberService: NumberingService 우선, 폴백 QT{YYYYMMDD}{NNNN}
- OrderService: NumberingService 우선 (pair_code 지원), 폴백 ORD{YYYYMMDD}{NNNN}
- StoreOrderRequest: pair_code 필드 추가
- NumberingRuleSeeder: tenant_id=287 견적(KD-PR)/수주(KD-{pairCode}) 규칙

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-07 09:50:52 +09:00

81 lines
3.1 KiB
PHP

<?php
namespace App\Http\Requests\Order;
use App\Models\Orders\Order;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class StoreOrderRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function rules(): array
{
return [
// 기본 정보
'quote_id' => 'nullable|integer|exists:quotes,id',
'order_type_code' => ['nullable', Rule::in([Order::TYPE_ORDER, Order::TYPE_PURCHASE])],
'status_code' => ['nullable', Rule::in([
Order::STATUS_DRAFT,
Order::STATUS_CONFIRMED,
])],
'category_code' => 'nullable|string|max:50',
'pair_code' => 'nullable|string|max:20',
// 거래처 정보
'client_id' => 'nullable|integer|exists:clients,id',
'client_name' => 'nullable|string|max:200',
'client_contact' => 'nullable|string|max:100',
'site_name' => 'nullable|string|max:200',
// 금액 정보
'supply_amount' => 'nullable|numeric|min:0',
'tax_amount' => 'nullable|numeric|min:0',
'total_amount' => 'nullable|numeric|min:0',
'discount_rate' => 'nullable|numeric|min:0|max:100',
'discount_amount' => 'nullable|numeric|min:0',
// 배송/기타
'delivery_date' => 'nullable|date',
'delivery_method_code' => 'nullable|string|max:50',
'received_at' => 'nullable|date',
'memo' => 'nullable|string',
'remarks' => 'nullable|string',
'note' => 'nullable|string',
// 옵션 (운임비용, 수신자 정보 등)
'options' => 'nullable|array',
'options.shipping_cost_code' => 'nullable|string|max:50',
'options.receiver' => 'nullable|string|max:100',
'options.receiver_contact' => 'nullable|string|max:100',
'options.shipping_address' => 'nullable|string|max:500',
'options.shipping_address_detail' => 'nullable|string|max:500',
// 품목 배열
'items' => 'nullable|array',
'items.*.item_id' => 'nullable|integer|exists:items,id',
'items.*.item_name' => 'required|string|max:200',
'items.*.specification' => 'nullable|string|max:500',
'items.*.quantity' => 'required|numeric|min:0',
'items.*.unit' => 'nullable|string|max:20',
'items.*.unit_price' => 'required|numeric|min:0',
'items.*.supply_amount' => 'nullable|numeric|min:0',
'items.*.tax_amount' => 'nullable|numeric|min:0',
'items.*.total_amount' => 'nullable|numeric|min:0',
];
}
public function messages(): array
{
return [
'items.*.item_name.required' => __('validation.required', ['attribute' => '품목명']),
'items.*.quantity.required' => __('validation.required', ['attribute' => '수량']),
'items.*.unit_price.required' => __('validation.required', ['attribute' => '단가']),
];
}
}