fix: [hr] 월 고정연장근로시간 최대값 52시간으로 제한
This commit is contained in:
@@ -62,7 +62,7 @@ public function update(Request $request, int $id): JsonResponse
|
||||
$validated = $request->validate([
|
||||
'annual_salary' => 'nullable|integer|min:0',
|
||||
'meal_allowance' => 'nullable|integer|min:0|max:1000000',
|
||||
'fixed_overtime_hours' => 'nullable|integer|min:0|max:100',
|
||||
'fixed_overtime_hours' => 'nullable|integer|min:0|max:52',
|
||||
'effective_date' => 'nullable|date',
|
||||
'notes' => 'nullable|string|max:500',
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user