feat: 第四阶段财务与人事薪资模块

- 新增2个migration(11张表): finance(6表)/hr(5表)
- 新增11个Model + 11个Controller
- 新增50条API路由(总计262条)
- 新增2个前端API模块 + 10个管理页面
- 迁移运行通过, vite build验证通过
This commit is contained in:
li
2026-03-13 20:35:19 +08:00
parent e7d4d9b414
commit fb5e0daf1a
37 changed files with 3157 additions and 0 deletions
@@ -0,0 +1,72 @@
<?php
namespace App\Http\Controllers\Admin\Hr;
use App\Http\Controllers\Controller;
use App\Models\Hr\EmployeeProfile;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class EmployeeProfileController extends Controller
{
public function index(Request $request): JsonResponse
{
$query = EmployeeProfile::query()->with('user');
$query->when($request->user_id, fn($q, $v) => $q->where('user_id', $v));
$query->when($request->has('status'), fn($q) => $q->where('status', $request->status));
return $this->paginate($query->latest()->paginate($request->input('per_page', 15)));
}
public function store(Request $request): JsonResponse
{
$v = $request->validate([
'user_id' => 'required|exists:users,id',
'employee_no' => 'nullable|string|max:30',
'hire_date' => 'nullable|date',
'birth_date' => 'nullable|date',
'gender' => 'nullable|integer|in:0,1,2',
'id_card' => 'nullable|string|max:20',
'education' => 'nullable|string|max:30',
'emergency_contact' => 'nullable|string|max:50',
'emergency_phone' => 'nullable|string|max:20',
'base_salary' => 'nullable|numeric|min:0',
'position_salary' => 'nullable|numeric|min:0',
'status' => 'nullable|integer|in:1,2,3',
]);
return $this->success(EmployeeProfile::create($v));
}
public function show(EmployeeProfile $employeeProfile): JsonResponse
{
return $this->success($employeeProfile->load('user'));
}
public function update(Request $request, EmployeeProfile $employeeProfile): JsonResponse
{
$v = $request->validate([
'employee_no' => 'nullable|string|max:30',
'hire_date' => 'nullable|date',
'birth_date' => 'nullable|date',
'gender' => 'nullable|integer|in:0,1,2',
'id_card' => 'nullable|string|max:20',
'education' => 'nullable|string|max:30',
'emergency_contact' => 'nullable|string|max:50',
'emergency_phone' => 'nullable|string|max:20',
'base_salary' => 'nullable|numeric|min:0',
'position_salary' => 'nullable|numeric|min:0',
'status' => 'nullable|integer|in:1,2,3',
'left_date' => 'nullable|date',
]);
$employeeProfile->update($v);
return $this->success($employeeProfile);
}
public function destroy(EmployeeProfile $employeeProfile): JsonResponse
{
$employeeProfile->delete();
return $this->success(null);
}
}