- Order 모델에 TYPE_STOCK = 'STOCK' 상수 추가
- StoreOrderRequest/UpdateOrderRequest에 STOCK 타입 validation 추가
- options에 production_reason, target_stock_qty 필드 추가
- 재고생산 채번: STK{YYYYMMDD}{NNNN} 형식
- stats()에 order_type 필터 파라미터 추가
- STOCK 타입 확정 시 매출 자동 생성 스킵
87 lines
3.5 KiB
PHP
87 lines
3.5 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, Order::TYPE_STOCK])],
|
|
'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',
|
|
'options.manager_name' => 'nullable|string|max:100',
|
|
'options.production_reason' => 'nullable|string|max:500',
|
|
'options.target_stock_qty' => 'nullable|numeric|min:0',
|
|
|
|
// 품목 배열
|
|
'items' => 'nullable|array',
|
|
'items.*.item_id' => 'nullable|integer|exists:items,id',
|
|
'items.*.item_code' => 'nullable|string|max:50',
|
|
'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',
|
|
'items.*.floor_code' => 'nullable|string|max:50',
|
|
'items.*.symbol_code' => 'nullable|string|max:50',
|
|
];
|
|
}
|
|
|
|
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' => '단가']),
|
|
];
|
|
}
|
|
}
|