Files
cpost-mobile/src/screens/wallet/payment/lib/data.ts
Samandar Turgunboyev fd95422447 Initial commit
2025-08-26 16:26:59 +05:00

46 lines
762 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.

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',
},
];