curl --location --request GET 'http://localhost:8000/api/v1/report/selling?start_at=2025-01-01&end_at=2025-01-09&cashier=3&supplier' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Berhasil mengambil data penjualan",
"data": {
"omzet": 536138.6,
"profit": 132000,
"success_transaction_count": 6,
"pending_transaction_count": 10,
"sales_per_month": [
{
"month": 1,
"year": 2025,
"sales_total": 536138.6
}
]
}
}