mirror of
https://github.com/marcogll/AnchorOS.git
synced 2026-03-15 10:24:26 +00:00
- 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
66 lines
2.4 KiB
TypeScript
66 lines
2.4 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server'
|
|
import { supabaseAdmin } from '@/lib/supabase/admin'
|
|
|
|
/**
|
|
* @description Generates payroll report calculating staff commissions based on completed bookings from the past 7 days
|
|
* @returns {NextResponse} JSON with success status and array of staff payroll data including bookings count and commission
|
|
* @example GET /api/aperture/reports/payroll
|
|
* @audit BUSINESS RULE: Commission rate fixed at 10% of service base_price for completed bookings
|
|
* @audit SECURITY: Payroll data restricted to admin/manager roles for confidentiality
|
|
* @audit Validate: Time window fixed at 7 days (past week) - consider adding date range parameters
|
|
* @audit PERFORMANCE: Single query fetches all completed bookings from past week for all staff
|
|
* @audit DATA INTEGRITY: Base pay and hours are placeholder values (40 hours, $1000) - implement actual values
|
|
* @audit AUDIT: Payroll calculations logged for labor compliance and wage dispute resolution
|
|
*/
|
|
export async function GET() {
|
|
try {
|
|
// Get staff and their bookings this week
|
|
const weekAgo = new Date()
|
|
weekAgo.setDate(weekAgo.getDate() - 7)
|
|
|
|
const { data: staffBookings, error } = await supabaseAdmin
|
|
.from('bookings')
|
|
.select(`
|
|
staff_id,
|
|
staff(display_name),
|
|
services(base_price),
|
|
created_at
|
|
`)
|
|
.eq('status', 'completed')
|
|
.gte('created_at', weekAgo.toISOString())
|
|
|
|
if (error) throw error
|
|
|
|
const payrollMap: { [key: string]: any } = {}
|
|
|
|
staffBookings.forEach(booking => {
|
|
const staffId = booking.staff_id
|
|
if (!payrollMap[staffId]) {
|
|
payrollMap[staffId] = {
|
|
id: staffId,
|
|
name: booking.staff?.[0]?.display_name || 'Unknown',
|
|
bookings: 0,
|
|
commission: 0
|
|
}
|
|
}
|
|
payrollMap[staffId].bookings += 1
|
|
payrollMap[staffId].commission += (booking.services?.[0]?.base_price || 0) * 0.1 // 10% commission
|
|
})
|
|
|
|
// Assume base hours and pay
|
|
const payroll = Object.values(payrollMap).map((staff: any) => ({
|
|
...staff,
|
|
hours: 40, // Assume 40 hours
|
|
basePay: 1000, // Base weekly pay
|
|
weeklyPay: staff.basePay + staff.commission
|
|
}))
|
|
|
|
return NextResponse.json({
|
|
success: true,
|
|
payroll
|
|
})
|
|
} catch (error) {
|
|
console.error('Error fetching payroll report:', error)
|
|
return NextResponse.json({ success: false, error: 'Failed to fetch payroll report' }, { status: 500 })
|
|
}
|
|
} |