import { GridColDef } from "@mui/x-data-grid"; export const withdrawalTransactionDummyData = [ { id: 1, userId: 17, transactionId: 1049131973, withdrawalMethod: "Bank Transfer", status: "Error", amount: 4000, dateTime: "2025-06-17 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", manualCorrectionFlag: "-", informationWhoApproved: "-", }, { id: 2, userId: 17, transactionId: 1049131973, withdrawalMethod: "Bank Transfer", status: "Error", amount: 4000, dateTime: "2025-06-17 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", manualCorrectionFlag: "-", informationWhoApproved: "-", }, { id: 3, userId: 17, transactionId: 1049131973, withdrawalMethod: "Bank Transfer", status: "Complete", amount: 4000, dateTime: "2025-06-18 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", }, { id: 4, userId: 19, transactionId: 1049136973, withdrawalMethod: "Bank Transfer", status: "Completed", amount: 4000, dateTime: "2025-06-18 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", }, { id: 5, userId: 19, transactionId: 1049131973, withdrawalMethod: "Bank Transfer", status: "Error", amount: 4000, dateTime: "2025-06-17 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", manualCorrectionFlag: "-", informationWhoApproved: "-", }, { id: 6, userId: 27, transactionId: 1049131973, withdrawalMethod: "Bank Transfer", status: "Error", amount: 4000, dateTime: "2025-06-17 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", manualCorrectionFlag: "-", informationWhoApproved: "-", }, { id: 7, userId: 1, transactionId: 1049131973, withdrawalMethod: "Bank Transfer", status: "Error", amount: 4000, dateTime: "2025-06-17 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", manualCorrectionFlag: "-", informationWhoApproved: "-", }, { id: 8, userId: 172, transactionId: 1049131973, withdrawalMethod: "Card", status: "Pending", amount: 4000, dateTime: "2025-06-12 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", }, { id: 9, userId: 174, transactionId: 1049131973, withdrawalMethod: "Bank Transfer", status: "Inprogress", amount: 4000, dateTime: "2025-06-17 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", }, { id: 10, userId: 1, transactionId: 1049131973, withdrawalMethod: "Bank Transfer", status: "Error", amount: 4000, dateTime: "2025-06-17 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", manualCorrectionFlag: "-", informationWhoApproved: "-", }, { id: 11, userId: 1, transactionId: 1049131973, withdrawalMethod: "Bank Transfer", status: "Error", amount: 4000, dateTime: "2025-06-17 10:10:30", errorInfo: "-", fraudScore: "frad score 1234", manualCorrectionFlag: "-", informationWhoApproved: "-", }, ]; export const withdrawalTransactionsColumns: GridColDef[] = [ { field: "userId", headerName: "User ID", width: 130 }, { field: "transactionId", headerName: "Transaction ID", width: 130 }, { field: "withdrawalMethod", headerName: "Withdrawal Method", width: 130 }, { field: "status", headerName: "Status", width: 130 }, { field: "amount", headerName: "Amount", width: 130 }, { field: "dateTime", headerName: "Date / Time", width: 130 }, { field: "errorInfo", headerName: "Error Info", width: 130 }, { field: "fraudScore", headerName: "Fraud Score", width: 130 }, { field: "manualCorrectionFlag", headerName: "Manual Correction Flag", width: 130, }, { field: "informationWhoApproved", headerName: "Information who approved", width: 130, }, ]; export const withdrawalTransactionsSearchLabels = [ { label: "Status", field: "status", type: "select", options: ["Pending", "Inprogress", "Completed", "Failed"], }, { label: "Payment Method", field: "depositMethod", type: "select", options: ["Card", "Bank Transfer"], }, { label: "Date / Time", field: "dateTime", type: "date" }, ];