"use client" import { useRouter } from "next/navigation" import FormDialog from "@/shared/components/form-dialog" import { Badge } from "@/shared/components/ui/badge" import { ResourcePage } from "@/shared/data-view/resource-page" import { ColumnHeader } from "@/shared/data-view/table-view" import { BillForm } from "@/modules/bills/bill-form" import { BILL_ROUTES } from "@garage/api" import type { BillsClient } from "@garage/api" import { formatDate } from "@/shared/utils/formatters" export default function BillsPage() { const router = useRouter() return ( pageTitle="Bills" routeKey={BILL_ROUTES.INDEX} getClient={(api) => api.bills} onRowClick={(row) => router.push(`/purchase/bill/${(row as any).id}`)} headerProps={({ selectedItem, invalidateQuery }) => ({ actions: ( {(resourceId) => ( )} ), })} columns={({ actionsColumn }) => [ { accessorKey: "bill_number", header: ({ column }) => , cell: ({ row }) => (row.original as any).bill_number || "—", }, { accessorKey: "total", header: ({ column }) => , cell: ({ row }) => (row.original as any).total || "—", }, { accessorKey: "balance_due", header: ({ column }) => , cell: ({ row }) => (row.original as any).balance_due || "—", }, { accessorKey: "title", header: ({ column }) => , }, { accessorKey: "vendor", header: ({ column }) => , cell: ({ row }) => (row.original as any).vendor?.name || "—", }, { accessorKey: "bill_date", header: ({ column }) => , cell: ({ row }) => formatDate((row.original as any).bill_date) || "—", }, { accessorKey: "bill_due_date", header: ({ column }) => , cell: ({ row }) => formatDate((row.original as any).bill_due_date) || "—", }, { accessorKey: "status", header: ({ column }) => , cell: ({ row }) => { const status = (row.original as any).status return ( {status?.replace(/_/g, " ") || "—"} ) }, }, actionsColumn(), ]} /> ) }