import { Sale } from "@/components/channel-partners/SaleTableColumn";

export const salesData: Sale[] = [
  {
    id: "S001",
    bookingId: "BK-2024-001",
    unitNumber: "A-101",
    projectName: "Prestige Heights",
    customerName: "Amit Sharma",
    customerPhone: "+91 98765 43210",
    bookingValue: "₹85 Lakhs",
    commissionAmount: "₹2.13 Lakhs",
    commissionPercentage: "2.5%",
    paymentReceived: "₹42.5 Lakhs",
    paymentReceivedPercentage: "50%",
    bookingDate: "2024-01-15",
    cpContactName: "Rajesh Kumar",
    soldBy: "Priya Patel",
  },
  {
    id: "S002",
    bookingId: "BK-2024-002",
    unitNumber: "B-205",
    projectName: "Green Valley Apartments",
    customerName: "Neha Gupta",
    customerPhone: "+91 98765 43211",
    bookingValue: "₹1.2 Cr",
    commissionAmount: "₹3 Lakhs",
    commissionPercentage: "2.5%",
    paymentReceived: "₹90 Lakhs",
    paymentReceivedPercentage: "75%",
    bookingDate: "2024-01-20",
    cpContactName: "Rajesh Kumar",
    soldBy: "Vikram Singh",
  },
  {
    id: "S003",
    bookingId: "BK-2024-003",
    unitNumber: "C-301",
    projectName: "Skyline Towers",
    customerName: "Ravi Verma",
    customerPhone: "+91 98765 43212",
    bookingValue: "₹95 Lakhs",
    commissionAmount: "₹2.38 Lakhs",
    commissionPercentage: "2.5%",
    paymentReceived: "₹19 Lakhs",
    paymentReceivedPercentage: "20%",
    bookingDate: "2024-01-10",
    cpContactName: "Priya Patel",
    soldBy: "Anita Desai",
  },
  {
    id: "S004",
    bookingId: "BK-2024-004",
    unitNumber: "D-102",
    projectName: "Ocean View Residency",
    customerName: "Kavita Shah",
    customerPhone: "+91 98765 43213",
    bookingValue: "₹1.5 Cr",
    commissionAmount: "₹3.75 Lakhs",
    commissionPercentage: "2.5%",
    paymentReceived: "₹1.5 Cr",
    paymentReceivedPercentage: "100%",
    bookingDate: "2024-01-18",
    cpContactName: "Rajesh Kumar",
    soldBy: "Suresh Reddy",
  },
  {
    id: "S005",
    bookingId: "BK-2024-005",
    unitNumber: "E-404",
    projectName: "Royal Gardens",
    customerName: "Deepak Joshi",
    customerPhone: "+91 98765 43214",
    bookingValue: "₹78 Lakhs",
    commissionAmount: "₹1.95 Lakhs",
    commissionPercentage: "2.5%",
    paymentReceived: "₹31.2 Lakhs",
    paymentReceivedPercentage: "40%",
    bookingDate: "2024-01-12",
    cpContactName: "Priya Patel",
    soldBy: "Priya Patel",
  },
];
