feat: Add kiosk management, artist selection, and schedule management

- Add KiosksManagement component with full CRUD for kiosks
- Add ScheduleManagement for staff schedules with break reminders
- Update booking flow to allow artist selection by customers
- Add staff_services API for assigning services to artists
- Update staff management UI with service assignment dialog
- Add auto-break reminder when schedule >= 8 hours
- Update availability API to filter artists by service
- Add kiosk management to Aperture dashboard
- Clean up ralphy artifacts and logs
This commit is contained in:
Marco Gallegos
2026-01-21 13:02:06 -06:00
parent 24e5af3860
commit d27354fd5a
71 changed files with 3353 additions and 2701 deletions

View File

@@ -1,5 +1,13 @@
'use client'
/**
* @description Payroll management interface for calculating and tracking staff compensation
* @audit BUSINESS RULE: Payroll includes base salary, service commissions (10%), and tips (5%)
* @audit SECURITY: Requires authenticated admin/manager role via useAuth hook
* @audit Validate: Payroll period must have valid start and end dates
* @audit AUDIT: Payroll calculations logged through /api/aperture/payroll endpoint
*/
import { useState, useEffect } from 'react'
import { Button } from '@/components/ui/button'
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
@@ -42,6 +50,16 @@ interface PayrollCalculation {
hours_worked: number
}
/**
* @description Payroll management component with calculation, listing, and reporting features
* @returns {JSX.Element} Complete payroll interface with period selection, staff filtering, and calculation modal
* @audit BUSINESS RULE: Calculates payroll from completed bookings within the selected period
* @audit BUSINESS RULE: Commission is 10% of service revenue, tips are 5% of service revenue
* @audit SECURITY: Requires authenticated admin/manager role; staff cannot access payroll
* @audit Validate: Ensures period dates are valid before calculation
* @audit PERFORMANCE: Auto-sets default period to current month on mount
* @audit AUDIT: Payroll records stored and retrievable for financial reporting
*/
export default function PayrollManagement() {
const { user } = useAuth()
const [payrollRecords, setPayrollRecords] = useState<PayrollRecord[]>([])