Initial commit

This commit is contained in:
Samandar Turgunboyev
2025-08-26 16:26:59 +05:00
commit fd95422447
318 changed files with 38301 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
type PaymentStatus = 'paid' | 'unpaid';
interface PaymentData {
id: string;
reys: string;
weight: string;
count: number;
totalPrice: string;
status: PaymentStatus;
}
export const fakePayments: PaymentData[] = [
{
id: '1',
reys: 'Avia-CP-22',
weight: '10kg',
count: 5,
totalPrice: '78 980 som',
status: 'unpaid',
},
{
id: '2',
reys: 'Avia-CP-23',
weight: '8kg',
count: 3,
totalPrice: '52 000 som',
status: 'paid',
},
{
id: '3',
reys: 'Avia-CP-24',
weight: '15kg',
count: 7,
totalPrice: '100 500 som',
status: 'paid',
},
{
id: '4',
reys: 'Avia-CP-25',
weight: '12kg',
count: 6,
totalPrice: '88 200 som',
status: 'paid',
},
];