This commit is contained in:
azizziy
2025-05-20 17:02:10 +05:00
commit c01e852a59
257 changed files with 27766 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
export type Party = {
id: number;
name: string;
partyStatus: PartyStatus;
totalBoxes: number;
};
export type PartyStatus = 'COLLECTING' | 'ON_THE_WAY' | 'IN_CUSTOMS' | 'IN_WAREHOUSE' | 'ARRIVED' | 'DELIVERED';
export const PartyStatusList: PartyStatus[] = ['COLLECTING', 'ON_THE_WAY', 'IN_CUSTOMS', 'IN_WAREHOUSE', 'ARRIVED', 'DELIVERED'];
export const PartyStatusOptions: {
label: string;
value: PartyStatus;
}[] = [
{
label: 'COLLECTING',
value: 'COLLECTING',
},
{
label: 'ON_THE_WAY',
value: 'ON_THE_WAY',
},
{
label: 'IN_CUSTOMS',
value: 'IN_CUSTOMS',
},
{
label: 'IN_WAREHOUSE',
value: 'IN_WAREHOUSE',
},
{
label: 'ARRIVED',
value: 'ARRIVED',
},
];