pelagia-portal/App/app/(portal)/po/import/page.tsx
2026-05-31 01:56:33 +05:30

42 lines
1.8 KiB
TypeScript

import { auth } from "@/auth";
import { db } from "@/lib/db";
import { redirect } from "next/navigation";
import { ImportForm } from "./import-form";
import { buildAccountGroups } from "@/lib/cost-centre-groups";
import type { Metadata } from "next";
export const metadata: Metadata = { title: "Import Purchase Order" };
export default async function ImportPoPage() {
const session = await auth();
if (!session?.user) redirect("/login");
const { role } = session.user;
if (!["MANAGER", "SUPERUSER", "ADMIN"].includes(role)) redirect("/dashboard");
const [vessels, leafAccounts, vendors, companies] = await Promise.all([
db.vessel.findMany({ where: { isActive: true }, orderBy: { name: "asc" }, select: { id: true, name: true, code: true } }),
db.account.findMany({
where: { isActive: true, children: { none: {} } },
orderBy: { code: "asc" },
select: { id: true, code: true, name: true, parent: { select: { name: true, code: true, parent: { select: { name: true, code: true } } } } },
}),
db.vendor.findMany({ orderBy: { name: "asc" } }),
db.company.findMany({ where: { isActive: true }, orderBy: { name: "asc" }, select: { id: true, name: true, code: true } }),
]);
const accounts = buildAccountGroups(leafAccounts);
return (
<div className="max-w-6xl">
<div className="mb-6">
<h1 className="text-2xl font-semibold text-neutral-900">Import Purchase Order</h1>
<p className="mt-1 text-sm text-neutral-500">
Upload a Pelagia-format Excel PO file. Line items and vendor details are extracted automatically.
Vendor and products are auto-created if not found. The PO is saved directly as Closed no approval needed.
</p>
</div>
<ImportForm vessels={vessels} accounts={accounts} vendors={vendors} companies={companies} />
</div>
);
}