- FormRequest에 options 필드 validation 추가 (StoreOrderRequest, UpdateOrderRequest) - shipping_cost_code, receiver, receiver_contact, shipping_address 등 - OrderService.show()에서 client 로드 시 manager_name 필드 추가 - 수주확정/생산지시 되돌리기 기능 추가 (revertOrderConfirmation, revertProductionOrder) - 견적 calculation_inputs 포함하여 로드 Co-Authored-By: Claude <noreply@anthropic.com>
80 lines
3.0 KiB
PHP
80 lines
3.0 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',
|
|
|
|
// 거래처 정보
|
|
'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' => '단가']),
|
|
];
|
|
}
|
|
}
|