Gated behind NEXT_PUBLIC_SUBMITTER_VIEW_ALL_ENABLED (opt-in, "true"). When on, submitter roles (TECHNICAL/MANNING) get read-only access to every PO: the History page + report export, any other user's PO detail page, and the per-PO Export PDF/XLSX buttons. No approval/payment/edit rights are added. - lib/feature-flags.ts: SUBMITTER_VIEW_ALL_ENABLED flag - lib/permissions.ts: isSubmitterRole / submitterCanViewAll / canViewAllPos - po/[id] page + export route: gate via canViewAllPos - history page + reports/export route: OR submitterCanViewAll into export_reports - sidebar: show History to submitters when flag on - tests: permission helpers, both flag states - docs: .env.example, CLAUDE.md (wiki updated separately) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
66 lines
2.2 KiB
TypeScript
66 lines
2.2 KiB
TypeScript
import { auth } from "@/auth";
|
|
import { db } from "@/lib/db";
|
|
import { notFound, redirect } from "next/navigation";
|
|
import { PoDetail } from "@/components/po/po-detail";
|
|
import { canViewAllPos } from "@/lib/permissions";
|
|
import { VendorIdForm } from "./vendor-id-form";
|
|
import type { Metadata } from "next";
|
|
|
|
interface Props {
|
|
params: Promise<{ id: string }>;
|
|
}
|
|
|
|
export async function generateMetadata({ params }: Props): Promise<Metadata> {
|
|
const { id } = await params;
|
|
const po = await db.purchaseOrder.findUnique({ where: { id }, select: { poNumber: true } });
|
|
return { title: po ? `PO ${po.poNumber}` : "Purchase Order" };
|
|
}
|
|
|
|
export default async function PoDetailPage({ params }: Props) {
|
|
const session = await auth();
|
|
if (!session?.user) redirect("/login");
|
|
|
|
const { id } = await params;
|
|
|
|
const po = await db.purchaseOrder.findUnique({
|
|
where: { id },
|
|
include: {
|
|
submitter: true,
|
|
vessel: true,
|
|
account: true,
|
|
vendor: true,
|
|
lineItems: { orderBy: { sortOrder: "asc" } },
|
|
documents: { orderBy: { uploadedAt: "desc" } },
|
|
actions: { include: { actor: true }, orderBy: { createdAt: "asc" } },
|
|
receipt: true,
|
|
supersededBy: { select: { id: true, poNumber: true } },
|
|
supersedes: { select: { id: true, poNumber: true } },
|
|
},
|
|
});
|
|
|
|
if (!po) notFound();
|
|
|
|
// Submitters can only view their own POs — unless they hold view_all_pos, or the
|
|
// submitter-view-all feature flag grants them read access to every PO.
|
|
if (!canViewAllPos(session.user.role) && po.submitterId !== session.user.id) {
|
|
redirect("/dashboard");
|
|
}
|
|
|
|
const canProvideVendorId =
|
|
po.status === "VENDOR_ID_PENDING" &&
|
|
(
|
|
(["TECHNICAL", "MANNING"].includes(session.user.role) && po.submitterId === session.user.id) ||
|
|
["ACCOUNTS", "MANAGER", "SUPERUSER"].includes(session.user.role)
|
|
);
|
|
|
|
const vendors = canProvideVendorId
|
|
? await db.vendor.findMany({ where: { isActive: true }, orderBy: { name: "asc" } })
|
|
: [];
|
|
|
|
return (
|
|
<div className="max-w-6xl space-y-6">
|
|
<PoDetail po={po} currentUserId={session.user.id} currentRole={session.user.role} />
|
|
{canProvideVendorId && <VendorIdForm poId={po.id} vendors={vendors} />}
|
|
</div>
|
|
);
|
|
}
|