129 lines
4.1 KiB
TypeScript
129 lines
4.1 KiB
TypeScript
import { useState } from "react";
|
|
import {
|
|
Card,
|
|
CardHeader,
|
|
CardTitle,
|
|
CardContent,
|
|
CardDescription,
|
|
} from "@/components/ui/card";
|
|
import { DollarSign } from "lucide-react";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import PaymentsRecentTable from "@/components/payments/payments-recent-table";
|
|
import PaymentsOfPatientModal from "@/components/payments/payments-of-patient-table";
|
|
import PaymentOCRBlock from "@/components/payments/payment-ocr-block";
|
|
|
|
export default function PaymentsPage() {
|
|
const [paymentPeriod, setPaymentPeriod] = useState<string>("all-time");
|
|
|
|
return (
|
|
<div>
|
|
{/* Header */}
|
|
<div className="flex flex-col md:flex-row md:items-center md:justify-between mb-6">
|
|
<div>
|
|
<h1 className="text-2xl font-semibold text-gray-800">Payments</h1>
|
|
<p className="text-gray-600">
|
|
Manage patient payments and outstanding balances
|
|
</p>
|
|
</div>
|
|
|
|
<div className="mt-4 md:mt-0 flex items-center space-x-2">
|
|
<Select
|
|
defaultValue="all-time"
|
|
onValueChange={(value) => setPaymentPeriod(value)}
|
|
>
|
|
<SelectTrigger className="w-[180px]">
|
|
<SelectValue placeholder="Select period" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="all-time">All Time</SelectItem>
|
|
<SelectItem value="this-month">This Month</SelectItem>
|
|
<SelectItem value="last-month">Last Month</SelectItem>
|
|
<SelectItem value="last-90-days">Last 90 Days</SelectItem>
|
|
<SelectItem value="this-year">This Year</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Payment Summary Cards */}
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-4 mb-6">
|
|
<Card>
|
|
<CardHeader className="pb-2">
|
|
<CardTitle className="text-sm font-medium text-gray-500">
|
|
Outstanding Balance
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="flex items-center">
|
|
<DollarSign className="h-5 w-5 text-yellow-500 mr-2" />
|
|
<div className="text-2xl font-bold">$0</div>
|
|
</div>
|
|
<p className="text-xs text-gray-500 mt-1">
|
|
From 0 outstanding invoices
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader className="pb-2">
|
|
<CardTitle className="text-sm font-medium text-gray-500">
|
|
Payments Collected
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="flex items-center">
|
|
<DollarSign className="h-5 w-5 text-green-500 mr-2" />
|
|
<div className="text-2xl font-bold">${0}</div>
|
|
</div>
|
|
<p className="text-xs text-gray-500 mt-1">
|
|
From 0 completed payments
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader className="pb-2">
|
|
<CardTitle className="text-sm font-medium text-gray-500">
|
|
Pending Payments
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="flex items-center">
|
|
<DollarSign className="h-5 w-5 text-blue-500 mr-2" />
|
|
<div className="text-2xl font-bold">$0</div>
|
|
</div>
|
|
<p className="text-xs text-gray-500 mt-1">
|
|
From 0 pending transactions
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
|
|
{/* OCR Image Upload Section*/}
|
|
<PaymentOCRBlock />
|
|
|
|
{/* Recent Payments table */}
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Payment's Records</CardTitle>
|
|
<CardDescription>
|
|
View and manage all recents patient's claims payments
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<PaymentsRecentTable allowEdit allowDelete />
|
|
</CardContent>
|
|
</Card>
|
|
|
|
{/* Recent Payments by Patients*/}
|
|
<PaymentsOfPatientModal />
|
|
</div>
|
|
);
|
|
}
|