Swap coordinator/survey-date columns for outcome notes in Removed from Bookings

Removed properties have no coordinator or confirmed survey date by definition,
so those columns were always blank. Outcome notes are the field that actually
explains why the property dropped out of bookings.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Khalim Conn-Kowlessar 2026-05-29 12:17:38 +00:00
parent 56fdfa06e4
commit f7b1402790

View file

@ -8,16 +8,14 @@ import type { ClassifiedDeal } from "./types";
const REMOVED_FROM_BOOKINGS_COLUMNS: (keyof ClassifiedDeal)[] = [
"dealname",
"landlordPropertyId",
"coordinator",
"confirmedSurveyDate",
"outcomeNotes",
"propertyHaltedDate",
"propertyHaltedReason",
];
const REMOVED_FROM_BOOKINGS_LABELS: Partial<Record<keyof ClassifiedDeal, string>> = {
dealname: "Address",
landlordPropertyId: "Ref",
coordinator: "Coordinator",
confirmedSurveyDate: "Confirmed Survey Date",
outcomeNotes: "Outcome Notes",
propertyHaltedDate: "Halted Date",
propertyHaltedReason: "Halted Reason",
};