80 lines
3.0 KiB
TypeScript
80 lines
3.0 KiB
TypeScript
"use client"
|
|
|
|
import { useRouter } from "next/navigation"
|
|
import { ResourcePage } from "@/shared/data-view/resource-page"
|
|
import { ColumnHeader } from "@/shared/data-view/table-view"
|
|
import FormDialog from "@/shared/components/form-dialog"
|
|
import { CreditNoteForm } from "@/modules/credit-notes/credit-note-form"
|
|
import { CREDIT_NOTE_ROUTES } from "@garage/api"
|
|
import type { CreditNotesClient } from "@garage/api"
|
|
|
|
type CreditNoteItem = {
|
|
id: number
|
|
subject?: string
|
|
credit_invoice?: string
|
|
customer_id?: number
|
|
status?: string
|
|
date?: string
|
|
created_at?: string
|
|
}
|
|
|
|
export default function CreditNotesPage() {
|
|
const router = useRouter()
|
|
|
|
return (
|
|
<ResourcePage<CreditNotesClient>
|
|
pageTitle="Credit Notes"
|
|
routeKey={CREDIT_NOTE_ROUTES.INDEX}
|
|
getClient={(api) => api.creditNotes}
|
|
onRowClick={(row) => router.push(`/sales/credit-notes/${(row as any).id}`)}
|
|
headerProps={({ selectedItem, invalidateQuery }) => ({
|
|
actions: (
|
|
<FormDialog title="Credit Note">
|
|
{(resourceId) => (
|
|
<CreditNoteForm
|
|
resourceId={resourceId}
|
|
initialData={selectedItem}
|
|
onSuccess={invalidateQuery}
|
|
/>
|
|
)}
|
|
</FormDialog>
|
|
),
|
|
})}
|
|
columns={({ actionsColumn }) => [
|
|
{
|
|
accessorKey: "subject",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Subject" />,
|
|
},
|
|
{
|
|
accessorKey: "credit_invoice",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Credit Note #" />,
|
|
},
|
|
{
|
|
accessorKey: "status",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Status" />,
|
|
cell: ({ row }) => {
|
|
const item = row.original as unknown as CreditNoteItem
|
|
const status = item.status
|
|
const colorMap: Record<string, string> = {
|
|
draft: "text-muted-foreground",
|
|
open: "text-blue-600",
|
|
applied: "text-green-600",
|
|
void: "text-gray-400",
|
|
}
|
|
return (
|
|
<span className={colorMap[status ?? ""] ?? ""}>
|
|
{status ? status.charAt(0).toUpperCase() + status.slice(1) : "—"}
|
|
</span>
|
|
)
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "date",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Date" />,
|
|
},
|
|
actionsColumn(),
|
|
]}
|
|
/>
|
|
)
|
|
}
|