/** * Delivery locations (issue #19) — admin-managed destinations used to populate * the PO "Place of Delivery" dropdown. A location is a Company + a free-text * address; the PO stores the resolved single string below as a point-in-time * snapshot in `PurchaseOrder.placeOfDelivery`. */ export function formatDeliveryLocation(companyName: string, address: string): string { return `${companyName} — ${address}`.trim(); }