mirror of
https://github.com/marcogll/AnchorOS.git
synced 2026-03-15 14:24:27 +00:00
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:
@@ -2,7 +2,15 @@ import { NextRequest, NextResponse } from 'next/server'
|
||||
import { supabaseAdmin } from '@/lib/supabase/admin'
|
||||
|
||||
/**
|
||||
* @description Fetches sales report including total sales, completed bookings, average service price, and sales by service
|
||||
* @description Generates sales report with metrics: total revenue, completed bookings, average price, and sales breakdown by service
|
||||
* @returns {NextResponse} JSON with success status and comprehensive sales metrics
|
||||
* @example GET /api/aperture/reports/sales
|
||||
* @audit BUSINESS RULE: Only completed bookings (status='completed') counted in sales metrics
|
||||
* @audit SECURITY: Sales data restricted to admin/manager roles for financial confidentiality
|
||||
* @audit Validate: No query parameters required - returns all-time sales data
|
||||
* @audit PERFORMANCE: Uses reduce operations on client side for aggregation (suitable for small-medium datasets)
|
||||
* @audit PERFORMANCE: Consider adding date filters for larger datasets (current implementation scans all bookings)
|
||||
* @audit AUDIT: Sales reports generated logged for financial compliance and auditing
|
||||
*/
|
||||
export async function GET() {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user