
- FastAPI application with JWT authentication and role-based access control - Complete employee management with CRUD operations - Department management with manager assignments - Leave management system with approval workflow - Payroll processing with overtime and deductions calculation - Attendance tracking with clock in/out functionality - SQLite database with proper migrations using Alembic - Role-based permissions (Admin, HR Manager, Manager, Employee) - Comprehensive API documentation and health checks - CORS enabled for cross-origin requests Environment Variables Required: - SECRET_KEY: JWT secret key for token signing Features implemented: - User registration and authentication - Employee profile management - Department hierarchy management - Leave request creation and approval - Payroll record processing - Daily attendance tracking - Hours calculation for attendance - Proper error handling and validation
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
from pydantic import BaseModel
|
|
from typing import Optional
|
|
from datetime import datetime, date
|
|
from decimal import Decimal
|
|
from app.models.employees import EmploymentStatus
|
|
|
|
class EmployeeBase(BaseModel):
|
|
employee_id: str
|
|
department_id: Optional[int] = None
|
|
position: str
|
|
salary: Optional[Decimal] = None
|
|
hire_date: date
|
|
phone: Optional[str] = None
|
|
address: Optional[str] = None
|
|
emergency_contact: Optional[str] = None
|
|
emergency_phone: Optional[str] = None
|
|
|
|
class EmployeeCreate(EmployeeBase):
|
|
user_id: int
|
|
|
|
class EmployeeUpdate(BaseModel):
|
|
department_id: Optional[int] = None
|
|
position: Optional[str] = None
|
|
salary: Optional[Decimal] = None
|
|
status: Optional[EmploymentStatus] = None
|
|
phone: Optional[str] = None
|
|
address: Optional[str] = None
|
|
emergency_contact: Optional[str] = None
|
|
emergency_phone: Optional[str] = None
|
|
|
|
class Employee(EmployeeBase):
|
|
id: int
|
|
user_id: int
|
|
status: EmploymentStatus
|
|
created_at: datetime
|
|
updated_at: Optional[datetime] = None
|
|
|
|
class Config:
|
|
from_attributes = True |