diff --git a/App/components/po/po-detail.tsx b/App/components/po/po-detail.tsx index 7c74b32..21288b0 100644 --- a/App/components/po/po-detail.tsx +++ b/App/components/po/po-detail.tsx @@ -163,6 +163,9 @@ export async function PoDetail({ po, currentUserId, currentRole, readOnly = fals .reverse() .find((a) => a.actionType === "APPROVED" || a.actionType === "APPROVED_WITH_NOTE"); + // PO date: submitter-set date → approved date → creation date + const poDisplayDate = po.poDate ?? po.approvedAt ?? po.createdAt; + return (