import { TStoreAnswers } from "./types";

// One entry per store, keyed by the keys in `VITAL_FARMS_QUESTIONS`. Values mirror exactly what
// RMS had pre-filled for that store's current survey; questions left blank in the source are
// omitted here rather than guessed.
export const STORE_ANSWERS: Record<string, TStoreAnswers> = {
  T1344: {
    read_fifo_training: "Yes - I have read the training documents",
    service_day: "Wednesday",
    service_time: "Afternoon",
    delivery_days_per_week: "2",
    delivery_days_of_week: ["Tuesday", "Friday"],
    order_method: "No - Store receives egg deliveries automatically",
    delivered_today: "No - store will not have a delivery today",
    count_update_frequency: "Counts updated WEEKLY",
    arrival_fifo_order: "No - Eggs are not zoned by expiration date",
    completion_fifo_order: "Yes - Eggs are stocked in FIFO order",
    completion_shelf_labels: "Yes - shelf labels were installed upon arrival",
    completion_expired_found: "No",
    completion_units_damaged: "No",
  },
  T2451: {
    read_fifo_training: "Yes - I have read the training documents",
    service_day: "Thursday",
    service_time: "Afternoon",
    delivery_days_per_week: "1",
    delivery_days_of_week: ["Tuesday"],
    order_method: "No - Store receives egg deliveries automatically",
    delivered_today: "No - store will not have a delivery today",
    count_update_frequency: "Counts updated WEEKLY",
    backstock_location: "Dairy Cooler",
    backstock_method: "Backstocked on a pallet - NO Device Location",
    arrival_fifo_order: "No - Eggs are not zoned by expiration date",
    completion_fifo_order: "Yes - Eggs are stocked in FIFO order",
    completion_shelf_labels: "Yes - shelf labels were installed upon arrival",
    completion_expired_found: "No",
    completion_units_damaged: "No",
  },
};
