erp-platform/ui/src/mocks/mockBanks.ts

45 lines
1.2 KiB
TypeScript
Raw Normal View History

2025-12-13 14:51:35 +00:00
import { BankAccount, BankAccountTypeEnum } from "@/proxy/intranet/models";
2025-09-15 09:31:47 +00:00
export const mockBanks: BankAccount[] = [
{
id: "1",
accountCode: "BANKA001",
bankName: "İş Bankası",
branchName: "Levent Şubesi",
accountNumber: "1234567890",
iban: "TR120006400000112345678901",
accountType: BankAccountTypeEnum.Current,
currency: "TRY",
balance: 125000,
overdraftLimit: 50000,
dailyTransferLimit: 100000,
isActive: true,
contactPerson: "Mehmet Ak",
2025-11-03 20:31:28 +00:00
phoneNumber: "+90 212 555 1111",
2025-09-15 09:31:47 +00:00
creationTime: new Date("2024-01-01"),
lastModificationTime: new Date("2024-01-20"),
swiftCode: "ISBKTRIS",
isDefault: true,
},
{
id: "2",
accountCode: "BANKA002",
bankName: "Garanti BBVA",
branchName: "Şişli Şubesi",
accountNumber: "9876543210",
iban: "TR980006200012600006298453",
accountType: BankAccountTypeEnum.Deposit,
currency: "USD",
balance: 15000,
overdraftLimit: 0,
dailyTransferLimit: 50000,
isActive: true,
contactPerson: "Ayşe Yıldız",
2025-11-03 20:31:28 +00:00
phoneNumber: "+90 212 555 2222",
2025-09-15 09:31:47 +00:00
creationTime: new Date("2024-01-01"),
lastModificationTime: new Date("2024-01-18"),
swiftCode: "TGBATRIS",
isDefault: false,
},
];