import { PaymentHistory } from "@/components/channel-partners/PaymentHistoryTableColumn";

export const paymentHistoryData: PaymentHistory[] = [
  {
    id: "PH001",
    paymentDate: "2024-01-22",
    amount: "₹2.13 Lakhs",
    adjustedAgainst: "BK-2024-001 - Prestige Heights A-101",
    notes: "Full commission payment for booking BK-2024-001",
    addedBy: "Amit Sharma",
    addedOn: "2024-01-22",
  },
  {
    id: "PH002",
    paymentDate: "2024-01-20",
    amount: "₹5.13 Lakhs",
    adjustedAgainst:
      "BK-2024-002 - Green Valley Apartments B-205 (₹1.5L)\nBK-2024-003 - Skyline Towers C-301 (₹2.38L)\nBK-2024-004 - Ocean View Residency D-102 (₹1.25L)",
    notes: "FIFO adjustment: Payment distributed across 3 bookings",
    addedBy: "Priya Patel",
    addedOn: "2024-01-20",
  },
  {
    id: "PH003",
    paymentDate: "2024-01-18",
    amount: "₹1.5 Lakhs",
    adjustedAgainst: "BK-2024-002 - Green Valley Apartments B-205",
    notes: "Partial payment - 50% of commission",
    addedBy: "Vikram Singh",
    addedOn: "2024-01-18",
  },
  {
    id: "PH004",
    paymentDate: "2024-01-15",
    amount: "₹3.45 Lakhs",
    adjustedAgainst:
      "BK-2024-005 - Royal Gardens E-404 (₹1.95L)\nBK-2024-006 - Sunshine Villa F-101 (₹1.5L)",
    notes: "FIFO adjustment: Cleared 2 full commissions",
    addedBy: "Amit Sharma",
    addedOn: "2024-01-15",
  },
  {
    id: "PH005",
    paymentDate: "2024-01-10",
    amount: "₹2.0 Lakhs",
    adjustedAgainst: "BK-2024-007 - Paradise Heights G-202",
    notes: "Full commission payment",
    addedBy: "Neha Gupta",
    addedOn: "2024-01-10",
  },
];
