- Implemented TemplateCheckpointEditDialog for creating and editing inspection checkpoints. - Added VendorActions component for managing vendor actions including edit, activate/deactivate, and delete. - Created VendorContext for managing vendor state across components. - Developed VendorGeneralInfo component to display detailed vendor information. - Introduced AedSymbol and Money components for consistent currency representation. - Added PromptDialog for user input prompts throughout the application. - Implemented RelationLink component for unified related-data display in CRUD tables. - Created InspectionTemplatesClient for API interactions related to inspection templates.
90 lines
3.9 KiB
TypeScript
90 lines
3.9 KiB
TypeScript
"use client"
|
|
|
|
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 { VendorCreditForm } from "@/modules/vendor-credits/vendor-credit-form"
|
|
import { VENDOR_CREDIT_ROUTES, VendorCreditStatus } from "@garage/api"
|
|
import type { VendorCreditsClient } from "@garage/api"
|
|
import { RelationLink } from "@/shared/components/relation-link"
|
|
import { Building2, FileTextIcon } from "lucide-react"
|
|
import { getFullName } from "@/shared/utils/getFullName"
|
|
|
|
export default function VendorCreditsPage() {
|
|
return (
|
|
<ResourcePage<VendorCreditsClient>
|
|
pageTitle="Vendor Credits"
|
|
routeKey={VENDOR_CREDIT_ROUTES.INDEX}
|
|
searchable
|
|
searchPlaceholder="Search vendor credits..."
|
|
statusFilter={{ statuses: VendorCreditStatus }}
|
|
getClient={(api) => api.vendorCredits}
|
|
headerProps={({ selectedItem, invalidateQuery }) => ({
|
|
actions: (
|
|
<FormDialog title="Vendor Credit">
|
|
{(resourceId) => (
|
|
<VendorCreditForm
|
|
resourceId={resourceId}
|
|
initialData={selectedItem}
|
|
onSuccess={invalidateQuery}
|
|
/>
|
|
)}
|
|
</FormDialog>
|
|
),
|
|
})}
|
|
columns={({ actionsColumn }) => [
|
|
{
|
|
accessorKey: "subject",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Subject" />,
|
|
},
|
|
{
|
|
accessorKey: "vendor_name",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Vendor" />,
|
|
cell: ({ row }) => {
|
|
const item = row.original as any
|
|
return (
|
|
<RelationLink
|
|
href={item.vendor?.id ? `/purchase/vendor/${item.vendor.id}` : null}
|
|
icon={Building2}
|
|
label={item.vendor?.company_name || getFullName(item.vendor) || item.vendor_name}
|
|
/>
|
|
)
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "bill_number",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Bill #" />,
|
|
cell: ({ row }) => {
|
|
const item = row.original as any
|
|
return (
|
|
<RelationLink
|
|
href={item.bill?.id ? `/purchase/bill/${item.bill.id}` : null}
|
|
icon={FileTextIcon}
|
|
label={item.bill?.bill_number || item.bill_number}
|
|
/>
|
|
)
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "vendor_credit_date",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Date" />,
|
|
cell: ({ row }) => {
|
|
const value = (row.original as any).vendor_credit_date
|
|
return value ? new Date(value).toLocaleDateString() : "—"
|
|
},
|
|
},
|
|
{
|
|
accessorKey: "status",
|
|
header: ({ column }) => <ColumnHeader column={column} title="Status" />,
|
|
cell: ({ row }) => {
|
|
const status = (row.original as any).status
|
|
return <Badge variant={status === "closed" ? "secondary" : "default"}>{status || "—"}</Badge>
|
|
},
|
|
},
|
|
actionsColumn(),
|
|
]}
|
|
/>
|
|
)
|
|
}
|