
- 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
28 lines
1019 B
Python
28 lines
1019 B
Python
from sqlalchemy import Column, Integer, String, DateTime, ForeignKey, Date, Time, Enum
|
|
from sqlalchemy.sql import func
|
|
from sqlalchemy.orm import relationship
|
|
from app.db.base import Base
|
|
import enum
|
|
|
|
class AttendanceStatus(enum.Enum):
|
|
PRESENT = "present"
|
|
ABSENT = "absent"
|
|
LATE = "late"
|
|
HALF_DAY = "half_day"
|
|
|
|
class AttendanceRecord(Base):
|
|
__tablename__ = "attendance_records"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
employee_id = Column(Integer, ForeignKey("employees.id"), nullable=False)
|
|
date = Column(Date, nullable=False)
|
|
clock_in = Column(Time)
|
|
clock_out = Column(Time)
|
|
hours_worked = Column(String)
|
|
status = Column(Enum(AttendanceStatus), default=AttendanceStatus.PRESENT)
|
|
notes = Column(String)
|
|
created_at = Column(DateTime(timezone=True), server_default=func.now())
|
|
updated_at = Column(DateTime(timezone=True), onupdate=func.now())
|
|
|
|
# Relationships
|
|
employee = relationship("Employee", back_populates="attendance_records") |