46 lines
762 B
TypeScript
46 lines
762 B
TypeScript
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 so’m',
|
||
status: 'unpaid',
|
||
},
|
||
{
|
||
id: '2',
|
||
reys: 'Avia-CP-23',
|
||
weight: '8kg',
|
||
count: 3,
|
||
totalPrice: '52 000 so’m',
|
||
status: 'paid',
|
||
},
|
||
{
|
||
id: '3',
|
||
reys: 'Avia-CP-24',
|
||
weight: '15kg',
|
||
count: 7,
|
||
totalPrice: '100 500 so’m',
|
||
status: 'paid',
|
||
},
|
||
{
|
||
id: '4',
|
||
reys: 'Avia-CP-25',
|
||
weight: '12kg',
|
||
count: 6,
|
||
totalPrice: '88 200 so’m',
|
||
status: 'paid',
|
||
},
|
||
];
|