erp-platform/ui/src/mocks/mockCashAccounts.ts
2025-09-15 12:31:47 +03:00

26 lines
No EOL
669 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { FiCashAccount } from "../types/fi";
export const mockCashAccounts: FiCashAccount[] = [
{
id: "1",
accountCode: "KASA001",
name: "Ana Kasa",
description: "Ana nakit kasası",
currency: "TRY",
balance: 15000,
isActive: true,
creationTime: new Date("2024-01-01"),
lastModificationTime: new Date("2024-01-20"),
},
{
id: "2",
accountCode: "KASA002",
name: "USD Kasa",
description: "Döviz kasası",
currency: "USD",
balance: 2500,
isActive: true,
creationTime: new Date("2024-01-01"),
lastModificationTime: new Date("2024-01-18"),
},
];